forked from luyan/epmet-cloud-lingshan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
455 B
34 lines
455 B
package com.epmet.constant;
|
|
|
|
/**
|
|
* @author zhaoqifeng
|
|
* @dscription
|
|
* @date 2020/4/24 15:42
|
|
*/
|
|
public interface CustomerStaffConstant {
|
|
|
|
/**
|
|
* 专职
|
|
*/
|
|
String FULL_TIME ="fulltime";
|
|
/**
|
|
* 兼职
|
|
*/
|
|
String PART_TIME ="parttime";
|
|
/**
|
|
* 已激活
|
|
*/
|
|
String INACTIVE ="inactive";
|
|
/**
|
|
* 未激活
|
|
*/
|
|
String ACTIVE ="active";
|
|
/**
|
|
* 已禁用
|
|
*/
|
|
String DISABLED ="disabled";
|
|
/**
|
|
* 未禁用
|
|
*/
|
|
String ENABLE ="enable";
|
|
}
|
|
|