| | |
| | | package com.hz.his.dto.coupon; |
| | | |
| | | |
| | | |
| | | import com.hz.his.dto.PageDto; |
| | | import lombok.Data; |
| | | import org.dom4j.tree.BaseElement; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | private String operatorName; |
| | | /**操作人类型*/ |
| | | private Integer operatorType; |
| | | /**用户标识*/ |
| | | private String userId; |
| | | /**活动标识*/ |
| | | private String groupBuyId; |
| | | private String id; |
| | | private List<String> idList; |
| | | /**发送记录*/ |
| | | private CouponRecordDto couponReleaseRecordItem; |
| | | /**用户详情*/ |
| | |
| | | /*用户优惠券*/ |
| | | private String couponNumberId; |
| | | |
| | | //-------------------------------------------------------------------- |
| | | //对应phis表CouponReleaseRecord常量 |
| | | /**操作人类型-员工*/ |
| | | public static Integer OPERATOR_TYPE_EMPLOYEES = 0; |
| | | /**操作人类型-管理员*/ |
| | | public static Integer OPERATOR_TYPE_ADMIN = 1; |
| | | /**操作人类型-用户自领*/ |
| | | public static Integer OPERATOR_TYPE_USER = 2; |
| | | /**操作人类型-系统*/ |
| | | public static Integer OPERATOR_TYPE_SYSTEM = 3; |
| | | /**操作人类型-用户订单购买*/ |
| | | public static Integer OPERATOR_TYPE_USER_ORDER = 4; |
| | | //开单结账一起执行校验优惠券接口使用参数 |
| | | /** 优惠券商品JSON数组字符 */ |
| | | private String couponGoodsArr; |
| | | /** 订单应付金额 */ |
| | | private BigDecimal shouldTotal; |
| | | |
| | | /** 是否是营销助手申请 0=否 1=是*/ |
| | | private Integer isMarketApply = 0; |
| | | |
| | | /** 优惠券分类ID*/ |
| | | private String couponTypeId; |
| | | /** 基础分类-优惠券*/ |
| | | private String type; |
| | | } |