| | |
| | | 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; |
| | |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 派遣单位方案管关联信息表 |
| | |
| | | @ExcelColumn(name="审核人编码(关联system_user)") |
| | | private Integer checkUserId; |
| | | |
| | | @ApiModelProperty(value = "方案名称") |
| | | @TableField(exist = false) |
| | | private String solutionName; |
| | | |
| | | |
| | | @ApiModelProperty(value = "派遣单位方案管工种关联信息表", example = "1") |
| | | @TableField(exist = false) |
| | | private List<DuWorktype> duWorktypeList; |
| | | |
| | | } |