Files
klp-oa/klp-wms/src/main/java/com/klp/domain/WmsInspectionTensile.java
Joshi 0d40774194 feat(wms): 添加检验管理模块功能
- 新增检验项目明细相关实体类、业务对象、视图对象及服务接口
- 实现检验项目明细的增删改查、分页查询及数据校验功能
- 新增检验主记录相关实体类、业务对象、视图对象及服务接口
- 实现检验主记录的增删改查、分页查询及数据校验功能
- 新增金属材料室温拉伸试验相关实体类、业务对象、视图对象及服务接口
- 实现拉伸试验记录的增删改查、分页查询及数据校验功能
- 配置MyBatis映射文件及Excel导出功能
- 添加相应的控制器及参数验证规则
2026-06-13 13:02:43 +08:00

66 lines
1.3 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.domain;
import com.baomidou.mybatisplus.annotation.*;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 金属材料室温拉伸试验主记录对象 wms_inspection_tensile
*
* @author klp
* @date 2026-06-13
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_inspection_tensile")
public class WmsInspectionTensile extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 试验记录主键ID自增
*/
@TableId(value = "test_id")
private String testId;
/**
* 试验记录标题
*/
private String testTitle;
/**
* 执行标准
*/
private String executeStandard;
/**
* 设备名称
*/
private String equipmentName;
/**
* 设备型号
*/
private String equipmentModel;
/**
* 检测环境温度
*/
private String testTemp;
/**
* 检测环境湿度
*/
private String testHumidity;
/**
* 生产工序(酸连轧/拉矫/镀锌/镀铬/双机架等)
*/
private String productionProcess;
/**
* 逻辑删除标识0=正常1=已删
*/
@TableLogic
private Integer delFlag;
/**
* 备注
*/
private String remark;
}