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