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 AssistiveDeviceVO { |
| | | @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-辅具一") |
| | | private Integer assistiveDeviceOne; |
| | | |
| | | @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-辅具二") |
| | | private Integer assistiveDeviceTwo; |
| | | |
| | | @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-辅具三") |
| | | private Integer assistiveDeviceThree; |
| | | |
| | | @ApiModelProperty(value = "残疾人基本辅助器具适配补贴人数-其他") |
| | | private Integer assistiveDeviceOther; |
| | | |
| | | } |