using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayBossProdAntlegalchainOrderApplyModel Data Structure. /// [Serializable] public class AlipayBossProdAntlegalchainOrderApplyModel : AopObject { /// /// 关联业务数据编号 /// [XmlElement("biz_code")] public string BizCode { get; set; } /// /// 业务数据请求唯一标识,唯一 /// [XmlElement("biz_unique_id")] public string BizUniqueId { get; set; } /// /// 我方经办人工号(内部buc工号) /// [XmlElement("main_agent_buc_user_no")] public string MainAgentBucUserNo { get; set; } /// /// 我方经办人真实姓名 /// [XmlElement("main_agent_person_cert_name")] public string MainAgentPersonCertName { get; set; } /// /// 我方经办人证件上的身份证号 /// [XmlElement("main_agent_person_cert_no")] public string MainAgentPersonCertNo { get; set; } /// /// 我方签约公司信息:公司名称(必传) 公司支付宝账号(可传) 公司统一社会信用编码(可传) /// [XmlElement("main_corp_entity")] public CorpEntity MainCorpEntity { get; set; } /// /// 我方通知人邮箱地址 /// [XmlElement("main_corp_notify_email")] public string MainCorpNotifyEmail { get; set; } /// /// 我方通知人姓名 /// [XmlElement("main_corp_notify_name")] public string MainCorpNotifyName { get; set; } /// /// 我方通知人手机号 /// [XmlElement("main_corp_notify_phone")] public string MainCorpNotifyPhone { get; set; } /// /// 签约文件对象信息列表 /// [XmlArray("notary_file_list")] [XmlArrayItem("notary_file_v_o")] public List NotaryFileList { get; set; } /// /// 签约相对方企业信息: 对方公司支付宝账号(必传) 公司名称(必传) 统一社会信用编码(必传) /// [XmlElement("rela_corp_entity")] public CorpEntity RelaCorpEntity { get; set; } /// /// 对方通知人邮箱地址 /// [XmlElement("rela_corp_notify_email")] public string RelaCorpNotifyEmail { get; set; } /// /// 对方通知人手机号 /// [XmlElement("rela_corp_notify_phone")] public string RelaCorpNotifyPhone { get; set; } /// /// 请求来源系统英文名称 /// [XmlElement("request_app_name")] public string RequestAppName { get; set; } /// /// 请求时间戳(请求时间的毫秒值) /// [XmlElement("request_time_stamp")] public string RequestTimeStamp { get; set; } /// /// 请求token /// [XmlElement("request_token")] public string RequestToken { get; set; } /// /// 发起签约时间/我方签约时间 /// [XmlElement("submit_time")] public string SubmitTime { get; set; } } }