using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using WIDESEAWCS_Core.DB.Models; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models { [SugarTable("Dt_NJCommands", "扭矩命令表"), MultiTenant] public class Dt_NJCommands : BaseEntity { [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int ID { get; set; } /// /// 设备号 /// [SugarColumn(IsNullable = true, Length = 50)] public string DeviceNum { get; set; } /// /// 所属分类(机械/电气/地沟) /// [SugarColumn(IsNullable = true, Length = 50)] public string TorqueGruop { get; set; } /// /// 扭矩扳手传输的值 /// [SugarColumn(IsNullable = true, Length = 50)] public string TorqueValue { get; set; } /// /// 最大范围+0001000[+TOL] /// [SugarColumn(IsNullable = true, Length = 50)] public string TorqueMax { get; set; } /// /// 最小范围-0001000[-TOL] /// [SugarColumn(IsNullable = true, Length = 50)] public string TorqueMin { get; set; } } }