| 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; | 
|   | 
|   | 
| } |