mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-03-24 20:27:21 +08:00
添加项目文件。
This commit is contained in:
38
CoreCms.Net.WeChat.Service/Models/WeChatApiCallBack.cs
Normal file
38
CoreCms.Net.WeChat.Service/Models/WeChatApiCallBack.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
namespace CoreCms.Net.WeChat.Service.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 微信接口回调Json实体
|
||||
/// </summary>
|
||||
public class WeChatApiCallBack
|
||||
{
|
||||
/// <summary>
|
||||
/// 提交数据
|
||||
/// </summary>
|
||||
public object OtherData { get; set; } = null;
|
||||
|
||||
/// <summary>
|
||||
/// 状态码
|
||||
/// </summary>
|
||||
public bool Status { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// 信息说明。
|
||||
/// </summary>
|
||||
public string Msg { get; set; } = "响应成功";
|
||||
|
||||
/// <summary>
|
||||
/// 返回数据
|
||||
/// </summary>
|
||||
public string Data { get; set; } = "success";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user