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