| | |
| | | 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="审核备注") |
| | | private String checkInfo; |
| | | |
| | | @ApiModelProperty(value = "授权文件") |
| | | @TableField(exist = false) |
| | | private List<Multifile> multifileList; |
| | | |
| | | @ApiModelProperty(value = "申请人企业") |
| | | @TableField(exist = false) |
| | | private String companyName; |
| | | |
| | | @ApiModelProperty(value = "申请人企业主键") |
| | | @TableField(exist = false) |
| | | private Integer companyId; |
| | | |
| | | @ApiModelProperty(value = "申请人名称") |
| | | @TableField(exist = false) |
| | | private String realName; |
| | | |
| | | @ApiModelProperty(value = "授权账号") |
| | | @TableField(exist = false) |
| | | private String userName; |
| | | |
| | | } |