using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceIotSnCreateModel Data Structure. /// [Serializable] public class AlipayCommerceIotSnCreateModel : AopObject { /// /// 申请单描述信息 /// [XmlElement("content")] public string Content { get; set; } /// /// 生成的sn数量 /// [XmlElement("create_count")] public long CreateCount { get; set; } /// /// 硬件产品标识位 硬件差异的标识,有硬件换料的需求,需要在SN中区分 /// [XmlElement("hardware_product_id")] public string HardwareProductId { get; set; } /// /// 物料id /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// pcba板厂商 /// [XmlElement("pcba")] public string Pcba { get; set; } /// /// 产品系列 /// [XmlElement("product_series")] public string ProductSeries { get; set; } /// /// 厂商id /// [XmlElement("supplier_id")] public string SupplierId { get; set; } } }