using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZhimaCreditEpSceneTradeConsultModel Data Structure. /// [Serializable] public class ZhimaCreditEpSceneTradeConsultModel : AopObject { /// /// 信用交易额度,单位为:人民币分,整型; /// [XmlElement("apply_amount")] public long ApplyAmount { get; set; } /// /// 业务数据传输扩展参数,以json形式传输。具体行业需要传输的数据参见具体行业的对接文档 /// [XmlElement("biz_ext_param")] public string BizExtParam { get; set; } /// /// 客户评估单号 /// [XmlElement("customer_rating_no")] public string CustomerRatingNo { get; set; } /// /// 商户请求的唯一标志,64位长度的字母数字下划线组合。该标识作为对账的关键信息,商户要保证其唯一性。 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } /// /// 产品码,请填写示例值里提供的值 /// [XmlElement("product_code")] public string ProductCode { get; set; } } }