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

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