kongdeqiang
2023-04-28 df5cc553bde495f22757f0d6472a714a056a02d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.boying.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.boying.common.BaseEntity;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import javax.persistence.Entity;
 
 
@Data
@TableName("street")
@javax.persistence.Table(name = "street")
@Entity
@org.hibernate.annotations.Table(appliesTo = "street", comment = "街道表")
@ApiModel(value = "街道表")
public class Street extends BaseEntity<Street> {
 
    /**
     * 街道名称
     */
    private String name;
 
    /**
     * 编号
     */
    private String code;
 
    /**
     * 东西(路):0    南北(街) :1
     */
    private Integer type;
}