Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/MybankFinanceYulibaoCapitalRansomModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

42 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// MybankFinanceYulibaoCapitalRansomModel Data Structure.
/// </summary>
[Serializable]
public class MybankFinanceYulibaoCapitalRansomModel : AopObject
{
/// <summary>
/// 赎回的金额以分为单位必须为正整数。如amount=123456表示赎回1234.56元的余利宝份额。
/// </summary>
[JsonProperty("amount")]
public long Amount { get; set; }
/// <summary>
/// 币种CNY表示人民币目前只支持人民币
/// </summary>
[JsonProperty("currency")]
public string Currency { get; set; }
/// <summary>
/// 基金代码必填。目前默认填001529代表余利宝。
/// </summary>
[JsonProperty("fund_code")]
public string FundCode { get; set; }
/// <summary>
/// 余利宝赎回流水号用于幂等控制。流水号必须长度在30到40位之间且仅能由数字、字母、字符“-”和字符“_”组成。建议使用UUID如“c39c24f1-73e5-497d-9b1f-0f585ae192c1”或者使用自定义的数字流水号如“201608150000000000000000000000000001”。
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 赎回模式REALTIME表示实时NOTREALTIME表示非实时赎回T+1到账仅支持这两种模式。实时赎回日累计金额小于等于500万大于500万则要使用非实时赎回选择非实时赎回且日累计金额小于等于500万则会自动转为实时。
/// </summary>
[JsonProperty("ransom_mode")]
public string RansomMode { get; set; }
}
}