liding
3 天以前 7f9e375391e30fd3c367cb5a080a609a6e25e524
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
package com.zbkj.common.constants;
 
/**
 * 分类常量类
 */
public class CategoryConstants {
 
    /** 分类状态-正常 */
    public static final Integer CATEGORY_STATUS_NORMAL = 1;
    /** 分类状态-失效 */
    public static final Integer CATEGORY_STATUS_INVALID = 0;
 
    /** 分类类型-产品分类 */
    public static final Integer CATEGORY_TYPE_PRODUCT = 1;
    /** 分类类型-附件分类 */
    public static final Integer CATEGORY_TYPE_ATTACHMENT = 2;
    /** 分类类型-文章分类 */
    public static final Integer CATEGORY_TYPE_ARTICLE = 3;
    /** 分类类型-设置分类 */
    public static final Integer CATEGORY_TYPE_SETTING = 4;
    /** 分类类型-菜单分类 */
    public static final Integer CATEGORY_TYPE_MENU = 5;
    /** 分类类型-配置分类 */
    public static final Integer CATEGORY_TYPE_CONFIG = 6;
    /** 分类类型-秒杀配置 */
    public static final Integer CATEGORY_TYPE_SECKILL = 7;
 
}