zhao_js
2023-11-01 73daf9245c2194c65104ffcd7990b741e5a4de32
api/Operater.Common/SmsGzhHelperHandle.cs
@@ -60,6 +60,7 @@
            dic.Add("touser", request.touser);
            dic.Add("template_id", request.template_id);
            dic.Add("data", request.data);
            dic.Add("url", request.url);
            string resStr = new WebUtil().DoPostWithJson(url, dic, null);
            LogUtil.Info($"[发模板消息]请求:{JSONUtil.ObjectToJson(dic)},返回:{resStr}", "发送模板消息日志");
            SendTemplateMsgResponse res = JSONUtil.JsonToObject<SendTemplateMsgResponse>(resStr);
@@ -74,6 +75,8 @@
        public object data { get; set; }
        public string url { get; set; }
    }
    public class SendTemplateMsgResponse : WxKfBaseResponse