fhx
2024-05-13 9e43ec0bbcd868e45ea6239dd865077f135fc51f
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
45
46
47
48
49
package com.hz.his.constant;
 
import com.hx.util.StringUtils;
 
/**
 * 活动优惠类型
 * @USER: fhx
 * @DATE: 2024/5/8
 **/
public class ActivityPreferentialConstants {
 
    /** 优惠类型 - 降价  */
    public static final String TYPE_PRICE_REDUCTION = "price_reduction";
    /** 优惠类型 - 赠送优惠券 */
    public static final String TYPE_GIFT_COUPON = "gift_coupon";
    /** 优惠类型 - 赠送积分 */
    public static final String TYPE_GIFT_INTEGRAL = "gift_integral";
    /** 优惠类型 - 折扣 */
    public static final String TYPE_DISCOUNT = "discount";
    /** 优惠类型 - 赠送项目 */
    public static final String TYPE_GIFT_PROJECT = "gift_project";
 
 
    /** 转换优化类型中文 */
    public static String changeTypeCn(String type){
        switch (type){
            case TYPE_PRICE_REDUCTION: return "降价";
            case TYPE_GIFT_COUPON: return "赠送优惠券";
            case TYPE_GIFT_INTEGRAL: return "赠送积分";
            case TYPE_DISCOUNT: return "打折";
            case TYPE_GIFT_PROJECT: return "赠送项目";
            default: return "未知";
        }
    }
 
    /** 检查判断是否赠送类型 */
    public static boolean checkGiftType(String type){
        if(StringUtils.isEmpty(type)){
            return false;
        }
 
        if(TYPE_GIFT_COUPON.equals(type)
                || TYPE_GIFT_INTEGRAL.equals(type)
                || TYPE_GIFT_PROJECT.equals(type)){
            return true;
        }
        return false;
    }
}