/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
namespace CoreCms.Net.Model.ViewModels.UI
{
///
/// 微信接口回调Json实体
///
public class WebApiCallBack
{
///
/// 请求接口返回说明
///
public string methodDescription { get; set; }
///
/// 提交数据
///
public object otherData { get; set; } = null;
///
/// 状态码
///
public bool status { get; set; } = false;
///
/// 信息说明。
///
public string msg { get; set; } = "接口响应成功";
///
/// 返回数据
///
public object data { get; set; }
///
/// 返回编码
///
public int code { get; set; } = 0;
}
}