using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// ZhimaMerchantContractPageQueryResponse. /// public class ZhimaMerchantContractPageQueryResponse : AopResponse { /// /// 合约详情信息 /// [XmlArray("biz_data")] [XmlArrayItem("zm_contract_detail")] public List BizData { get; set; } /// /// 业务结果描述,成功则为空,失败才会有 /// [XmlElement("biz_desc")] public string BizDesc { get; set; } /// /// 业务成功标识,success/failed /// [XmlElement("biz_result")] public string BizResult { get; set; } /// /// 是否有下一页 /// [XmlElement("has_next")] public bool HasNext { get; set; } } }