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