skyouc
4 天以前 d2e0994f67495fd436a2e8ad02cb7e4a7e53fe0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.vincent.rsf.server.system.enums;
 
public enum StatusType {
 
    ENABLE(1),
    DISABLE(0),
    ;
 
    public int val;
 
    StatusType(int val) {
        this.val = val;
    }
}