using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayDataIotdataPointDeviceUnbindModel Data Structure. /// [Serializable] public class AlipayDataIotdataPointDeviceUnbindModel : AopObject { /// /// 业务id /// [XmlElement("business_id")] public long BusinessId { get; set; } /// /// 设备id /// [XmlElement("device_id")] public string DeviceId { get; set; } /// /// 点位id /// [XmlElement("point_id")] public long PointId { get; set; } /// /// 备注信息 /// [XmlElement("remark")] public string Remark { get; set; } } }