feat(wms): 添加产品和原材料的材质、厂家、表面处理及锌层厚度字段

- 在WmsProduct和WmsRawMaterial实体类中新增material、manufacturer、  surfaceTreatmentDesc和zincLayer字段
- 更新对应的BO和VO类,同步添加上述四个字段
- 修改Mapper XML文件,增加新字段的映射配置
- 在Service实现类中,为新字段添加查询条件支持
- 导入必要的MyBatis注解以支持字段映射
This commit is contained in:
2025-11-14 16:58:02 +08:00
parent 6b6cd2cbbf
commit a3269487e4
10 changed files with 144 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
package com.klp.domain.bo;
import com.baomidou.mybatisplus.annotation.TableField;
import com.klp.common.core.domain.BaseEntity;
import com.klp.common.core.validate.AddGroup;
import com.klp.common.core.validate.EditGroup;
@@ -96,5 +97,27 @@ public class WmsProductBo extends BaseEntity {
//规格
private String specification;
/**
* 材质
*/
private String material;
/**
* 厂家
*/
private String manufacturer;
/**
* 表面处理详情
*/
private String surfaceTreatmentDesc;
/**
* 锌层厚度
*/
private String zincLayer;
}

View File

@@ -152,5 +152,25 @@ public class WmsRawMaterialBo extends BaseEntity {
//规格
private String specification;
/**
* 材质
*/
private String material;
/**
* 厂家
*/
private String manufacturer;
/**
* 表面处理详情
*/
private String surfaceTreatmentDesc;
/**
* 锌层厚度
*/
private String zincLayer;
}