wuxw
2019-08-10 c8d3216d510e0330a7b010dbdbfb58debcf4b328
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.java110.common.constant;
 
/**
 *
 * 产品类型 常量定义
 *
 * Created by wuxw on 2017/5/20.
 */
public class ProductTypeConstant {
 
    /*
 
        食品
     */
    private final static String PRODUCT_TYPE_FOOD = "1";
 
 
    /**
     * 酒类饮料
     */
    private final static String PRODUCT_TYPE_INEBRIANT = "2";
 
 
 
}