using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// CorpEntity Data Structure.
///
[Serializable]
public class CorpEntity : AopObject
{
///
/// 企业支付宝登录账号(邮箱或手机号)
///
[XmlElement("alipay_account")]
public string AlipayAccount { get; set; }
///
/// 企业统一社会信用编码
///
[XmlElement("corp_code")]
public string CorpCode { get; set; }
///
/// xxx测试公司
///
[XmlElement("corp_name")]
public string CorpName { get; set; }
}
}