feat(report): 添加交易成功时间字段
- 在 OfsPassiveorderDetailDto、OnlyAfterSalesBDto 和 TocofsReturnGoodsDetailedDto 中添加交易成功时间字段 - 在 OfsPassiveorderDetailEntity、OnlyAfterSalesBEntity 和 TocofsReturngoodsDetailedEntity 中添加对应的实体属性 - 更新 XML 文件以包含新字段的映射
This commit is contained in:
parent
d3ceb69a36
commit
f81ae5e362
|
@ -65,6 +65,9 @@ public class OfsPassiveorderDetailDto {
|
||||||
@ExcelProperty(value = "入库推送状态")
|
@ExcelProperty(value = "入库推送状态")
|
||||||
private String newstate;
|
private String newstate;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "交易成功时间")
|
||||||
|
private String def11;
|
||||||
|
|
||||||
@ExcelProperty(value = "U销售订单编码")
|
@ExcelProperty(value = "U销售订单编码")
|
||||||
private String newsystemnumber;
|
private String newsystemnumber;
|
||||||
|
|
||||||
|
@ -95,6 +98,14 @@ public class OfsPassiveorderDetailDto {
|
||||||
@ExcelProperty(value = "O商家优惠")
|
@ExcelProperty(value = "O商家优惠")
|
||||||
private String def6;
|
private String def6;
|
||||||
|
|
||||||
|
public String getDef11() {
|
||||||
|
return def11;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDef11(String def11) {
|
||||||
|
this.def11 = def11;
|
||||||
|
}
|
||||||
|
|
||||||
public String getReceiptCode() {
|
public String getReceiptCode() {
|
||||||
return receiptCode;
|
return receiptCode;
|
||||||
}
|
}
|
||||||
|
|
|
@ -111,6 +111,9 @@ public class OnlyAfterSalesBDto {
|
||||||
@ExcelProperty(value = "情况类型")
|
@ExcelProperty(value = "情况类型")
|
||||||
private String def7;
|
private String def7;
|
||||||
|
|
||||||
|
@ExcelProperty(value = "交易成功时间")
|
||||||
|
private String def13;
|
||||||
|
|
||||||
@ExcelProperty(value = "O计算应收")
|
@ExcelProperty(value = "O计算应收")
|
||||||
private String def1;
|
private String def1;
|
||||||
|
|
||||||
|
|
|
@ -77,6 +77,9 @@ public class TocofsReturnGoodsDetailedDto {
|
||||||
@ExcelProperty(value = "交易成功蓝-下游主键")
|
@ExcelProperty(value = "交易成功蓝-下游主键")
|
||||||
private String def17;
|
private String def17;
|
||||||
|
|
||||||
|
//交易成功时间
|
||||||
|
private String def23;
|
||||||
|
|
||||||
//情况类型
|
//情况类型
|
||||||
@ExcelProperty(value = "情况类型")
|
@ExcelProperty(value = "情况类型")
|
||||||
private String def24;
|
private String def24;
|
||||||
|
|
|
@ -127,6 +127,8 @@ public class OfsPassiveorderDetailEntity extends BaseEntity {
|
||||||
|
|
||||||
private String def10;
|
private String def10;
|
||||||
|
|
||||||
|
private String def11;
|
||||||
|
|
||||||
private String businessDateStart;
|
private String businessDateStart;
|
||||||
|
|
||||||
private String businessDateEnd;
|
private String businessDateEnd;
|
||||||
|
@ -482,5 +484,13 @@ public class OfsPassiveorderDetailEntity extends BaseEntity {
|
||||||
public void setTransactionDate(String transactionDate) {
|
public void setTransactionDate(String transactionDate) {
|
||||||
this.transactionDate = transactionDate;
|
this.transactionDate = transactionDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDef11() {
|
||||||
|
return def11;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDef11(String def11) {
|
||||||
|
this.def11 = def11;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,6 +67,8 @@
|
||||||
<result property="def4" column="def4" jdbcType="VARCHAR"/>
|
<result property="def4" column="def4" jdbcType="VARCHAR"/>
|
||||||
<result property="def5" column="def5" jdbcType="VARCHAR"/>
|
<result property="def5" column="def5" jdbcType="VARCHAR"/>
|
||||||
<result property="def6" column="def6" jdbcType="VARCHAR"/>
|
<result property="def6" column="def6" jdbcType="VARCHAR"/>
|
||||||
|
|
||||||
|
<result property="def11" column="def11" javaType="VARCHAR"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<!-- 查询的字段-->
|
<!-- 查询的字段-->
|
||||||
|
@ -193,6 +195,11 @@
|
||||||
,a.def4
|
,a.def4
|
||||||
,a.def5
|
,a.def5
|
||||||
,a.def6
|
,a.def6
|
||||||
|
,a.def7
|
||||||
|
,a.def8
|
||||||
|
,a.def9
|
||||||
|
,a.def10
|
||||||
|
,a.def11
|
||||||
,b.companyCode
|
,b.companyCode
|
||||||
,b.facilityCode
|
,b.facilityCode
|
||||||
,b.storeCode
|
,b.storeCode
|
||||||
|
|
|
@ -76,6 +76,13 @@
|
||||||
<result property="def4" column="def4" jdbcType="VARCHAR"/>
|
<result property="def4" column="def4" jdbcType="VARCHAR"/>
|
||||||
<result property="def5" column="def5" jdbcType="VARCHAR"/>
|
<result property="def5" column="def5" jdbcType="VARCHAR"/>
|
||||||
<result property="def6" column="def6" jdbcType="VARCHAR"/>
|
<result property="def6" column="def6" jdbcType="VARCHAR"/>
|
||||||
|
<result property="def7" column="def7" jdbcType="VARCHAR"/>
|
||||||
|
<result property="def8" column="def8" jdbcType="VARCHAR"/>
|
||||||
|
<result property="def9" column="def9" jdbcType="VARCHAR"/>
|
||||||
|
<result property="def10" column="def10" jdbcType="VARCHAR"/>
|
||||||
|
<result property="def11" column="def11" jdbcType="VARCHAR"/>
|
||||||
|
<result property="def12" column="def12" jdbcType="VARCHAR"/>
|
||||||
|
<result property="def13" column="def13" jdbcType="VARCHAR"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<!-- 查询的字段-->
|
<!-- 查询的字段-->
|
||||||
|
@ -133,6 +140,7 @@
|
||||||
,def10
|
,def10
|
||||||
,def11
|
,def11
|
||||||
,def12
|
,def12
|
||||||
|
,def13
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<!-- 查询 采用==查询 -->
|
<!-- 查询 采用==查询 -->
|
||||||
|
|
|
@ -480,6 +480,7 @@
|
||||||
<result property="def16" column="def16" jdbcType="VARCHAR"/>
|
<result property="def16" column="def16" jdbcType="VARCHAR"/>
|
||||||
<result property="def17" column="def17" jdbcType="VARCHAR"/>
|
<result property="def17" column="def17" jdbcType="VARCHAR"/>
|
||||||
|
|
||||||
|
<result property="def23" column="def23" jdbcType="VARCHAR"/>
|
||||||
<result property="def24" column="def24" jdbcType="VARCHAR"/>
|
<result property="def24" column="def24" jdbcType="VARCHAR"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue