wlzboy
5 天以前 06a17c236d4cb9b8da75fce43af938cb7ea510bf
ruoyi-common/src/main/java/com/ruoyi/common/config/WechatConfig.java
@@ -19,6 +19,12 @@
    /** 微信小程序AppSecret */
    private String appSecret;
    /** 任务通知模板ID */
    private String taskNotifyTemplateId;
    /** 任务详情页面路径 */
    private String taskDetailPage;
    public String getAppId() {
        return appId;
    }
@@ -34,4 +40,20 @@
    public void setAppSecret(String appSecret) {
        this.appSecret = appSecret;
    }
    public String getTaskNotifyTemplateId() {
        return taskNotifyTemplateId;
    }
    public void setTaskNotifyTemplateId(String taskNotifyTemplateId) {
        this.taskNotifyTemplateId = taskNotifyTemplateId;
    }
    public String getTaskDetailPage() {
        return taskDetailPage;
    }
    public void setTaskDetailPage(String taskDetailPage) {
        this.taskDetailPage = taskDetailPage;
    }
}