package org.jeecg.modules.eam.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecg.common.aspect.annotation.Dict;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* @Description: 停用加工设备申请单
|
* @Author: jeecg-boot
|
* @Date: 2025-07-09
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("eam_technical_status_deactivate")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value="eam_technical_status_deactivate对象", description="停用加工设备申请单")
|
public class EamTechnicalStatusDeactivate {
|
|
/**主键*/
|
@TableId(type = IdType.ASSIGN_ID)
|
@ApiModelProperty(value = "主键")
|
private String id;
|
/**创建人*/
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
/**创建时间*/
|
@ApiModelProperty(value = "创建时间")
|
private Date createTime;
|
/**更新人*/
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**更新时间*/
|
@ApiModelProperty(value = "更新时间")
|
private Date updateTime;
|
/**删除标记*/
|
@ApiModelProperty(value = "删除标记")
|
private Integer delFlag;
|
/**停用单号*/
|
@ApiModelProperty(value = "停用单号")
|
private String deactivateOrderNum;
|
/**申请人*/
|
@ApiModelProperty(value = "申请人")
|
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
private String applicant;
|
/**申请部门*/
|
@ApiModelProperty(value = "申请部门")
|
@Dict(dictTable = "eam_base_factory", dicText = "factory_name", dicCode = "org_code")
|
private String factoryOrgCode;
|
/**申请日期*/
|
@ApiModelProperty(value = "申请日期")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private Date applyDate;
|
/**申请单状态;待提交、待单位室级领导审核、生产设备管理主管审核、待保障部领导审核、已作废、已完成*/
|
@ApiModelProperty(value = "申请单状态;待提交、待单位室级领导审核、生产设备管理主管审核、待保障部领导审核、已作废、已完成")
|
private String applicationStatus;
|
/**使用单位室主管签字*/
|
@ApiModelProperty(value = "使用单位室主管签字")
|
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
private String departHeaderSignature;
|
/**使用单位室主管签字结果*/
|
@ApiModelProperty(value = "使用单位室主管签字结果")
|
@Dict(dicCode = "approved_rejected")
|
private String departHeaderSignatureResult;
|
/**使用单位室主管签字时间*/
|
@ApiModelProperty(value = "使用单位室主管签字时间")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date departHeaderSignatureTime;
|
/**使用单位室主管意见*/
|
@ApiModelProperty(value = "使用单位室主管意见")
|
private String departHeaderComment;
|
/**使用单位部主管签字*/
|
@ApiModelProperty(value = "使用单位部主管签字")
|
@Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
|
private String departLeaderSignature;
|
/**使用单位部主管签字结果*/
|
@ApiModelProperty(value = "使用单位部主管签字结果")
|
@Dict(dicCode = "approved_rejected")
|
private String departLeaderSignatureResult;
|
/**使用单位部主管签字时间*/
|
@ApiModelProperty(value = "使用单位部主管签字时间")
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date departLeaderSignatureTime;
|
/**使用单位部主管意见*/
|
@ApiModelProperty(value = "使用单位部主管意见")
|
private String departLeaderComment;
|
/**HF编码*/
|
@ApiModelProperty(value = "HF编码")
|
private String hfCode;
|
/**备注*/
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
}
|