using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenMiniAmpeProductModifyModel Data Structure. /// [Serializable] public class AlipayOpenMiniAmpeProductModifyModel : AopObject { /// /// 产品id,必填 /// [XmlElement("product_id")] public long ProductId { get; set; } /// /// 设备产品名称, 必填,最大长度32,单oid下唯一 /// [XmlElement("product_name")] public string ProductName { get; set; } /// /// 场景码,申请后平台分配,必填 /// [XmlElement("scene_code")] public string SceneCode { get; set; } } }