接口【完善】完善接口端商家转账回调通知。

This commit is contained in:
jianweie code
2025-08-02 00:52:22 +08:00
parent 820d1a85cb
commit 8656d4ca36
9 changed files with 356 additions and 59 deletions

View File

@@ -1,10 +1,10 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2025/7/28 23:08:04
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2025/8/1 23:54:59
* Description: 暂无
***********************************************************************/
@@ -25,67 +25,164 @@ namespace CoreCms.Net.Model.Entities
public CoreCmsUserTocashWeChatNotify()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
public System.Int32 id { get; set; }
/// <summary>
/// 通知ID
/// </summary>
[Display(Name = "通知ID")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
public System.String callBackId { get; set; }
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String callBackId { get; set; }
/// <summary>
/// 通知创建时间
/// </summary>
[Display(Name = "通知创建时间")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
public System.String create_time { get; set; }
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String create_time { get; set; }
/// <summary>
/// 通知数据类型
/// </summary>
[Display(Name = "通知数据类型")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
public System.String resource_type { get; set; }
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String resource_type { get; set; }
/// <summary>
/// 通知类型
/// </summary>
[Display(Name = "通知类型")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
public System.String event_type { get; set; }
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String event_type { get; set; }
/// <summary>
/// 回调摘要
/// </summary>
[Display(Name = "回调摘要")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength: 100, ErrorMessage = "{0}不能超过{1}字")]
public System.String summary { get; set; }
[StringLength(maximumLength:100,ErrorMessage = "{0}不能超过{1}字")]
public System.String summary { get; set; }
/// <summary>
/// 通知数据
/// </summary>
[Display(Name = "通知数据")]
[Required(ErrorMessage = "请输入{0}")]
public System.String resource { get; set; }
public System.String resource { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
public System.DateTime createTime { get; set; }
/// <summary>
/// 验签的平台证书序列号或支付公钥ID
/// </summary>
[Display(Name = "验签的平台证书序列号或支付公钥ID")]
[StringLength(maximumLength:100,ErrorMessage = "{0}不能超过{1}字")]
public System.String wechatpaySerial { get; set; }
/// <summary>
/// 验签的签名值
/// </summary>
[Display(Name = "验签的签名值")]
[StringLength(maximumLength:1000,ErrorMessage = "{0}不能超过{1}字")]
public System.String wechatpaySignature { get; set; }
/// <summary>
/// 验签的时间戳
/// </summary>
[Display(Name = "验签的时间戳")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String wechatpayTimestamp { get; set; }
/// <summary>
/// 验签的随机字符串
/// </summary>
[Display(Name = "验签的随机字符串")]
[StringLength(maximumLength:100,ErrorMessage = "{0}不能超过{1}字")]
public System.String wechatpayNonce { get; set; }
/// <summary>
/// 解密数据
/// </summary>
[Display(Name = "解密数据")]
[StringLength(maximumLength:1000,ErrorMessage = "{0}不能超过{1}字")]
public System.String decryptedData { get; set; }
}
}
}