namespace BPA.MES.Base.Application.Entitys { /// /// 名 称 :胖子天骄设备基础表 /// 创 建 人 :yangxiao /// 创建时间 : 2023/7/14 11:26:34 /// 描 述 : /// [SugarTable("device_info")] public class Pztj_DevicesInfoEntity: DEntityBase { /// /// 名称 /// [Required(ErrorMessage = "名称不能为空")] public string Name { get; set; } /// /// 编码 /// [Required(ErrorMessage = "编码不能为空")] public string Code { get; set; } /// /// 设备类型 /// [SugarColumn(IsNullable = true)] public string DeviceType { get; set; } /// /// 设备描述 /// [SugarColumn(IsNullable = true)] public string Describe { get; set; } /// /// 设备维保时间 /// [SugarColumn(IsNullable = true)] public string RepairDate { get; set; } /// /// 设备创建时间 /// [SugarColumn(IsNullable = true)] public string CreateTime { get; set; } } }