fwq
2023-09-06 dce3020f21b869accff50da25b5955eca0883c2e
提交 | 用户 | age
a88937 1 package com.hz.his.dto.order;
F 2
3 import lombok.Data;
4
5 import java.math.BigDecimal;
6
7 /**
8  * 订单支付方式dto
9  * @USER: fhx
10  * @DATE: 2023/8/24
11  **/
12 @Data
13 public class OrderConsumePayDto {
14
15     /** 实际支付金额 */
16     private BigDecimal amount;
17     /** 支付编码 */
18     private String method;
19     /** 支付方式名称 */
20     private String methodName;
21     /** 支付的商品/项目/组合套餐/组合卡项的标识 */
22     private String commonId;
23     /** 卡项的权益类型标识 */
24     private String cardEquityId;
25     /** 用户卡包标识 */
26     private String userCardId;
27     /** 对应判断标识,如果时积分支付时对应:101=不需扣减积分,100=需要扣减积分 */
28     private Integer isDel = 0;
29
30     public OrderConsumePayDto() {
31     }
32
33     public OrderConsumePayDto(BigDecimal amount, String method) {
34         this.amount = amount;
35         this.method = method;
36     }
37 }