feat(mill): 添加设备部件负责人字段

- 在 EqpEquipmentPart 实体类中新增负责人属性
- 更新数据库映射文件中的结果映射配置
- 修改 SQL 查询语句以包含负责人字段
- 为新增字段添加插入和更新逻辑的支持
- 在数据库表结构中添加负责人列定义
This commit is contained in:
2026-06-08 13:41:28 +08:00
parent 7899b31c08
commit 022312d02c
3 changed files with 13 additions and 4 deletions

View File

@@ -24,6 +24,9 @@ public class EqpEquipmentPart extends BaseEntity {
@Excel(name = "产线段")
private String lineSection;
@Excel(name = "负责人")
private String responsiblePerson;
@Excel(name = "备注")
private String remark;