MrShi
2024-04-02 22271e641e4505ba906c3770905b7e84e3ad8d85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.doumee.dao.business.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2024/1/16 9:35
 */
@Data
public class SolutionsDTO {
 
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "所属保险公司编码(insurance)", example = "1")
    private Integer insuranceId;
 
    @ApiModelProperty(value = "生效时间方式 0日后生效 1次月生效", example = "1")
    private Integer validType;
 
    @ApiModelProperty(value = "类型 0直保 1委托投保", example = "1")
    private Integer type;
 
 
}