using System.Text.Json.Serialization; namespace Essensoft.Paylink.Alipay.Domain { /// /// AlipayEbppCommunityOwnercardSyncModel Data Structure. /// public class AlipayEbppCommunityOwnercardSyncModel : AlipayObject { /// /// 支付宝uid /// [JsonPropertyName("alipay_user_id")] public string AlipayUserId { get; set; } /// /// 产品类型: OWNER_CARD 电子业主卡 /// [JsonPropertyName("biz_type")] public string BizType { get; set; } /// /// 卡过期时间 ,为空则默认2099-12-31 00:00:00 /// [JsonPropertyName("card_expired_time")] public string CardExpiredTime { get; set; } /// /// 房管局卡ID /// [JsonPropertyName("card_id")] public string CardId { get; set; } /// /// 房管局系统中的小区id /// [JsonPropertyName("community_id")] public string CommunityId { get; set; } /// /// 房屋信息是否已脱敏,1已脱敏,0未脱敏, 默认0 /// [JsonPropertyName("is_room_info_desensitization")] public long IsRoomInfoDesensitization { get; set; } /// /// 父业主卡ID /// [JsonPropertyName("parent_card_id")] public string ParentCardId { get; set; } /// /// 房管局标识的唯一房屋编号 /// [JsonPropertyName("room_id")] public string RoomId { get; set; } /// /// 房屋信息 /// [JsonPropertyName("room_info")] public string RoomInfo { get; set; } /// /// 卡状态 ONLINE:在线 INVALID:失效 /// [JsonPropertyName("status")] public string Status { get; set; } /// /// 产品子类型: HANGZHOU_OWNER_CARD 杭州房管局电子业主卡 /// [JsonPropertyName("sub_biz_type")] public string SubBizType { get; set; } /// /// 用户类型: 业主:OWNER 租客:TENANT 家属:FAMILY其他:OTHER /// [JsonPropertyName("user_type")] public string UserType { get; set; } } }