1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| 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 CompensationFeeDTO {
|
| @ApiModelProperty(value = "业务主键")
| private Integer id;
|
| @ApiModelProperty(value = "获取类型:1=理算;2=核赔")
| private Integer type;
|
|
| }
|
|