jiangping
2025-06-04 2e5d0a88777cb679a0b5e8a9f89c7efdc430db8d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
 
}