package com.cl.pojo.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.time.LocalDateTime; import java.util.Date; @Data @ApiModel("数据上报表") @TableName("t_data") public class DataEntity { @TableId(type = IdType.AUTO) @ApiModelProperty(value = "主键") private Integer id; @ApiModelProperty(value = "区县,1-东区,2-西区,3-仁和区,4-米易县,5-盐边县") private Integer county; @ApiModelProperty(value = "调研时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime investigateTime; @ApiModelProperty(value = "创建者、调研者") private Integer createBy; @ApiModelProperty(value = "创建时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime createTime; @ApiModelProperty(value = "更新者") private Integer updateBy; @ApiModelProperty(value = "更新时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime updateTime; @ApiModelProperty(value = "删除标志,0-未删除,1-删除") private Integer delFlag; @ApiModelProperty(value = "持证残疾人数-视力") private Integer certificateEyesight; @ApiModelProperty(value = "持证残疾人数-智力") private Integer certificateIntellect; @ApiModelProperty(value = "持证残疾人数-肢体") private Integer certificateLimb; @ApiModelProperty(value = "持证残疾人数-言语") private Integer certificateSpeech; @ApiModelProperty(value = "持证残疾人数-听力") private Integer certificateHearing; @ApiModelProperty(value = "持证残疾人数-精神") private Integer certificateSpirit; @ApiModelProperty(value = "持证残疾人数-多重") private Integer certificateMultiple; @ApiModelProperty(value = "残疾人工作者队伍人数-市残联") private Integer workerCity; @ApiModelProperty(value = "残疾人工作者队伍人数-五大专门协会") private Integer workerAssociation; @ApiModelProperty(value = "残疾人工作者队伍人数-攀狮服务队") private Integer workerServiceCorps; @ApiModelProperty(value = "残疾人工作者队伍人数-县区残联") private Integer workerCounty; @ApiModelProperty(value = "残疾人工作者队伍人数-乡镇残联") private Integer workerTownship; @ApiModelProperty(value = "残疾人工作者队伍人数-村社区残联") private Integer workerVillage; @ApiModelProperty(value = "残疾儿童康复训练人数-孤独症") private Integer drillAutism; @ApiModelProperty(value = "残疾儿童康复训练人数-智力") private Integer drillIntellect; @ApiModelProperty(value = "残疾儿童康复训练人数-肢体") private Integer drillLimb; @ApiModelProperty(value = "残疾儿童康复训练人数-言语") private Integer drillSpeech; @ApiModelProperty(value = "残疾儿童康复训练人数-听力") private Integer drillHearing; @ApiModelProperty(value = "残疾儿童康复训练人数-精神") private Integer drillSpirit; @ApiModelProperty(value = "残疾儿童康复救助人数-0-6岁") private Integer salvationBeforeSeven; @ApiModelProperty(value = "残疾儿童康复救助人数-7岁之后") private Integer salvationAfterSeven; @ApiModelProperty(value = "残疾儿童康复救助人数-孤独症") private Integer salvationAutism; @ApiModelProperty(value = "残疾儿童康复救助人数-智力") private Integer salvationIntellect; @ApiModelProperty(value = "残疾儿童康复救助人数-肢体") private Integer salvationLimb; @ApiModelProperty(value = "残疾儿童康复救助人数-言语") private Integer salvationSpeech; @ApiModelProperty(value = "困难精神残疾人医疗救助人数-门诊服药") private Integer difficultyMedication; @ApiModelProperty(value = "困难精神残疾人医疗救助人数-住院治疗") private Integer difficultyHospitalisation; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-补贴总人数") private Integer assistiveDeviceTotal; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-辅具一") private Integer assistiveDeviceOne; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-辅具二") private Integer assistiveDeviceTwo; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-辅具三") private Integer assistiveDeviceThree; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-其他") private Integer assistiveDeviceOther; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-类别一") private Integer assistiveDeviceTypeOne; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-类别二") private Integer assistiveDeviceTypeTwo; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-类别三") private Integer assistiveDeviceTypeThree; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-类别四") private Integer assistiveDeviceTypeFour; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-等级一") private Integer assistiveDeviceGradeOne; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-等级二") private Integer assistiveDeviceGradeTwo; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-等级三") private Integer assistiveDeviceGradeThree; @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-等级四") private Integer assistiveDeviceGradeFour; @ApiModelProperty(value = "职业技能和实用技术培训人数") private Integer technicalTraining; @ApiModelProperty(value = "居家灵活就业及一次性创业补贴发放数") private Integer homeAllowance; @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-视力") private Integer statutoryCertificateEyesight; @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-智力") private Integer statutoryCertificateIntellect; @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-肢体") private Integer statutoryCertificateLimb; @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-言语") private Integer statutoryCertificateSpeech; @ApiModelProperty(value = "法定就业年龄段持证残疾人数占比-听力") private Integer statutoryCertificateHearing; @ApiModelProperty(value = "已就业残疾人数-就业") private Integer employedEmployment; @ApiModelProperty(value = "已就业残疾人数-集中就业") private Integer employedConcentrated; @ApiModelProperty(value = "已就业残疾人数-公益性岗位") private Integer employedPublicWelfare; @ApiModelProperty(value = "已就业残疾人数-辅助性就业") private Integer employedAuxiliary; @ApiModelProperty(value = "已就业残疾人数-个体就业") private Integer employedIndividual; @ApiModelProperty(value = "应届高校残疾毕业生数-就业") private Integer highSchoolEmployment; @ApiModelProperty(value = "应届高校残疾毕业生数-个体就业") private Integer highSchoolIndividual; @ApiModelProperty(value = "应届高校残疾毕业生数-灵活就业") private Integer highSchoolFlexible; @ApiModelProperty(value = "适龄残疾儿童少年义务教育-一年级") private Integer educationOne; @ApiModelProperty(value = "适龄残疾儿童少年义务教育-二年级") private Integer educationTwo; @ApiModelProperty(value = "适龄残疾儿童少年义务教育-三年级") private Integer educationThree; @ApiModelProperty(value = "适龄残疾儿童少年义务教育-四年级") private Integer educationFour; @ApiModelProperty(value = "适龄残疾儿童少年义务教育-五年级") private Integer educationFive; @ApiModelProperty(value = "适龄残疾儿童少年义务教育-六年级") private Integer educationSix; @ApiModelProperty(value = "适龄残疾儿童少年义务教育-七年级") private Integer educationSeven; @ApiModelProperty(value = "适龄残疾儿童少年义务教育-八年级") private Integer educationEight; @ApiModelProperty(value = "适龄残疾儿童少年义务教育-九年级") private Integer educationNine; @ApiModelProperty(value = "九年义务教育在读残疾儿童生活补贴发放数") private Integer educationSubsidy; @ApiModelProperty(value = "公益文体活动-开展次数") private Integer activityFrequency; @ApiModelProperty(value = "公益文体活动-参加人数") private Integer educationNumber; @ApiModelProperty(value = "服务”一件事“办件数") private Integer matter; @ApiModelProperty(value = "家庭医生签约增值服务数") private Integer doctorApprecitation; @ApiModelProperty(value = "困难重度残疾人家庭无障碍改造实施改造户数") private Integer remould; @ApiModelProperty(value = "残疾人接访情况-办公室接访") private Integer interviewsOffice; @ApiModelProperty(value = "残疾人接访情况-电话接访") private Integer interviewsPhone; @ApiModelProperty(value = "残疾人接访情况-上级交办") private Integer interviewsSuperior; @ApiModelProperty(value = "残疾人接访情况-12345交办") private Integer interviewsHotline; }