package com.hz.phis.dt.order;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 订单其它信息转化实体
|
*/
|
@Data
|
public class OrderInfoDt {
|
/**订单id*/
|
private String orderId;
|
/**支付流水(第三方支付流水号)*/
|
private String payNo;
|
/**购买数量*/
|
private Integer buyNum;
|
/**活动规则标识*/
|
private String activityId;
|
/**活动规则名称*/
|
private String activityName;
|
/**是否整单折扣*/
|
private Integer isWholeDiscount;
|
/**是否员工折扣*/
|
private Integer isEmployeeDiscount;
|
/**整单折扣/员工折扣(单位:百分比,默认:100)*/
|
private BigDecimal discount;
|
/**划扣现金总金额(作用:用来计算划扣项目的执行金额,支付方式是现金支付的总金额)*/
|
private BigDecimal snapPayTotal;
|
/**领建订单号*/
|
private String hisOrderNo;
|
/**用户推荐人/用户邀请人标识*/
|
private String inviteeId;
|
/**用户推荐人/用户邀请人名称*/
|
private String inviteeName;
|
/**用户渠道标识,顶级*/
|
private String channelId;
|
/**用户渠道名称,顶级*/
|
private String channelName;
|
/**用户二级渠道标识,末级*/
|
private String channel2Id;
|
/**用户二级渠道名称,末级*/
|
private String channelName2;
|
/**用户渠道来源类型(UserChannelType)*/
|
private String channelCategory;
|
/**是否是老带新(0:否,1:是)*/
|
private Integer isOldBringNew;
|
/**是否客户确认(0:否,1:是)*/
|
private Integer isCustomerConfirm;
|
}
|