forked from kidgrow-microservices-platform

luliqiang
2020-08-10 0a8b731d9cf46c78c0c4c66fa9954eeb262e4017
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;
    }
}