| package com.doumee.dao.business.dto; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * 存储 补充说明 | 
|  */ | 
| @Data | 
| public class AcceptanceSettleClaimsDTO { | 
|   | 
|     @ApiModelProperty(value = "业务主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "0=受理;1=拒绝受理;2=商议审批;3=商议不审批") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "说明、备注") | 
|     private String describe; | 
|   | 
|     @ApiModelProperty(value = "问题类型:多个用英文逗号隔开") | 
|     private String syProblemOpts; | 
|   | 
| } |