Compare commits
1 Commits
eparty
...
feature/20
Author | SHA1 | Date | |
---|---|---|---|
fd63d2e5a9 |
@@ -0,0 +1,23 @@
|
||||
package com.accompany.business.enums.resource;
|
||||
|
||||
public enum ResourcePanelType {
|
||||
RELAXATION_GAME(1, "休闲活动"),
|
||||
GAMEPLAY(2, "娱乐游戏"),
|
||||
;
|
||||
|
||||
private Integer panelType;
|
||||
private String desc;
|
||||
|
||||
ResourcePanelType(Integer panelType, String desc) {
|
||||
this.panelType = panelType;
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public Integer getPanelType() {
|
||||
return panelType;
|
||||
}
|
||||
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
}
|
@@ -142,4 +142,7 @@ public class Resource {
|
||||
*/
|
||||
@ApiModelProperty("地区ID")
|
||||
private Integer partitionId;
|
||||
|
||||
@ApiModelProperty("面板分类:1-休闲游戏,2-娱乐游戏")
|
||||
private Integer panelType;
|
||||
}
|
||||
|
Reference in New Issue
Block a user