feat(mes): 添加轧辊磨削复核人字段

- 在前端表格中新增复核人列,支持编辑和显示功能
- 在 MesRollGrind 实体类中添加 reviewer 字段
- 在 MesRollGrindBo 和 MesRollGrindVo 中添加 reviewer 字段
- 更新数据库查询映射文件,包含 reviewer 字段的查询
- 初始化新增行时将 reviewer 设置为 undefined
This commit is contained in:
2026-06-22 17:49:14 +08:00
parent b5a269a37a
commit 7efa20dd94
5 changed files with 21 additions and 2 deletions

View File

@@ -82,6 +82,9 @@ public class MesRollGrind extends BaseEntity {
/** 操作者 */
private String operator;
/** 复核人 */
private String reviewer;
/** 备注 */
private String remark;

View File

@@ -37,5 +37,6 @@ public class MesRollGrindBo extends BaseEntity {
private String flawResult;
private BigDecimal hardness;
private String operator;
private String reviewer;
private String remark;
}

View File

@@ -28,6 +28,7 @@ public class MesRollGrindVo {
private String flawResult;
private BigDecimal hardness;
private String operator;
private String reviewer;
private String remark;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")