AlipayEbppCommunityOwnercardSyncModel.cs 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using System.Text.Json.Serialization;
  2. namespace Essensoft.Paylink.Alipay.Domain
  3. {
  4. /// <summary>
  5. /// AlipayEbppCommunityOwnercardSyncModel Data Structure.
  6. /// </summary>
  7. public class AlipayEbppCommunityOwnercardSyncModel : AlipayObject
  8. {
  9. /// <summary>
  10. /// 支付宝uid
  11. /// </summary>
  12. [JsonPropertyName("alipay_user_id")]
  13. public string AlipayUserId { get; set; }
  14. /// <summary>
  15. /// 产品类型: OWNER_CARD 电子业主卡
  16. /// </summary>
  17. [JsonPropertyName("biz_type")]
  18. public string BizType { get; set; }
  19. /// <summary>
  20. /// 卡过期时间 ,为空则默认2099-12-31 00:00:00
  21. /// </summary>
  22. [JsonPropertyName("card_expired_time")]
  23. public string CardExpiredTime { get; set; }
  24. /// <summary>
  25. /// 房管局卡ID
  26. /// </summary>
  27. [JsonPropertyName("card_id")]
  28. public string CardId { get; set; }
  29. /// <summary>
  30. /// 房管局系统中的小区id
  31. /// </summary>
  32. [JsonPropertyName("community_id")]
  33. public string CommunityId { get; set; }
  34. /// <summary>
  35. /// 房屋信息是否已脱敏,1已脱敏,0未脱敏, 默认0
  36. /// </summary>
  37. [JsonPropertyName("is_room_info_desensitization")]
  38. public long IsRoomInfoDesensitization { get; set; }
  39. /// <summary>
  40. /// 父业主卡ID
  41. /// </summary>
  42. [JsonPropertyName("parent_card_id")]
  43. public string ParentCardId { get; set; }
  44. /// <summary>
  45. /// 房管局标识的唯一房屋编号
  46. /// </summary>
  47. [JsonPropertyName("room_id")]
  48. public string RoomId { get; set; }
  49. /// <summary>
  50. /// 房屋信息
  51. /// </summary>
  52. [JsonPropertyName("room_info")]
  53. public string RoomInfo { get; set; }
  54. /// <summary>
  55. /// 卡状态 ONLINE:在线 INVALID:失效
  56. /// </summary>
  57. [JsonPropertyName("status")]
  58. public string Status { get; set; }
  59. /// <summary>
  60. /// 产品子类型: HANGZHOU_OWNER_CARD 杭州房管局电子业主卡
  61. /// </summary>
  62. [JsonPropertyName("sub_biz_type")]
  63. public string SubBizType { get; set; }
  64. /// <summary>
  65. /// 用户类型: 业主:OWNER 租客:TENANT 家属:FAMILY其他:OTHER
  66. /// </summary>
  67. [JsonPropertyName("user_type")]
  68. public string UserType { get; set; }
  69. }
  70. }