using System;

namespace Ropin.IOT.MqttService
{
    public class MqttDevicePoint
    {
        public string BoxId { get; set; }
        public string GroupName { get; set; }
        public string Id { get; set; }
        public string ChineseName { get; set; }
        public string EnglishName { get; set; }
        public string Value { get; set; }
        public DateTime UpLoadTime { get; set; }//上报时间
        public string DataType { get; set; } //数据类型
        public string BoxStatus { get; set; } //盒子状态
        public string C_Remark { get; set; }
        public Guid C_CreateBy { get; set; }
        public DateTime D_CreateOn { get; set; }
        public Guid? C_LastUpdatedBy { get; set; }
        public DateTime? D_LastUpdatedOn { get; set; }
        public string C_Status { get; set; }

    }
}