“linengliang”
2023-10-09 75a376746ef2ef0d19abc134c4fac69c4274a3ca
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/entity/PrecisionParametersTemplateDetail.java
@@ -14,6 +14,7 @@
import org.jeecgframework.poi.excel.annotation.Excel;
import java.io.Serializable;
import java.math.BigDecimal;
/**
 * @Description: 精度参数模板明细
@@ -26,11 +27,10 @@
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="mom_eam_precision_parameters_template_detail对象", description="精度参数模板明细")
public class PrecisionParametersTemplateDetail extends JeecgEntity implements Serializable {
public class PrecisionParametersTemplateDetail  implements Serializable {
    private static final long serialVersionUID = 1L;
   /**精度参数模板id*/
    private String id;
    /**精度参数模板id*/
   @Excel(name = "精度参数模板id", width = 15)
    @ApiModelProperty(value = "精度参数模板id")
    private String precisionParametersTemplateId;
@@ -43,10 +43,8 @@
    @ApiModelProperty(value = "租户id")
    private String tenantId;
   /**删除状态(0-正常,1-已删除)*/
    @JsonIgnore
    @Excel(name = "删除状态(0-正常,1-已删除)", width = 15)
    @ApiModelProperty(value = "删除状态(0-正常,1-已删除)", hidden = true)
    @TableLogic
    @ApiModelProperty(value = "删除状态(0-正常,1-已删除)")
    private Integer delFlag = CommonConstant.DEL_FLAG_0;
   /**备注*/
   @Excel(name = "备注", width = 15)
@@ -54,8 +52,8 @@
    private String remark;
    /**备用字段1*/
    @Excel(name = "备用字段1", width = 15)
    @ApiModelProperty(value = "备用字段1")
    @Excel(name = "位置", width = 15)
    @ApiModelProperty(value = "位置")
    private String pptdUda1;
    /**备用字段2*/
    @Excel(name = "备用字段2", width = 15)
@@ -104,4 +102,20 @@
    @TableField(exist = false)
    private String unit;
    private Integer sort;
    private String tolerance;
    private Double distance;
    private Double base;
    private Double upper;
    private Double lower;
    private Double actualValue;
    @TableField(exist = false)
    private String precisionParametersUda1;
}