com.intters.enums.CodeEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of - Show documentation
Show all versions of - Show documentation
Rapid development tool class
The newest version!
package com.intters.enums;
/**
* 枚举获取值
*
* @author Ruison
* @date 2018/7/14.
*/
public interface CodeEnum {
/**
* 获取码
*
* @return 状态码
*/
Integer getCode();
/**
* 获取信息
*
* @return 信息
*/
String getMsg();
}