| | |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @Description: 精度参数模板明细 |
| | |
| | | @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; |
| | |
| | | @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) |
| | |
| | | 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) |
| | |
| | | @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; |
| | | |
| | | } |