qushaowei
2024-03-22 8b43a416a2bb5188a25bfe0765fa1f42afe8bd23
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/PrecisionInspection.java
@@ -4,12 +4,12 @@
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.math.BigDecimal;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableLogic;
import java.util.List;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.jeecg.common.constant.CommonConstant;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecg.common.aspect.annotation.Dict;
@@ -84,6 +84,9 @@
   @Excel(name = "能否满足加工工艺要求", width = 15)
    @ApiModelProperty(value = "能否满足加工工艺要求")
    private Integer meetProcessRequire;
    @Excel(name = "能否满足加工工艺要求说明", width = 15)
    @ApiModelProperty(value = "能否满足加工工艺要求说明")
    private String meetProcessRequireRemark;
   /**使用单位技术主管*/
   @Excel(name = "使用单位技术主管", width = 15)
    @ApiModelProperty(value = "使用单位技术主管")
@@ -91,7 +94,7 @@
   /**设备判定结果*/
   @Excel(name = "设备判定结果", width = 15)
    @ApiModelProperty(value = "设备判定结果")
    private Integer judgmentResult;
    private String judgmentResult;
   /**备注*/
   @Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
@@ -120,9 +123,18 @@
   @Excel(name = "delFlag", width = 15)
    @ApiModelProperty(value = "delFlag")
    @TableLogic
    private Integer delFlag;
    private Integer delFlag = CommonConstant.DEL_FLAG_0;
   /**设备检验员签字(盖章)*/
   @Excel(name = "设备检验员签字(盖章)", width = 15)
    @ApiModelProperty(value = "设备检验员签字(盖章)")
    private String equipmentInspectorSignUser;
    /**
     * 单据id
     */
    @TableField(exist = false)
    private String receipts;
    @TableField(exist = false)
    private List<PrecisionInspectionDetail> precisionInspectionDetailList;
}