using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.IoT { /// /// MongoDB基类 /// public abstract class BaseEntity { /// /// ID /// public string Id { get; set; } /// /// 客户端 ID /// public string ClientId { get; set; } /// /// 设备 ID /// public string DeviceId { get; set; } /// /// 阿里云设备名称 /// public string devicename { get; set; } /// /// 状态 /// public string State { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 修改时间 /// public DateTime UpdateTime { get; set; } /// /// key /// public string KeyID { get; set; } } }