Blame view

java110-bean/src/main/java/com/java110/po/store/SmallWechatPo.java 2.32 KB
88e030b7   王彪总   init project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  package com.java110.po.store;
  
  import java.io.Serializable;
  
  /**
   * @ClassName SmallWechatPo
   * @Description TODO
   * @Author wuxw
   * @Date 2020/5/30 12:33
   * @Version 1.0
   * add by wuxw 2020/5/30
   **/
  public class SmallWechatPo implements Serializable {
  
      private String weChatId;
      private String storeId;
      private String name;
      private String appId;
      private String appSecret;
      private String payPassword;
      private String remarks;
      private String objId;
      private String objType;
      private String mchId;
      private String mchName;
  
      private String weChatType;
  
      public String getWeChatId() {
          return weChatId;
      }
  
      public void setWeChatId(String weChatId) {
          this.weChatId = weChatId;
      }
  
      public String getStoreId() {
          return storeId;
      }
  
      public void setStoreId(String storeId) {
          this.storeId = storeId;
      }
  
      public String getName() {
          return name;
      }
  
      public void setName(String name) {
          this.name = name;
      }
  
      public String getAppId() {
          return appId;
      }
  
      public void setAppId(String appId) {
          this.appId = appId;
      }
  
      public String getAppSecret() {
          return appSecret;
      }
  
      public void setAppSecret(String appSecret) {
          this.appSecret = appSecret;
      }
  
      public String getPayPassword() {
          return payPassword;
      }
  
      public void setPayPassword(String payPassword) {
          this.payPassword = payPassword;
      }
  
      public String getRemarks() {
          return remarks;
      }
  
      public void setRemarks(String remarks) {
          this.remarks = remarks;
      }
  
      public String getObjId() {
          return objId;
      }
  
      public void setObjId(String objId) {
          this.objId = objId;
      }
  
      public String getObjType() {
          return objType;
      }
  
      public void setObjType(String objType) {
          this.objType = objType;
      }
  
      public String getMchId() {
          return mchId;
      }
  
      public void setMchId(String mchId) {
          this.mchId = mchId;
      }
  
      public String getWeChatType() {
          return weChatType;
      }
  
      public void setWeChatType(String weChatType) {
          this.weChatType = weChatType;
      }
  
      public String getMchName() {
          return mchName;
      }
  
      public void setMchName(String mchName) {
          this.mchName = mchName;
      }
  }