package com.hz.his.dto.order;
|
|
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;
|
|
/**关联标识类型:0艾芯荟专区*/
|
private Integer relationType;
|
/**关联标识*/
|
private String relationId;
|
/**关联名称*/
|
private Integer relationName;
|
|
}
|