using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// ZhimaMerchantContractQuickCreateResponse.
///
public class ZhimaMerchantContractQuickCreateResponse : AopResponse
{
///
/// 错误码
///
[XmlElement("biz_code")]
public string BizCode { get; set; }
///
/// 错误说明
///
[XmlElement("biz_desc")]
public string BizDesc { get; set; }
///
/// 发约单单号
///
[XmlElement("offer_no")]
public string OfferNo { get; set; }
}
}