using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 支付宝资金二级商户KYB代进件状态通知
///
[Resource([EnumResourceController.UserServerEnterpriseWallet], AllowAnonymous = true, IsFromForm = true)]
public class AlipayFundExpandindirectCreateNotifyCommand : IRequest
{
///
/// 通知ID
///
public string notify_id { get; set; }
///
/// 消息发送时的服务端时间
///
public string utc_timestamp { get; set; }
///
/// 消息接口名称
///
public string msg_method { get; set; }
///
/// 消息接受方的应用id
///
public string app_id { get; set; }
///
/// 版本号(1.1版本为标准消息)
///
public string version { get; set; }
///
/// 消息报文
///
public string biz_content { get; set; }
///
/// 签名
///
public string sign { get; set; }
///
/// 签名类型
///
public string sign_type { get; set; }
///
/// 编码集,该字符集为验签和解密所需要的字符集
///
public string charset { get; set; }
}
}