AlipayEcoContractProcessDeleteModel.cs 796 B

1234567891011121314151617181920212223242526272829
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. namespace Essensoft.AspNetCore.Payment.Alipay.Domain
  4. {
  5. /// <summary>
  6. /// AlipayEcoContractProcessDeleteModel Data Structure.
  7. /// </summary>
  8. public class AlipayEcoContractProcessDeleteModel : AlipayObject
  9. {
  10. /// <summary>
  11. /// MCCCode
  12. /// </summary>
  13. [JsonPropertyName("batch_no")]
  14. public string BatchNo { get; set; }
  15. /// <summary>
  16. /// 流程Id
  17. /// </summary>
  18. [JsonPropertyName("flow_ids")]
  19. public List<string> FlowIds { get; set; }
  20. /// <summary>
  21. /// 签署平台的代码
  22. /// </summary>
  23. [JsonPropertyName("sign_platform_code")]
  24. public string SignPlatformCode { get; set; }
  25. }
  26. }