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
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_subsidy_log")
@TableName("t_yl_subsidy_log")
@ApiModel(value = "补贴日志")
public class SubsidyLog extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @Column( length = 24 ,name = "area_id")
    @ApiModelProperty(value = "区域id")
    private String areaId;
 
    @Column( length = 20 ,name = "year")
    @ApiModelProperty(value = "登记年份")
    private String year;
 
    @Column( length = 20 ,name = "month")
    @ApiModelProperty(value = "登记月份")
    private String month;
 
    @Column( length = 1 ,name = "type")
    @ApiModelProperty(value = "补助类型")
    private Integer type;
 
    @Column( length = 10 ,name = "money")
    @ApiModelProperty(value = "补助金额")
    private Double money;
 
    @Column( length = 24 ,name = "duixiang_id")
    @ApiModelProperty(value = "服务对象id")
    private String duixiangId;
 
    @Column( length = 1 ,name = "state")
    @ApiModelProperty(value = "状态,")
    private Integer state;
 
 
}