| | |
| | | package com.doumee.dao.business.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 保险方案信息表 |
| | |
| | | * @date 2024/10/28 19:16 |
| | | */ |
| | | @Data |
| | | @ApiModel("保险方案信息表") |
| | | @ApiModel("保险主方案信息表") |
| | | @TableName("`solutions_base`") |
| | | public class SolutionsBase { |
| | | |
| | |
| | | @ExcelColumn(name="版本号") |
| | | private String version; |
| | | |
| | | @ApiModelProperty(value = "记录类型 0基表数据 1历史版本数据", example = "1") |
| | | @ExcelColumn(name="记录类型 0基表数据 1历史版本数据") |
| | | @ApiModelProperty(value = "记录类型 0基表数据 1历史版本数据 2当前启用版本", example = "1") |
| | | @ExcelColumn(name="记录类型 0基表数据 1历史版本数据 2当前启用版本") |
| | | private Integer dataType; |
| | | |
| | | @ApiModelProperty(value = "基表编码(自关联)", example = "1") |
| | |
| | | @ExcelColumn(name="承包公司") |
| | | private String companyName; |
| | | |
| | | @ApiModelProperty(value = "风险设置-延迟报案提醒时间") |
| | | @ExcelColumn(name="风险设置-延迟报案提醒时间") |
| | | private Integer riskDelayTime; |
| | | @ApiModelProperty(value = "风险设置-延迟报案提醒时间单位 0分钟 1小时 2天") |
| | | @ExcelColumn(name="风险设置-延迟报案提醒时间单位 0分钟 1小时 2天") |
| | | private Integer riskDelayUnit; |
| | | @ApiModelProperty(value = "风险设置-允许对新员工已投保未生效保险进行保障 0不允许 1允许") |
| | | @ExcelColumn(name="风险设置-允许对新员工已投保未生效保险进行保障 0不允许 1允许") |
| | | private Integer riskNewUserStatus; |
| | | @ApiModelProperty(value = "风险设置-允许新员工出险时间提前时间单位 1小时 2天") |
| | | @ExcelColumn(name="风险设置-允许新员工出险时间提前时间单位 1小时 2天") |
| | | private Integer riskNewUserUnit; |
| | | @ApiModelProperty(value = "风险设置-允许新员工出险时间提前时间") |
| | | @ExcelColumn(name="风险设置-允许新员工出险时间提前时间") |
| | | private Integer riskNewUserTime; |
| | | |
| | | @ApiModelProperty(value = "风险设置-延迟报案提醒是否开启 0不允许 1允许") |
| | | @ExcelColumn(name="风险设置-延迟报案提醒是否开启 0不允许 1允许") |
| | | private Integer riskDelayStatus; |
| | | |
| | | |
| | | @ApiModelProperty(value = "批改提醒时间 HH:mm") |
| | | @ExcelColumn(name="批改提醒时间") |
| | | private String correctWarnTime; |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "保险公司名称", example = "1") |
| | | @TableField(exist = false) |
| | | private String insuranceName; |
| | | |
| | | @ApiModelProperty(value = "委托商户名称", example = "1") |
| | | @TableField(exist = false) |
| | | private String shopName; |
| | | |
| | | @ApiModelProperty(value = "工种列表 - 回显使用", example = "1") |
| | | @TableField(exist = false) |
| | | private List<SolutionWorktype> worktypeList; |
| | | |
| | | @ApiModelProperty(value = "工种编码集合 - 保存使用", example = "1") |
| | | @TableField(exist = false) |
| | | private List<Integer> worktypeIdList; |
| | | |
| | | |
| | | @ApiModelProperty(value = "保存类型:0正常数据;1风险信息", example = "1") |
| | | @TableField(exist = false) |
| | | private Integer saveType; |
| | | |
| | | } |