AlipayFinancialnetPromotionApplyCreateModel.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using System.Text.Json.Serialization;
  2. namespace Essensoft.Paylink.Alipay.Domain
  3. {
  4. /// <summary>
  5. /// AlipayFinancialnetPromotionApplyCreateModel Data Structure.
  6. /// </summary>
  7. public class AlipayFinancialnetPromotionApplyCreateModel : AlipayObject
  8. {
  9. /// <summary>
  10. /// 额度申请需要传入: 1. 进件模版信息 2. 业务订单扩展字段extParam,json格式, firstpayamt,lastpayamt,monthpayamt下单要求必传,值大于等于0
  11. /// </summary>
  12. [JsonPropertyName("apply_template_info")]
  13. public string ApplyTemplateInfo { get; set; }
  14. /// <summary>
  15. /// 申请人支付宝UID
  16. /// </summary>
  17. [JsonPropertyName("apply_user_id")]
  18. public string ApplyUserId { get; set; }
  19. /// <summary>
  20. /// 车商合作伙伴id,蚂蚁机构信息中心分配
  21. /// </summary>
  22. [JsonPropertyName("asset_inst_id")]
  23. public string AssetInstId { get; set; }
  24. /// <summary>
  25. /// 门店id,蚂蚁机构信息中心入驻分配
  26. /// </summary>
  27. [JsonPropertyName("asset_resource_id")]
  28. public string AssetResourceId { get; set; }
  29. /// <summary>
  30. /// 合作平台系统ID(蚂蚁分配)
  31. /// </summary>
  32. [JsonPropertyName("entry_app_id")]
  33. public string EntryAppId { get; set; }
  34. /// <summary>
  35. /// 网商分配资方路由码
  36. /// </summary>
  37. [JsonPropertyName("finance_inst_iprole_id")]
  38. public string FinanceInstIproleId { get; set; }
  39. /// <summary>
  40. /// 资方合作伙伴id,蚂蚁机构信息中心分配
  41. /// </summary>
  42. [JsonPropertyName("fund_inst_id")]
  43. public string FundInstId { get; set; }
  44. /// <summary>
  45. /// 机构编码,机构接入网商场景金融平台时分配,固定值
  46. /// </summary>
  47. [JsonPropertyName("org_code")]
  48. public string OrgCode { get; set; }
  49. /// <summary>
  50. /// 外部业务号
  51. /// </summary>
  52. [JsonPropertyName("out_biz_no")]
  53. public string OutBizNo { get; set; }
  54. /// <summary>
  55. /// 机构产品码,机构接入网商场景金融平台时分配,固定值
  56. /// </summary>
  57. [JsonPropertyName("product_code")]
  58. public string ProductCode { get; set; }
  59. /// <summary>
  60. /// 推广人支付宝UID
  61. /// </summary>
  62. [JsonPropertyName("promote_user_id")]
  63. public string PromoteUserId { get; set; }
  64. /// <summary>
  65. /// 签约参数
  66. /// </summary>
  67. [JsonPropertyName("sign_info")]
  68. public SignInfo SignInfo { get; set; }
  69. }
  70. }