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; |
| | | |
| | | @ApiModelProperty(value = "已就业残疾人数-集中就业") |
| | | private Integer employedConcentrated; |
| | | |
| | | @ApiModelProperty(value = "已就业残疾人数-公益性岗位") |
| | | private Integer employedPublicWelfare; |
| | | |
| | | @ApiModelProperty(value = "已就业残疾人数-辅助性就业") |
| | | private Integer employedAuxiliary; |
| | | |
| | | @ApiModelProperty(value = "已就业残疾人数-个体就业") |
| | | private Integer employedIndividual; |
| | | } |