yanjinhui
2025-03-13 d3ae2e67d8237e8474c7b88f526619550608b933
ÏîÄ¿´úÂë/WIDESEAWCS_Server Õýʽ/WIDESEAWCS_Model/Models/SerialPort/Dt_NJCommands.cs
@@ -4,20 +4,31 @@
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
using WIDESEAWCS_Core.Tenants;
namespace WIDESEAWCS_Model.Models.SerialPort
namespace WIDESEAWCS_Model.Models
{
    [SugarTable("Dt_NJCommands", "扭矩命令表"), MultiTenant]
    public  class Dt_NJCommands
    public  class Dt_NJCommands : BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public  int  Comid { get; set; }
        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; }
        [SugarColumn(IsNullable = true, Length = 50)]
        public string TorqueMax { get; set; }
        [SugarColumn(IsNullable = true, Length = 50)]
        public string  TorqueMin { get; set; }
    }
}