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_precision_inspection_detail * @Author: jeecg-boot * @Date: 2023-09-04 * @Version: V1.0 */ @Data @TableName("mom_eam_precision_inspection_detail") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="mom_eam_precision_inspection_detail对象", description="mom_eam_precision_inspection_detail") public class PrecisionInspectionDetail extends JeecgEntity implements Serializable { private static final long serialVersionUID = 1L; /**精度检验表id*/ @Excel(name = "精度检验表id", width = 15) @ApiModelProperty(value = "精度检验表id") private String precisionInspectionId; /**设备id*/ @Excel(name = "设备id", width = 15) @ApiModelProperty(value = "设备id") private String equipmentId; /**精度参数id*/ @Excel(name = "精度参数id", width = 15) @ApiModelProperty(value = "精度参数id") private String precisionParametersId; /**保养单位*/ @Excel(name = "保养单位", width = 15) @ApiModelProperty(value = "保养单位") private String maintenanceUnit; /**允差*/ @Excel(name = "允差", width = 15) @ApiModelProperty(value = "允差") private String tolerance; /**实测*/ @Excel(name = "实测", width = 15) @ApiModelProperty(value = "实测") private String actualMeasure; /**备注*/ @Excel(name = "备注", width = 15) @ApiModelProperty(value = "备注") private String remark; /**tenantId*/ @Excel(name = "tenantId", width = 15) @ApiModelProperty(value = "tenantId") private String tenantId; /**delFlag*/ @Excel(name = "delFlag", width = 15) @ApiModelProperty(value = "delFlag") @TableLogic private Integer delFlag = CommonConstant.DEL_FLAG_0; @TableField(exist = false) private String precisionParametersName; }