1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ishop.merchant;
|
| public class CouponConstants {
|
| /** 优惠券领取类型—手动领取 */
| public static final Integer COUPON_RECEIVE_TYPE_MANUAL = 1;
| /** 优惠券领取类型—商品买赠送券 */
| public static final Integer COUPON_RECEIVE_TYPE_PAY_PRODUCT = 2;
|
| /** 优惠券类型—满减券 */
| public static final Integer COUPON_TYPE_SATISFY = 1;
| /** 优惠券类型—折扣券 */
| public static final Integer COUPON_TYPE_DISCOUNT = 2;
| }
|
|