49 lines
1.4 KiB
C#
49 lines
1.4 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// ProducerVO Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class ProducerVO : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 业务状态,EFFECTIVE:有效、INVALID:无效
|
||
/// </summary>
|
||
[XmlElement("biz_status")]
|
||
public string BizStatus { get; set; }
|
||
|
||
/// <summary>
|
||
/// 经营信息
|
||
/// </summary>
|
||
[XmlElement("business_desc")]
|
||
public string BusinessDesc { get; set; }
|
||
|
||
/// <summary>
|
||
/// 证照信息,枚举值如下: LICENSE_NO:许可证号, LICENSE_DATE:营业执照有效期, PAYMENT_DAYS:账期天数, TAX_NUMBER:税务证号, BANK:开户银行, BANK_ACCOUNT:银行账号, CONTACT:联系人, PHONE:联系电话, ACCOUNT_DAY:结账日期
|
||
/// </summary>
|
||
[XmlElement("certificate_desc")]
|
||
public string CertificateDesc { get; set; }
|
||
|
||
/// <summary>
|
||
/// 生产厂商ID
|
||
/// </summary>
|
||
[XmlElement("producer_id")]
|
||
public string ProducerId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 生产厂商名称
|
||
/// </summary>
|
||
[XmlElement("producer_name")]
|
||
public string ProducerName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 短码
|
||
/// </summary>
|
||
[XmlElement("short_code")]
|
||
public string ShortCode { get; set; }
|
||
}
|
||
}
|