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