package com.doumee.dao.business.vo; 
 | 
  
 | 
import com.baomidou.mybatisplus.annotation.IdType; 
 | 
import com.baomidou.mybatisplus.annotation.TableId; 
 | 
import com.doumee.core.annotation.excel.ExcelColumn; 
 | 
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 SolutionsVO { 
 | 
  
 | 
    @ApiModelProperty(value = "主键", example = "1") 
 | 
    private Integer id; 
 | 
  
 | 
    @ApiModelProperty(value = "创建人编码", example = "1") 
 | 
    private Integer creator; 
 | 
  
 | 
    @ApiModelProperty(value = "创建时间") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    private Date createDate; 
 | 
  
 | 
    @ApiModelProperty(value = "更新人编码", example = "1") 
 | 
    private Integer editor; 
 | 
  
 | 
    @ApiModelProperty(value = "更新时间") 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    private Date editDate; 
 | 
  
 | 
    @ApiModelProperty(value = "是否删除0否 1是", example = "1") 
 | 
    private Integer isdeleted; 
 | 
  
 | 
    @ApiModelProperty(value = "名称") 
 | 
    private String name; 
 | 
  
 | 
    @ApiModelProperty(value = "备注") 
 | 
    private String remark; 
 | 
  
 | 
    @ApiModelProperty(value = "状态 0启用 1禁用", example = "1") 
 | 
    private Integer status; 
 | 
  
 | 
    @ApiModelProperty(value = "排序码", example = "1") 
 | 
    private Integer sortnum; 
 | 
  
 | 
    @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; 
 | 
  
 | 
    @ApiModelProperty(value = "最低年龄", example = "1") 
 | 
    private Integer minAge; 
 | 
  
 | 
    @ApiModelProperty(value = "最高年龄", example = "1") 
 | 
    private Integer maxAge; 
 | 
  
 | 
    @ApiModelProperty(value = "保险费用(人/天)", example = "1") 
 | 
    private BigDecimal price; 
 | 
  
 | 
    @ApiModelProperty(value = "保险时间单位0天 1半月 2月 3年", example = "1") 
 | 
    private Integer timeUnit; 
 | 
  
 | 
    @ApiModelProperty(value = "开户行") 
 | 
    private String insureCycle; 
 | 
  
 | 
    @ApiModelProperty(value = "最小投保周期时间单位0天 1半月 2月 3年", example = "1") 
 | 
    private Integer insureCycleUnit; 
 | 
  
 | 
    @ApiModelProperty(value = "最小计费周期时间单位 0天 1半月 2月 3年", example = "1") 
 | 
    private Integer priceCycleUnit; 
 | 
  
 | 
    @ApiModelProperty(value = "是否单独指派工种 0否 1四", example = "1") 
 | 
    private Integer singleWorktype; 
 | 
  
 | 
    @ApiModelProperty(value = "接收文件邮箱") 
 | 
    private String email; 
 | 
  
 | 
    @ApiModelProperty(value = "特别约定") 
 | 
    private String specialAgreement; 
 | 
  
 | 
    @ApiModelProperty(value = "特别说明") 
 | 
    private String specialInfo; 
 | 
  
 | 
    @ApiModelProperty(value = "其他说明") 
 | 
    private String ortherInfo; 
 | 
  
 | 
    @ApiModelProperty(value = "所属方案基表编码(solution_base_id)", example = "1") 
 | 
    private Integer solutionBaseId; 
 | 
  
 | 
    @ApiModelProperty(value = "版本号") 
 | 
    private String version; 
 | 
  
 | 
  
 | 
} 
 |