You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
881 B
30 lines
881 B
2 years ago
|
namespace Zncy.CloudCar.WeChat.Service.Models
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 微信接口回调Json实体
|
||
|
/// </summary>
|
||
|
public class WeChatApiCallBack
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 提交数据
|
||
|
/// </summary>
|
||
|
#pragma warning disable CS8625 // 无法将 null 字面量转换为非 null 的引用类型。
|
||
|
public object OtherData { get; set; } = null;
|
||
|
#pragma warning restore CS8625 // 无法将 null 字面量转换为非 null 的引用类型。
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态码
|
||
|
/// </summary>
|
||
|
public bool Status { get; set; } = true;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 信息说明。
|
||
|
/// </summary>
|
||
|
public string Msg { get; set; } = "响应成功";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 返回数据
|
||
|
/// </summary>
|
||
|
public string Data { get; set; } = "success";
|
||
|
}
|
||
|
}
|