You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
350 B

package xyz.wbsite.dbtool.javafx.po;
public enum Frame {
(0),
(1),//内部任务
(2),//对外提供Http服务
(3);//对外提供Http服务和Web
Frame(int value) {
this.value = value;
}
private int value;
public int value() {
return value;
}
}

Powered by TurnKey Linux.