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;
|
|
}
|