|
@@ -1,6 +1,7 @@
|
|
|
package org.jeecg.modules.payment.entity;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
@@ -44,6 +45,8 @@ public class ManagerPaymentAndReceiptSlip implements Serializable {
|
|
|
private String cusCode;
|
|
|
@ApiModelProperty("客户档案名称")
|
|
|
private String cusName;
|
|
|
+ @ApiModelProperty("总额")
|
|
|
+ private BigDecimal totalPrice;
|
|
|
@ApiModelProperty("创建时间")
|
|
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@@ -74,6 +77,7 @@ public class ManagerPaymentAndReceiptSlip implements Serializable {
|
|
|
this.cusId = reqDTO.getCusId();
|
|
|
this.cusCode = reqDTO.getCusCode();
|
|
|
this.cusName = reqDTO.getCusName();
|
|
|
+ this.totalPrice = reqDTO.getTotalPrice();
|
|
|
this.delFlag = "0";
|
|
|
this.pkOrg = reqDTO.getPkOrg();
|
|
|
}
|