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
|
|
}
|
}
|