添加公海私海分页
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.cool.store.enums;
|
||||
|
||||
|
||||
public enum PageTurnTypeEnum {
|
||||
|
||||
PREVIOUS("previous"),
|
||||
NEXT("next");
|
||||
|
||||
public String getText() {
|
||||
return text;
|
||||
}
|
||||
|
||||
public void setText(String text) {
|
||||
this.text = text;
|
||||
}
|
||||
|
||||
private String text;
|
||||
|
||||
PageTurnTypeEnum(String text) {
|
||||
this.text = text;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user