package org.jeecg.modules.eam.vo;
|
|
import java.util.List;
|
|
import org.jeecg.common.constant.CommonConstant;
|
import org.jeecg.modules.eam.entity.OperationCertificateApply;
|
import org.jeecg.modules.eam.entity.OperationCertificateApplyDetail;
|
import lombok.Data;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecgframework.poi.excel.annotation.ExcelEntity;
|
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
import java.util.Date;
|
import org.jeecg.common.aspect.annotation.Dict;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
/**
|
* @Description: 操作证申请表
|
* @Author: jeecg-boot
|
* @Date: 2023-10-17
|
* @Version: V1.0
|
*/
|
@Data
|
@ApiModel(value="mom_eam_operation_certificate_applyPage对象", description="操作证申请表")
|
public class OperationCertificateApplyPage {
|
|
/**主键ID*/
|
@ApiModelProperty(value = "主键ID")
|
private String id;
|
/**申请单编号*/
|
@Excel(name = "申请单编号", width = 15)
|
@ApiModelProperty(value = "申请单编号")
|
private String num;
|
/**类型*/
|
@Excel(name = "类型", width = 15, dicCode = "apply_type")
|
@Dict(dicCode = "apply_type")
|
@ApiModelProperty(value = "类型")
|
private String type;
|
/**所在单位*/
|
@Excel(name = "所在单位", width = 15, dictTable = "sys_depart", dicText = "depart_name", dicCode = "id")
|
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id")
|
@ApiModelProperty(value = "所在单位")
|
private String departId;
|
/**申请单位联系电话*/
|
@Excel(name = "申请单位联系电话", width = 15)
|
@ApiModelProperty(value = "申请单位联系电话")
|
private String contactNumber;
|
/**申请人*/
|
@Excel(name = "申请人", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "id")
|
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "id")
|
@ApiModelProperty(value = "申请人")
|
private String applicant;
|
/**审核状态*/
|
@Excel(name = "审核状态", width = 15, dicCode = "certificate_apply_status")
|
@Dict(dicCode = "certificate_apply_status")
|
@ApiModelProperty(value = "审核状态")
|
private String auditStatus;
|
/**备注*/
|
@Excel(name = "备注", width = 15)
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
/**创建人*/
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
/**创建时间*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "创建时间")
|
private Date createTime;
|
/**更新人*/
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**更新时间*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "更新时间")
|
private Date updateTime;
|
/**租户ID*/
|
@Excel(name = "租户ID", width = 15)
|
@ApiModelProperty(value = "租户ID")
|
private String tenantId;
|
/**删除标识*/
|
@Excel(name = "删除标识", width = 15)
|
@ApiModelProperty(value = "删除标识")
|
private Integer delFlag = CommonConstant.DEL_FLAG_0;
|
/**状态*/
|
@Excel(name = "状态", width = 15)
|
@ApiModelProperty(value = "状态")
|
private String status ;
|
/**属性字段1*/
|
@Excel(name = "属性字段1", width = 15)
|
@ApiModelProperty(value = "属性字段1")
|
private String uda1;
|
/**属性字段2*/
|
@Excel(name = "属性字段2", width = 15)
|
@ApiModelProperty(value = "属性字段2")
|
private String uda2;
|
/**属性字段3*/
|
@Excel(name = "属性字段3", width = 15)
|
@ApiModelProperty(value = "属性字段3")
|
private String uda3;
|
/**属性字段4*/
|
@Excel(name = "属性字段4", width = 15)
|
@ApiModelProperty(value = "属性字段4")
|
private String uda4;
|
/**属性字段5*/
|
@Excel(name = "属性字段5", width = 15)
|
@ApiModelProperty(value = "属性字段5")
|
private String uda5;
|
|
@ExcelCollection(name="操作证申请明细表")
|
@ApiModelProperty(value = "操作证申请明细表")
|
private List<OperationCertificateApplyDetail> operationCertificateApplyDetailList;
|
|
}
|