kongdeqiang
2020-12-10 4104ec82c9799b592e03aa851086e802bbf6c98b
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package cn.cetc54.platform.zhyl.entity;
 
import cn.cetc54.platform.core.base.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
 
/**
 * @author 
 */
@Data
@Entity
@DynamicInsert
@DynamicUpdate
@Table(name = "t_yl_fuwu_duixiang")
@TableName("t_yl_fuwu_duixiang")
@ApiModel(value = "服务对象")
public class FuwuDuixiang extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @Column( length = 10 ,name = "name")
    @ApiModelProperty(value = "名称")
    private String name;
 
    @Column( length = 10 ,name = "age")
    @ApiModelProperty(value = "年龄")
    private Integer age;
 
    @Column( length = 10 ,name = "sex")
    @ApiModelProperty(value = "性别")
    private String sex;
 
    @Column( length = 20 ,name = "sfzhm")
    @ApiModelProperty(value = "身份证号码")
    private String sfzhm;
 
    @Column( length = 24 ,name = "area_id")
    @ApiModelProperty(value = "区域id")
    private String areaId;
 
    @Column( length = 20 ,name = "record_year")
    @ApiModelProperty(value = "登记年份")
    private String recordYear;
 
    @Column( length = 20 ,name = "record_month")
    @ApiModelProperty(value = "登记月份")
    private String recordMonth;
 
    @Column( length = 200 ,name = "subsidyIds")
    @ApiModelProperty(value = "补贴集合")
    private String subsidyIds;
 
 
}