using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// OperatorAccountVO Data Structure. /// [Serializable] public class OperatorAccountVO : AopObject { /// /// 关联账号ID /// [XmlElement("account_id")] public string AccountId { get; set; } /// /// 关联账号类型。枚举值参考OperatorRelAccountTypeEnum account_type=01,则account_id为支付宝userId account_type=02,则account_id为钉钉账号id account_type=03,则account_id为支付宝oid /// [XmlElement("account_type")] public string AccountType { get; set; } } }