jiangping
2025-05-20 c35d4cc65b01b0a3b88e88f25d485d38b1ef12bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}