From e57e32fc43da31917912eebb4e47d4e50df1a9e9 Mon Sep 17 00:00:00 2001
From: shiyj1101 <1098226878@qq.com>
Date: 星期四, 05 八月 2021 22:56:15 +0800
Subject: [PATCH] 完善格式化功能
---
java110-bean/src/main/java/com/java110/dto/wechatMenu/WechatMenuDto.java | 93 +++++++++++++++++++++++++++++++++++-----------
1 files changed, 71 insertions(+), 22 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/wechatMenu/WechatMenuDto.java b/java110-bean/src/main/java/com/java110/dto/wechatMenu/WechatMenuDto.java
old mode 100644
new mode 100755
index 433f005..bb11891
--- a/java110-bean/src/main/java/com/java110/dto/wechatMenu/WechatMenuDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/wechatMenu/WechatMenuDto.java
@@ -1,6 +1,7 @@
package com.java110.dto.wechatMenu;
import com.java110.dto.PageDto;
+
import java.io.Serializable;
import java.util.Date;
@@ -14,14 +15,23 @@
**/
public class WechatMenuDto extends PageDto implements Serializable {
+ public static final String MENU_LEVEL_ONE = "101"; //涓�绾ц彍鍗�
+ public static final String MENU_LEVEL_TWO = "202"; //浜岀骇鑿滃崟
+
+ public static final String MENU_TYPE_VIEW = "view"; // 杩炴帴
+
+ public static final String MENU_TYPE_MINIPROGRAM = "miniprogram";// 灏忕▼搴�
private String pagepath;
-private String appId;
-private String menuLevel;
-private String menuName;
-private String menuType;
-private String menuValue;
-private String communityId;
-private String wechatMenuId;
+ private String appId;
+ private String menuLevel;
+ private String menuName;
+ private String menuType;
+ private String menuValue;
+ private String communityId;
+ private String wechatMenuId;
+ private String parentMenuId;
+ private String seq;
+ private String menuTypeName;
private Date createTime;
@@ -32,49 +42,64 @@
public String getPagepath() {
return pagepath;
}
-public void setPagepath(String pagepath) {
+
+ public void setPagepath(String pagepath) {
this.pagepath = pagepath;
}
-public String getAppId() {
+
+ public String getAppId() {
return appId;
}
-public void setAppId(String appId) {
+
+ public void setAppId(String appId) {
this.appId = appId;
}
-public String getMenuLevel() {
+
+ public String getMenuLevel() {
return menuLevel;
}
-public void setMenuLevel(String menuLevel) {
+
+ public void setMenuLevel(String menuLevel) {
this.menuLevel = menuLevel;
}
-public String getMenuName() {
+
+ public String getMenuName() {
return menuName;
}
-public void setMenuName(String menuName) {
+
+ public void setMenuName(String menuName) {
this.menuName = menuName;
}
-public String getMenuType() {
+
+ public String getMenuType() {
return menuType;
}
-public void setMenuType(String menuType) {
+
+ public void setMenuType(String menuType) {
this.menuType = menuType;
}
-public String getMenuValue() {
+
+ public String getMenuValue() {
return menuValue;
}
-public void setMenuValue(String menuValue) {
+
+ public void setMenuValue(String menuValue) {
this.menuValue = menuValue;
}
-public String getCommunityId() {
+
+ public String getCommunityId() {
return communityId;
}
-public void setCommunityId(String communityId) {
+
+ public void setCommunityId(String communityId) {
this.communityId = communityId;
}
-public String getWechatMenuId() {
+
+ public String getWechatMenuId() {
return wechatMenuId;
}
-public void setWechatMenuId(String wechatMenuId) {
+
+ public void setWechatMenuId(String wechatMenuId) {
this.wechatMenuId = wechatMenuId;
}
@@ -94,4 +119,28 @@
public void setStatusCd(String statusCd) {
this.statusCd = statusCd;
}
+
+ public String getParentMenuId() {
+ return parentMenuId;
+ }
+
+ public void setParentMenuId(String parentMenuId) {
+ this.parentMenuId = parentMenuId;
+ }
+
+ public String getSeq() {
+ return seq;
+ }
+
+ public void setSeq(String seq) {
+ this.seq = seq;
+ }
+
+ public String getMenuTypeName() {
+ return menuTypeName;
+ }
+
+ public void setMenuTypeName(String menuTypeName) {
+ this.menuTypeName = menuTypeName;
+ }
}
--
Gitblit v1.8.0