using SqlSugar; namespace SHJX.Service.Model.Dao { [SugarTable("equipment_area")] public class EquipmentArea { /// /// 主键自增列 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int SerialKey { get; set; } /// /// 区域名称 /// public string AreaName { get; set; } /// /// 点位名称 /// public string PointName { get; set; } /// /// X坐标 /// public double LocationX { get; set; } /// /// Y坐标 /// public double LocationY { get; set; } /// /// Z坐标 /// public double LocationZ { get; set; } /// /// T坐标 /// public double LocationT { get; set; } /// /// 点位状态 /// public bool Status { get; set; } } }