fwq
2024-05-01 623afb6fbb8ce6adebf237e7b670d9f4f339184d
提交 | 用户 | age
0937f1 1 package com.hz.his.dto.order;
W 2
3 import lombok.Data;
4
5 /**
6  * @author wzh
7  * 订单结账扩展
8  */
9 @Data
10 public class OrderPayDto {
11
12     /** 是否是按项目付款,0:否,1:是 */
13     private Integer type;
14     /** 订单id */
15     private String orderId;
16     /** 应付的总金额 */
17     private String total;
18     /** 用户真正支付的金额集合 */
19     private String amount;
20     /** 操作人员信息json */
21     private String operator;
22     /** 操作人员id */
23     private String operatorId;
24     /** 优惠券id */
25     private String userCouponId;
26     /** 用户资金信息 */
27     private String userMoney;
28
29 }