| | |
| | | package com.doumee.dao.business.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.core.model.LoginUserInfo; |
| | | import com.doumee.core.utils.Constants; |
| | |
| | | @ExcelColumn(name="派遣单位",index = 4) |
| | | private String duName; |
| | | |
| | | |
| | | @ApiModelProperty(value = "序号", example = "1") |
| | | @ExcelColumn(name="序号",index = 0) |
| | | @TableField(exist = false) |
| | | private Integer sn; |
| | | |
| | | |
| | | @ApiModelProperty(value = "关联明细主键", example = "1") |
| | | private Integer relationId; |
| | | |
| | | @ApiModelProperty(value = "员工名称", example = "1") |
| | | @TableField(exist = false) |
| | | private String memberName; |
| | | |
| | | // @ApiModelProperty(value = "关联明细类型:0=投保申请;1=加减保/换厂", example = "1") |
| | | // @ExcelColumn(name="关联明细类型:0=投保申请;1=加减保/换厂") |
| | | // private Integer relationType; |