You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
564 B
Java
32 lines
564 B
Java
package com.kiisoo.ic.common;
|
|
|
|
/**
|
|
* @author jinchaofan
|
|
* @date 2020/2/26 17:14
|
|
* @company kiisoo
|
|
* @details 数据常量类
|
|
*/
|
|
public class DataConstants {
|
|
|
|
/**
|
|
* 域状态-正常
|
|
*/
|
|
public static final int DOMAIN_STATUS_NORMAL = 1;
|
|
|
|
/**
|
|
* 域状态-无效
|
|
*/
|
|
public static final int DOMAIN_STATUS_INVALID = 2;
|
|
|
|
/**
|
|
* 域实体类型-店铺
|
|
*/
|
|
public static final int DOMAIN_ENTITY_TYPE_SHOP = 3;
|
|
|
|
/**
|
|
* 域实体类型-角色
|
|
*/
|
|
public static final int DOMAIN_ENTITY_TYPE_ROLE = 4;
|
|
|
|
}
|