Browse Source

上传文件

陈士柏 2 years ago
parent
commit
8336e5b288
1 changed files with 53 additions and 0 deletions
  1. 53 0
      mhotel/src/com/happy/Model/Message/Mp_template_msg.java

+ 53 - 0
mhotel/src/com/happy/Model/Message/Mp_template_msg.java

@@ -0,0 +1,53 @@
+package com.happy.Model.Message;
+
+
+import com.alibaba.fastjson.JSONObject;
+
+public class Mp_template_msg {
+
+    public String appid;
+    public String template_id;
+    public String url;
+    public JSONObject miniprogram;
+    public JSONObject data;
+
+    public String getAppid() {
+        return appid;
+    }
+
+    public void setAppid(String appid) {
+        this.appid = appid;
+    }
+
+    public String getTemplate_id() {
+        return template_id;
+    }
+
+    public void setTemplate_id(String template_id) {
+        this.template_id = template_id;
+    }
+
+    public String getUrl() {
+        return url;
+    }
+
+    public void setUrl(String url) {
+        this.url = url;
+    }
+
+    public JSONObject getMiniprogram() {
+        return miniprogram;
+    }
+
+    public void setMiniprogram(JSONObject miniprogram) {
+        this.miniprogram = miniprogram;
+    }
+
+    public JSONObject getData() {
+        return data;
+    }
+
+    public void setData(JSONObject data) {
+        this.data = data;
+    }
+}