feat(report): 为 TOB 和 TOC 销售出库明细 DTO 添加新字段
- 在 TobofsSaleoutDetailedDto 和 TocofsSaleoutDetailedDto 中添加 businessDate 和 successfulTradeDate 字段- 在 TocofsSaleoutDetailedEntity.xml 中添加对应的数据库映射 - 新增字段用于表示库存出库完成时间和交易成功时间
This commit is contained in:
parent
63840f7e5a
commit
d7d6bc7ce0
|
@ -47,6 +47,9 @@ public class TobofsSaleoutDetailedDto {
|
|||
private String businesstype;
|
||||
|
||||
//库存 开始
|
||||
@ExcelProperty(value = "库存-O出库完成时间")
|
||||
private String businessDate;
|
||||
|
||||
@ExcelProperty(value = "库存-推送状态")
|
||||
private String newstate;
|
||||
|
||||
|
@ -64,6 +67,9 @@ public class TobofsSaleoutDetailedDto {
|
|||
//库存 结束
|
||||
|
||||
//TOB交易红 开始
|
||||
@ExcelProperty(value = "交易-O交易成功时间")
|
||||
private String successfulTradeDate;
|
||||
|
||||
@ExcelProperty(value = "交易-推送状态")
|
||||
private String newstate4;
|
||||
|
||||
|
|
|
@ -47,6 +47,9 @@ public class TocofsSaleoutDetailedDto {
|
|||
private String businesstype;
|
||||
|
||||
//库存 开始
|
||||
@ExcelProperty(value = "库存-O出库完成时间")
|
||||
private String businessDate;
|
||||
|
||||
@ExcelProperty(value = "库存-推送状态")
|
||||
private String newstate;
|
||||
|
||||
|
@ -64,6 +67,9 @@ public class TocofsSaleoutDetailedDto {
|
|||
//库存 结束
|
||||
|
||||
//交易红 开始
|
||||
@ExcelProperty(value = "交易-O交易成功时间")
|
||||
private String successfulTradeDate;
|
||||
|
||||
@ExcelProperty(value = "交易红-推送状态")
|
||||
private String newstate2;
|
||||
|
||||
|
|
|
@ -438,6 +438,8 @@
|
|||
<result property="def4" column="def4" jdbcType="VARCHAR"/>
|
||||
<result property="newsystemnumber3" column="newSystemNumber3" jdbcType="VARCHAR"/>
|
||||
<result property="newsystemprimary3" column="newSystemPrimary3" jdbcType="VARCHAR"/>
|
||||
<result property="businessDate" column="businessDate" jdbcType="VARCHAR"/>
|
||||
<result property="successfulTradeDate" column="successfulTradeDate" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
|
||||
|
@ -462,6 +464,8 @@
|
|||
<result property="def6" column="def6" jdbcType="VARCHAR"/>
|
||||
<result property="newsystemnumber4" column="newSystemNumber4" jdbcType="VARCHAR"/>
|
||||
<result property="newsystemprimary4" column="newSystemPrimary4" jdbcType="VARCHAR"/>
|
||||
<result property="businessDate" column="businessDate" jdbcType="VARCHAR"/>
|
||||
<result property="successfulTradeDate" column="successfulTradeDate" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
|
||||
<!-- TOC通用查询 采用==查询 -->
|
||||
|
|
Loading…
Reference in New Issue