package org.jeecg.modules.eam.entity;
|
|
import java.io.Serializable;
|
import java.io.UnsupportedEncodingException;
|
import java.util.Date;
|
import java.math.BigDecimal;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
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.springframework.format.annotation.DateTimeFormat;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecg.common.aspect.annotation.Dict;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* @Description: mom_eam_technology_status
|
* @Author: jeecg-boot
|
* @Date: 2023-12-11
|
* @Version: V1.0
|
*/
|
@Data
|
@TableName("mom_eam_technology_status")
|
@Accessors(chain = true)
|
@EqualsAndHashCode(callSuper = false)
|
@ApiModel(value="mom_eam_technology_status对象", description="mom_eam_technology_status")
|
public class TechnologyStatus extends JeecgEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**三保单据/技术状态鉴定单据id*/
|
@Excel(name = "三保单据/技术状态鉴定单据id", width = 15)
|
@ApiModelProperty(value = "三保单据/技术状态鉴定单据id")
|
private java.lang.String orderId;
|
/**鉴定结论(技术状态)*/
|
@Excel(name = "鉴定结论(技术状态)", width = 15)
|
@ApiModelProperty(value = "鉴定结论(技术状态)")
|
private java.lang.String technologyStatus;
|
/**鉴定人签字*/
|
@Excel(name = "鉴定人签字", width = 15)
|
@ApiModelProperty(value = "鉴定人签字")
|
private java.lang.String appraiser;
|
/**领导签字*/
|
@Excel(name = "领导签字", width = 15)
|
@ApiModelProperty(value = "领导签字")
|
private java.lang.String leadership;
|
/**生产设备技术状态鉴定单据id*/
|
@Excel(name = "生产设备技术状态鉴定单据id", width = 15)
|
@ApiModelProperty(value = "生产设备技术状态鉴定单据id")
|
private java.lang.String receipts;
|
/**result_1*/
|
@Excel(name = "result_1", width = 15)
|
@ApiModelProperty(value = "result_1")
|
private java.lang.String result_1;
|
/**result_2*/
|
@Excel(name = "result_2", width = 15)
|
@ApiModelProperty(value = "result_2")
|
private java.lang.String result_2;
|
/**result_3*/
|
@Excel(name = "result_3", width = 15)
|
@ApiModelProperty(value = "result_3")
|
private java.lang.String result_3;
|
/**result_4*/
|
@Excel(name = "result_4", width = 15)
|
@ApiModelProperty(value = "result_4")
|
private java.lang.String result_4;
|
/**result_5*/
|
@Excel(name = "result_5", width = 15)
|
@ApiModelProperty(value = "result_5")
|
private java.lang.String result_5;
|
/**result_6*/
|
@Excel(name = "result_6", width = 15)
|
@ApiModelProperty(value = "result_6")
|
private java.lang.String result_6;
|
/**result_7*/
|
@Excel(name = "result_7", width = 15)
|
@ApiModelProperty(value = "result_7")
|
private java.lang.String result_7;
|
/**result_8*/
|
@Excel(name = "result_8", width = 15)
|
@ApiModelProperty(value = "result_8")
|
private java.lang.String result_8;
|
/**result_9*/
|
@Excel(name = "result_9", width = 15)
|
@ApiModelProperty(value = "result_9")
|
private java.lang.String result_9;
|
/**result_10*/
|
@Excel(name = "result_10", width = 15)
|
@ApiModelProperty(value = "result_10")
|
private java.lang.String result_10;
|
/**result_11*/
|
@Excel(name = "result_11", width = 15)
|
@ApiModelProperty(value = "result_11")
|
private java.lang.String result_11;
|
/**result_12*/
|
@Excel(name = "result_12", width = 15)
|
@ApiModelProperty(value = "result_12")
|
private java.lang.String result_12;
|
/**result_13*/
|
@Excel(name = "result_13", width = 15)
|
@ApiModelProperty(value = "result_13")
|
private java.lang.String result_13;
|
/**result_14*/
|
@Excel(name = "result_14", width = 15)
|
@ApiModelProperty(value = "result_14")
|
private java.lang.String result_14;
|
/**delFlag*/
|
@Excel(name = "delFlag", width = 15)
|
@ApiModelProperty(value = "delFlag")
|
@TableLogic
|
private java.lang.Integer delFlag = CommonConstant.DEL_FLAG_0;
|
|
@TableField(exist = false)
|
private String flag;
|
|
@TableField(exist = false)
|
private String equipmentId;
|
}
|