| package com.doumee.dao.business.dto; | 
|   | 
| import com.doumee.dao.business.model.Multifile; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * 存储 补充说明 | 
|  */ | 
| @Data | 
| public class UpdHurtTypeDTO { | 
|   | 
|     @ApiModelProperty(value = "业务主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "是否伤残: 0是 1否") | 
|     private Integer hurtType; | 
|   | 
|   | 
| } |