zhangxu
2023-01-07 6be686a489be1fef3df7bfb7cdcdec597dd2d659
提交 | 用户 | age
50cacd 1 package com.hz.his.dto.order;
W 2
49aa57 3 import com.gitee.sunchenbin.mybatis.actable.annotation.Column;
F 4 import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant;
50cacd 5 import lombok.Data;
W 6
7 import java.math.BigDecimal;
8
9 /**
10  * 订单其他信息
11  */
12 @Data
13 public class OrderInfoDto {
14
15     /** 订单id(OrdersTotal) */
16     private String orderId;
17
18     /** 支付流水(第三方支付流水号) */
19     private String payNo;
20
21     /** 购买数量 */
22     private Integer buyNum;
23
24     /** 活动规则标识 */
25     private String activityId;
26     /** 活动规则名称 */
27     private String activityName;
88e548 28     /** 是否整单折扣 必填,默认0*/
50cacd 29     private Integer isWholeDiscount;
88e548 30     /** 是否员工折扣 必填,默认0*/
50cacd 31     private Integer isEmployeeDiscount;
88e548 32     /** 整单折扣/员工折扣(单位:百分比,默认:100) 必填,默认100*/
50cacd 33     private BigDecimal discount;
W 34     /** 划扣现金总金额(作用:用来计算划扣项目的执行金额,支付方式是现金支付的总金额) */
35     private BigDecimal snapPayTotal=BigDecimal.ZERO;
97204c 36
F 37     /**是否确认订单*/
38     private Integer isCustomerConfirm;
49aa57 39     /**处方订单号*/
F 40     private String prescriptionNo;
41     /**处方订单id*/
42     private String prescriptionId;
43
50cacd 44 }