This commit is contained in:
sunderui
2020-05-13 22:14:30 +08:00
parent 4580f61489
commit 211164d4d1
16 changed files with 383 additions and 54 deletions

View File

@@ -1,10 +1,19 @@
package cn.iocoder.mall.product.biz.enums.category;
public class ProductCategoryConstants {
public interface ProductCategoryConstants {
/**
* 状态 - 开启
*/
Integer STATUS_ENABLE = 1;
/**
* 状态 - 关闭
*/
Integer STATUS_DISABLE = 2;
/**
* 父分类编号 - 根节点
*/
public static final Integer PID_ROOT = 0;
Integer PID_ROOT = 0;
}