admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/dto/wx/WXAccountInfoDTO.java
@@ -1,53 +1,53 @@
package com.yeshi.fanli.dto.wx;
public class WXAccountInfoDTO {
   // 公众号
   private String gzAppId;
   private String gzAppSecret;
   // APP
   private String appId;
   private String appSecret;
   public WXAccountInfoDTO(String gzAppId, String gzAppSecret, String appId, String appSecret) {
      this.gzAppId = gzAppId;
      this.gzAppSecret = gzAppSecret;
      this.appId = appId;
      this.appSecret = appSecret;
   }
   public WXAccountInfoDTO() {
   }
   public String getGzAppId() {
      return gzAppId;
   }
   public void setGzAppId(String gzAppId) {
      this.gzAppId = gzAppId;
   }
   public String getGzAppSecret() {
      return gzAppSecret;
   }
   public void setGzAppSecret(String gzAppSecret) {
      this.gzAppSecret = gzAppSecret;
   }
   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;
   }
}
package com.yeshi.fanli.dto.wx;
public class WXAccountInfoDTO {
   // 公众号
   private String gzAppId;
   private String gzAppSecret;
   // APP
   private String appId;
   private String appSecret;
   public WXAccountInfoDTO(String gzAppId, String gzAppSecret, String appId, String appSecret) {
      this.gzAppId = gzAppId;
      this.gzAppSecret = gzAppSecret;
      this.appId = appId;
      this.appSecret = appSecret;
   }
   public WXAccountInfoDTO() {
   }
   public String getGzAppId() {
      return gzAppId;
   }
   public void setGzAppId(String gzAppId) {
      this.gzAppId = gzAppId;
   }
   public String getGzAppSecret() {
      return gzAppSecret;
   }
   public void setGzAppSecret(String gzAppSecret) {
      this.gzAppSecret = gzAppSecret;
   }
   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;
   }
}