using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniMembersHuobanCreateModel Data Structure. /// [Serializable] public class AlipayOpenMiniMembersHuobanCreateModel : AopObject { /// /// 内部员工域账号 /// [XmlElement("domain_account")] public string DomainAccount { get; set; } /// /// 支付宝账号 /// [XmlElement("login_id")] public string LoginId { get; set; } /// /// 小程序ID /// [XmlElement("operate_app_id")] public string OperateAppId { get; set; } /// /// 成员角色 /// [XmlElement("type")] public string Type { get; set; } } }