| | |
| | | private Date lastChangeDate; |
| | | |
| | | |
| | | @ApiModelProperty(value = "最低年龄", example = "1") |
| | | @TableField(exist = false) |
| | | private Integer minAge; |
| | | |
| | | @ApiModelProperty(value = "最高年龄", example = "1") |
| | | @TableField(exist = false) |
| | | private Integer maxAge; |
| | | |
| | | |
| | | @ApiModelProperty(value = "保险费用(人/天)", example = "1") |
| | | @TableField(exist = false) |
| | | private BigDecimal price; |
| | | |
| | | @ApiModelProperty(value = "保险时间单位0天 1半月 2月 3年", example = "1") |
| | | @TableField(exist = false) |
| | | private Integer timeUnit; |
| | | |
| | | public TaxesInvoicingVO toTaxesInvoicingVO(){ |
| | | TaxesInvoicingVO taxesInvoicingVO = new TaxesInvoicingVO(); |
| | | taxesInvoicingVO.setId(this.getId()); |