feat(ems): 能源设备添加电表产线和总表标识字段

- 在 EmsMeter 实体类中新增 productionLine 和 isTotalMeter 字段
- 在 EmsMeterBo 业务对象中添加对应的产线和总表标识属性
- 更新 EmsMeterMapper.xml 映射文件以支持新字段的数据库映射
- 在查询条件中增加产线模糊匹配和总表标识精确匹配功能
- 在 EmsMeterVo 视图对象中添加 Excel 导出支持的新字段
This commit is contained in:
2026-04-27 15:28:05 +08:00
parent 3746175b24
commit 0c3382d6db
5 changed files with 44 additions and 0 deletions

View File

@@ -72,5 +72,13 @@ public class EmsMeter extends BaseEntity {
* 备注
*/
private String remark;
/**
* 产线S1、S2、组装线、包装线等
*/
private String productionLine;
/**
* 是否总表0=否1=是
*/
private Integer isTotalMeter;
}