fix(export): 修复导出功能中的时间字段映射问题
- 将WmsMaterialCoilExportVo中的createTime字段更正为updateTime - 更新WmsMaterialCoilMapper.xml中的数据库字段映射 - 确保导出数据的时间字段正确对应更新时间而非创建时间
This commit is contained in:
@@ -61,7 +61,7 @@ public class WmsMaterialCoilExportVo {
|
|||||||
* 日期
|
* 日期
|
||||||
*/
|
*/
|
||||||
@ExcelProperty(value = "日期")
|
@ExcelProperty(value = "日期")
|
||||||
private Date createTime;
|
private Date updateTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 重量(kg)
|
* 重量(kg)
|
||||||
|
|||||||
@@ -360,7 +360,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
-- 成品卷号
|
-- 成品卷号
|
||||||
mc.current_coil_no AS currentCoilNo,
|
mc.current_coil_no AS currentCoilNo,
|
||||||
-- 日期
|
-- 日期
|
||||||
mc.create_time AS createTime,
|
mc.update_time AS updateTime,
|
||||||
-- 重量
|
-- 重量
|
||||||
mc.net_weight AS netWeight,
|
mc.net_weight AS netWeight,
|
||||||
-- 长度
|
-- 长度
|
||||||
|
|||||||
Reference in New Issue
Block a user