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.
|
|
|
package xyz.wbsite.dbtool.javafx.po;
|
|
|
|
|
|
|
|
|
|
|
|
public enum Frame {
|
|
|
|
|
|
|
|
无(0),
|
|
|
|
管理框架(1);//内部任务
|
|
|
|
|
|
|
|
Frame(int value) {
|
|
|
|
this.value = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
|
|
|
|
public int value() {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|