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;
|
|
|
}
|