16 lines
315 B
Java
16 lines
315 B
Java
package com.cnbm.dispatch.enums;
|
|
|
|
/**
|
|
* @Author: 蔡翔
|
|
* @Date: 2019/10/14 10:07
|
|
* @Version 1.0
|
|
*/
|
|
public interface CodeEnum {
|
|
Integer getNamespace();
|
|
String getIdentity();
|
|
String getType();
|
|
String getName();
|
|
String getDesc();
|
|
void set(String name,Integer nameSpace,String identity);
|
|
}
|