MrShi
2024-02-22 e622bd5e3b2638b9ab9a712ed1160a66018d6fd7
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.doumee.dao.business.dto;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.doumee.core.annotation.excel.ExcelColumn;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
import java.util.List;
 
/**
 * @author RenKang
 */
@Data
public class InsuranceApplyQueryDTO {
 
    @ApiModelProperty(value = "方案编码(关联solutions)", example = "1")
    private Integer solutionId;
    @ApiModelProperty(value = "企业编码 ", example = "1")
    private Integer companyId;
    @ApiModelProperty(value = "基表方案编码 ", example = "1")
    private Integer baseSolutionId;
 
    @ApiModelProperty(value = "实际保险生效止期开始")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date endTimeS;
 
    @ApiModelProperty(value = "实际保险生效止期结束")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date endTimeE;
 
    @ApiModelProperty(value = "实际保险生效起期开始")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date startTimeS;
 
    @ApiModelProperty(value = "实际保险生效起期结束")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date startTimeE;
 
    @ApiModelProperty(value = "单号")
    private String code;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @ApiModelProperty(value = "提交日期开始")
    private Date createTimeS;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    @ApiModelProperty(value = "提交日期结束")
    private Date createTimeE;
 
    @ApiModelProperty(value = "状态 0待审核 1平台退回保单(已退回) 2已上传代签申请表待企业签章(待签署)  3已签章待上传保险单(待出单) 4保单出具失败退回(已退回) 5已上传保单(保障中)6企业申请退回中 7平台同意退回(已退回) 8企业关闭  (已关闭)", example = "1")
    private String status;
 
    @ApiModelProperty(value = "类型 0直保 1委托投保")
    private Integer type;
 
    @ApiModelProperty(value = "主键列表",notes = "委托投保开票使用")
    private List<Integer> ids;
 
    @ApiModelProperty(value = "即将失效订单:0=否;1=是")
    private Integer loseEfficacy;
 
    @ApiModelProperty(value = "状态 0待审核 1待出单 2保障中  3已过期 4已撤回 5退回申请中 6已关闭", example = "1")
    private Integer statusCollect;
}