#
zhou zhou
昨天 2aa107576ba3e2e49723d3bb49644a6ebd9d779a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.vincent.rsf.server.manager.enums;
 
public enum WaveRuleType {
 
    Efficiency_First("1","效率优先"),
    First_In_First_Out("2","先进先出")
 
    ;
 
    public Integer type;
    public String desc;
 
    WaveRuleType(String type, String desc) {
        this.type = Integer.parseInt(type);
        this.desc = desc;
    }
}