using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZhongLianModel { /// /// 设备实体 /// [SugarTable("TPRZ_Device")] public class DeviceDO { /// /// 设备编号 /// [SugarColumn(IsPrimaryKey = true, Length = 64)] public string? Id { get; set; } /// /// 工程 /// [SugarColumn(Length = 64, IsNullable = true)] public string? ProjectId { get; set; } /// /// 删除标识 /// [SugarColumn(Length = 1, IsNullable = true)] public int? Deleted { get; set; } } }