dashboard
repositories
filestore
activity
search
login
admin
/
kidgrow-microservices-platform
forked from
kidgrow-microservices-platform
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
添加短信服务的功能,添加h端的一些接口
zhaoxiaohao
2020-05-22
f21c78ae0e3c410c6ba5be77277b5b491aca3af1
[~admin/kidgrow-microservices-platform.git]
/
kidgrow-commons
/
kidgrow-common-spring-boot-starter
/
src
/
main
/
java
/
com
/
kidgrow
/
common
/
model
/
CodeEnum.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.kidgrow.common.model;
public enum CodeEnum {
SUCCESS(0),
ERROR(1);
private Integer code;
CodeEnum(Integer code){
this.code = code;
}
public Integer getCode() {
return code;
}
}