fwq
2024-05-01 623afb6fbb8ce6adebf237e7b670d9f4f339184d
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
package com.hz.his.constant;
 
public class GoodsTypeConstants {
 
    /**商品类型-项目*/
    public static final String TYPE_PROJECT = "project";
    /**商品类型-商品/药品*/
    public static final String TYPE_RETAIL = "retail";
    /**商品类型-套餐(暂时没有用,以前说卡项就是套餐)*/
    public static final String TYPE_MEAL = "meal";
    /**商品类型-卡项*/
    public static final String TYPE_CARD = "card";
    /**商品类型-促销*/
    public static final String TYPE_PROMOTION = "promotion";
    /**商品类型-充值*/
    public static final String TYPE_RECHARGE = "recharge";
    /**转赠类型-增值金*/
    public static final String TYPE_TURN_INCREMENT = "turn_increment";
    /**转赠类型-储值金*/
    public static final String TYPE_TURN_STORED = "turn_stored";
    /**转赠类型-积分*/
    public static final String TYPE_TURN_INTEGRAL = "turn_integral";
    /**卡项-卡包*/
    public static final String CARD_BAG = "card_bag";
}