| package com.doumee.dao.business.dto; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| public class CompensationDTO { | 
|   | 
|     @ApiModelProperty(value = "业务主键") | 
|     private Integer id; | 
|   | 
|   | 
|     @ApiModelProperty(value = "理赔金额json串") | 
|     private String compensationJson; | 
|   | 
|     @ApiModelProperty(value = "说明") | 
|     private String describe; | 
|   | 
| } |