using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayCommerceIotDapplyOrderCreateModel Data Structure. /// [Serializable] public class AlipayCommerceIotDapplyOrderCreateModel : AopObject { /// /// 申请人联系电话 /// [XmlElement("applicant_mobile")] public string ApplicantMobile { get; set; } /// /// 申请人名称 /// [XmlElement("applicant_name")] public string ApplicantName { get; set; } /// /// 申请人pid /// [XmlElement("applicant_pid")] public string ApplicantPid { get; set; } /// /// 申请人类型 /// [XmlElement("applicant_type")] public string ApplicantType { get; set; } /// /// 申请总数量,order_item_list每个元素apply_amount之和 /// [XmlElement("apply_amount")] public string ApplyAmount { get; set; } /// /// 物料申请模式 /// [XmlElement("asset_apply_type")] public string AssetApplyType { get; set; } /// /// 创建人 /// [XmlElement("creator")] public string Creator { get; set; } /// /// 订单创建子单集合 /// [XmlArray("device_apply_order_item_models")] [XmlArrayItem("device_apply_order_item_dto")] public List DeviceApplyOrderItemModels { get; set; } /// /// 扩展字段,JSON字符串 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 备注 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 商户名称 /// [XmlElement("merchant_name")] public string MerchantName { get; set; } /// /// 商户pid /// [XmlElement("merchant_pid")] public string MerchantPid { get; set; } /// /// 行业场景 /// [XmlElement("scene_code")] public string SceneCode { get; set; } /// /// 行业场景名称 /// [XmlElement("scene_name")] public string SceneName { get; set; } /// /// 店铺Id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 店铺名称 /// [XmlElement("shop_name")] public string ShopName { get; set; } /// /// 来源渠道, 供应商系统为:DSUPPLIER /// [XmlElement("source_code")] public string SourceCode { get; set; } } }