Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// CPCommunitySet Data Structure.
/// </summary>
[Serializable]
public class CPCommunitySet : AopObject
{
/// <summary>
/// 支付宝社区小区统一编号。
/// </summary>
[JsonProperty("community_id")]
public string CommunityId { get; set; }
/// <summary>
/// 小区对应的物业公司支付宝账号PID合作伙伴partner id。物业公司给开发者做第三方应用授权后开发者可获取物业公司PID。
/// </summary>
[JsonProperty("merchant_pid")]
public string MerchantPid { get; set; }
/// <summary>
/// 小区在物业系统中的唯一编号。若开发者传入过,则返回。
/// </summary>
[JsonProperty("out_community_id")]
public string OutCommunityId { get; set; }
/// <summary>
/// 小区当前状态,状态值: PENDING_ONLINE 待上线 ONLINE - 上线 MAINTAIN - 维护中 OFFLINE - 下线
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}