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.

19 lines
245 B

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;
}
}

Powered by TurnKey Linux.