| | |
| | | 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; |
| | |
| | | @ExcelColumn(name="状态 0待审核 1平台退回保单(已退回) 2已上传代签申请表待企业签章(待签署) 3已签章待上传保险单(待出单) 4保单出具失败退回(已退回) 5已上传保单(保障中)6企业申请退回中 7平台同意退回(已退回) 8企业关闭 (已关闭)") |
| | | private Integer status; |
| | | |
| | | |
| | | @ApiModelProperty(value = "创建人名称", example = "1") |
| | | @TableField(exist = false) |
| | | private String creatorName; |
| | | |
| | | @ApiModelProperty(value = "公司名称", example = "1") |
| | | @TableField(exist = false) |
| | | private String companyName; |
| | | |
| | | |
| | | } |