赞
踩
@AllArgsConstructor @NoArgsConstructor public enum test { AAA("400", "400错误"), BBB("401", "401错误"), CCC("402", "402错误"), DDD("403", "403错误"); String code; String msg; public String getCode() { return code; } public String getMsg() { return msg; } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。