package org.jeecg.modules.eam.entity; import java.io.Serializable; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.minio.messages.Upload; import org.jeecg.common.aspect.annotation.Dict; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import org.jeecg.common.constant.CommonConstant; import org.jeecg.common.system.base.entity.JeecgEntity; import org.jeecg.common.system.base.entity.SysUpload; import org.springframework.format.annotation.DateTimeFormat; import org.jeecgframework.poi.excel.annotation.Excel; import java.util.Date; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.UnsupportedEncodingException; import java.util.List; /** * @Description: 作业指导书 * @Author: jeecg-boot * @Date: 2023-04-25 * @Version: V1.0 */ @Data @TableName("mom_eam_equipment_document") @ApiModel(value="mom_eam_equipment_document对象", description="作业指导书") public class EquipmentDocument extends JeecgEntity implements Serializable { private static final long serialVersionUID = 1L; /**设备台账id*/ @ApiModelProperty(value = "设备台账id") private String equipmentId; /**序号*/ @Excel(name = "序号", width = 15) @ApiModelProperty(value = "序号") private String sort; /**文档编号*/ @Excel(name = "文档编号", width = 15) @ApiModelProperty(value = "文档编号") private String num; /**文档类型*/ @Excel(name = "文档类型", width = 15) @ApiModelProperty(value = "文档类型") @Dict(dicCode = "common_upload_type") private String type; /**备用字段1*/ @Excel(name = "备用字段1", width = 15) @ApiModelProperty(value = "备用字段1") private String equipmentDocumentUda1; /**备用字段2*/ @Excel(name = "备用字段2", width = 15) @ApiModelProperty(value = "备用字段2") private String equipmentDocumentUda2; /**备用字段3*/ @Excel(name = "备用字段3", width = 15) @ApiModelProperty(value = "备用字段3") private String equipmentDocumentUda3; /**备用字段4*/ @Excel(name = "备用字段4", width = 15) @ApiModelProperty(value = "备用字段4") private String equipmentDocumentUda4; /**备用字段5*/ @Excel(name = "备用字段5", width = 15) @ApiModelProperty(value = "备用字段5") private String equipmentDocumentUda5; /**备注*/ @Excel(name = "备注", width = 15) @ApiModelProperty(value = "备注") private String remark; /**状态 0 禁用 1 启用*/ @Excel(name = "状态 0 禁用 1 启用", width = 15) @ApiModelProperty(value = "状态 0 禁用 1 启用") private String status = CommonConstant.STATUS_1; /**租户id*/ @Excel(name = "租户id", width = 15) @ApiModelProperty(value = "租户id") private String tenantId; /**删除状态(0-正常,1-已删除)*/ @Excel(name = "删除状态(0-正常,1-已删除)", width = 15) @ApiModelProperty(value = "删除状态(0-正常,1-已删除)") private Integer delFlag = CommonConstant.DEL_FLAG_0; @TableField(exist = false) private SysUpload upload; @TableField(exist = false) private String size; @TableField(exist = false) private String name; }