using IoTIntegrationPlatform.Model.Model; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IoTIntegrationPlatform.Model.Enum { public class PlatformDeviceInfoDto : PlatformDeviceInfo { /// /// 客户编号 /// public string CustomerCode { get; set; } /// /// 客户名称 /// public string CustomerName { get; set; } /// /// 平台型号编号 /// public string PlatformModelCode { get; set; } /// /// 平台型号名称 /// public string PlatformModelName { get; set; } } }