From 611af5472b33cbe81a1433ab29e26502a9aac795 Mon Sep 17 00:00:00 2001 From: sunpengfei <i@angelzzz.com> Date: 星期一, 01 九月 2025 15:46:55 +0800 Subject: [PATCH] feat:开发 --- FlexJobApi.Core/Models/UserServer/EnterpriseWallets/Commands/AlipayFundExpandindirectCreateCommand.cs | 114 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 114 insertions(+), 0 deletions(-) diff --git a/FlexJobApi.Core/Models/UserServer/EnterpriseWallets/Commands/AlipayFundExpandindirectCreateCommand.cs b/FlexJobApi.Core/Models/UserServer/EnterpriseWallets/Commands/AlipayFundExpandindirectCreateCommand.cs new file mode 100644 index 0000000..03bcfc2 --- /dev/null +++ b/FlexJobApi.Core/Models/UserServer/EnterpriseWallets/Commands/AlipayFundExpandindirectCreateCommand.cs @@ -0,0 +1,114 @@ +锘縰sing MediatR; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Xml.Serialization; + +namespace FlexJobApi.Core +{ + /// <summary> + /// 鏀粯瀹濊祫閲戜簩绾у晢鎴稫YB浠h繘浠� + /// </summary> + [Resource([EnumResourceController.UserServerEnterpriseWallet])] + public class AlipayFundExpandindirectCreateCommand : SaveDataCommand + { + /// <summary> + /// 浜у搧鐮� + /// </summary> + public string ProductCode { get; set; } + /// <summary> + /// 鍦烘櫙鐮� + /// </summary> + public string BizScene { get; set; } + /// <summary> + /// 澶栭儴鍗曞彿 + /// </summary> + public string OutBizNo { get; set; } + /// <summary> + /// 浜岀骇鍟嗘埛淇℃伅-鏍囪瘑 + /// </summary> + public string Identity { get; set; } + /// <summary> + /// 浜岀骇鍟嗘埛淇℃伅-鏍囪瘑绫诲瀷 + /// </summary> + public string IdentityType { get; set; } + /// <summary> + /// 浜岀骇鍟嗘埛淇℃伅-濮撳悕 + /// </summary> + public string Name { get; set; } + /// <summary> + /// 涓氬姟绫诲瀷 + /// </summary> + public string BizType { get; set; } + /// <summary> + /// 鍘熻繘浠跺崟id + /// </summary> + public string OriginalOrderId { get; set; } + /// <summary> + /// 璧勯噾璁拌处鏈殑涓氬姟鍦烘櫙 + /// </summary> + public string SceneCode { get; set; } + /// <summary> + /// 杞处鍦烘櫙璇存槑 + /// </summary> + public string SceneDirections { get; set; } + /// <summary> + /// 杞处鍦烘櫙鎴浘 + /// </summary> + public string SceneImageOssUrl { get; set; } + /// <summary> + /// 鍟嗘埛琛屼笟璧勮川鍥剧墖 + /// </summary> + public string SceneQualificationImageOssUrl { get; set; } + /// <summary> + /// 鍟嗘埛琛屼笟璧勮川鍗忚鏂囨湰 + /// </summary> + public string SceneQualificationText { get; set; } + /// <summary> + /// 鍟嗘埛绔欑偣淇℃伅 + /// </summary> + public AlipayFundExpandindirectCreateCommandSites SitesInfo { get; set; } + } + + public class AlipayFundExpandindirectCreateCommandSites + { + public string WEBSITE { get; set; } + public string APP { get; set; } + public string GONGZH { get; set; } + public string QITA { get; set; } + public string XCHENGXU_ZHI { get; set; } + } + + /// <summary> + /// 鏀粯瀹濊祫閲戜簩绾у晢鎴稫YB浠h繘浠� + /// </summary> + public class AlipayFundExpandindirectCreateCommandResult + { + /// <summary> + /// 杩涗欢鍗曞垱寤烘椂闂� + /// </summary> + public string CreateTime { get; set; } + + /// <summary> + /// 杩涗欢鍗昳d + /// </summary> + public string OrderId { get; set; } + + /// <summary> + /// 澶栭儴鍗曞彿 + /// </summary> + public string OutBizNo { get; set; } + + /// <summary> + /// 杩涗欢鍗曠姸鎬� + /// </summary> + public string Status { get; set; } + + /// <summary> + /// 杩涗欢鍗曚换鍔″畬缁撴椂闂� + /// </summary> + public string TaskFinishTime { get; set; } + } +} -- Gitblit v1.9.1