feat(wms): 修改物料卷导出VO中的重量字段为毛重
- 将WmsMaterialCoilExportVo类中的netWeight字段更名为grossWeight - 更新对应的XML映射文件中重量字段的查询别名为grossWeight
This commit is contained in:
@@ -71,7 +71,7 @@ public class WmsMaterialCoilExportVo {
|
||||
* 重量(kg)
|
||||
*/
|
||||
@ExcelProperty(value = "重量")
|
||||
private BigDecimal netWeight;
|
||||
private BigDecimal grossWeight;
|
||||
|
||||
/**
|
||||
* 用途
|
||||
|
||||
@@ -340,7 +340,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
-- 日期
|
||||
mc.create_time AS createTime,
|
||||
-- 重量
|
||||
mc.net_weight AS netWeight,
|
||||
mc.gross_weight AS grossWeight,
|
||||
-- 用途(暂无数据源)
|
||||
NULL AS purpose,
|
||||
-- 切边要求
|
||||
|
||||
Reference in New Issue
Block a user