AlipayEbppCommunityRelationshipCreateModel.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System.Text.Json.Serialization;
  2. namespace Essensoft.AspNetCore.Payment.Alipay.Domain
  3. {
  4. /// <summary>
  5. /// AlipayEbppCommunityRelationshipCreateModel Data Structure.
  6. /// </summary>
  7. public class AlipayEbppCommunityRelationshipCreateModel : AlipayObject
  8. {
  9. /// <summary>
  10. /// 小区短名, 创建小区时创建
  11. /// </summary>
  12. [JsonPropertyName("community_short_name")]
  13. public string CommunityShortName { get; set; }
  14. /// <summary>
  15. /// 日常服务开始时间,例如24:00
  16. /// </summary>
  17. [JsonPropertyName("daily_end")]
  18. public string DailyEnd { get; set; }
  19. /// <summary>
  20. /// 日常服务开始时间,例如00:00
  21. /// </summary>
  22. [JsonPropertyName("daily_start")]
  23. public string DailyStart { get; set; }
  24. /// <summary>
  25. /// 物业公司的短名,在创建物业公司时生成
  26. /// </summary>
  27. [JsonPropertyName("property_short_name")]
  28. public string PropertyShortName { get; set; }
  29. /// <summary>
  30. /// 服务结束时间,格式:yyyy-MM-dd HH:mm:ss(精度只到日期)
  31. /// </summary>
  32. [JsonPropertyName("service_end")]
  33. public string ServiceEnd { get; set; }
  34. /// <summary>
  35. /// 服务开始时间,格式为yyyy-MM-dd HH:mm:ss(精度只到日期)
  36. /// </summary>
  37. [JsonPropertyName("service_start")]
  38. public string ServiceStart { get; set; }
  39. /// <summary>
  40. /// 服务类型,不传默认为物业缴费THIRD_PARTY_COMMUNITY_JIAOFEI
  41. /// </summary>
  42. [JsonPropertyName("service_type")]
  43. public string ServiceType { get; set; }
  44. }
  45. }