From 438c4db9cfcd23f01214b378e5846b7bfc13aa46 Mon Sep 17 00:00:00 2001 From: fhx <308050795@qq.com> Date: 星期二, 23 四月 2024 12:50:26 +0800 Subject: [PATCH] 1.修改dto --- phis-feign/src/main/java/com/hz/his/dto/order/OrderPayMethodDto.java | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/phis-feign/src/main/java/com/hz/his/dto/order/OrderPayMethodDto.java b/phis-feign/src/main/java/com/hz/his/dto/order/OrderPayMethodDto.java index a03f7ad..76c3f2c 100644 --- a/phis-feign/src/main/java/com/hz/his/dto/order/OrderPayMethodDto.java +++ b/phis-feign/src/main/java/com/hz/his/dto/order/OrderPayMethodDto.java @@ -22,6 +22,13 @@ /**鏄惁鍒掓墸璁$畻锛�0鍚�1鏄�*/ private Integer isExecute; + /** 鎶垫墸绫诲瀷 */ + private String deductionType; + /** 鎶垫墸閲戦 */ + private BigDecimal deductionMoney; + /** 鍓╀綑鎶垫墸閲戦 */ + private BigDecimal surplusDeductionTotal; + /** 杞崲鏂瑰紡缂栫爜 锛堝疄闄呴��娆炬柟寮忕紪鐮侊級 */ private String refundNumberNo; /** 杞崲鏂瑰紡鍚嶇О 锛堝疄闄呴��娆炬柟寮忕紪鐮侊級*/ @@ -43,4 +50,17 @@ this.isMoneyPay = isMoneyPay; this.isExecute = isExecute; } + + public OrderPayMethodDto(String payMethodNo, String payMethodName, BigDecimal payTotal, Integer isMoneyPay, + Integer isExecute, String deductionType, BigDecimal deductionMoney, + BigDecimal surplusDeductionTotal) { + this.payMethodNo = payMethodNo; + this.payMethodName = payMethodName; + this.payTotal = payTotal; + this.isMoneyPay = isMoneyPay; + this.isExecute = isExecute; + this.deductionType = deductionType; + this.deductionMoney = deductionMoney; + this.surplusDeductionTotal = surplusDeductionTotal; + } } -- Gitblit v1.8.0