New file |
| | |
| | | package com.cl.pojo.vo.screen; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @ApiModel("已就业残疾人数VO") |
| | | @Data |
| | | public class EmployedVO { |
| | | @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; |
| | | } |