企业微信智慧校园的门禁控制服务
wzp
2024-07-15 9bce3a6016953e852769ff6d84ca05b6d1544d75
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
 
/**
 * 调用掌骏企业微信后端系统响应报文封装对象
 * add: yangzh by 20210407
 * */
namespace Rdream.Core.Model
{
    public class ResponseMsgMo
    {
        public string errCode { get; set; }    //成功时为0000
        public string errMsg { get; set; }  //成功时为OK
        public string data { get; set; }    //成功时,解析返回数据
        //public bool success { get; set; } //true, false
 
    }
}