| | |
| | | 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 |
| | | public class Dt_NJCommands : BaseEntity |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Comid { get; set; } |
| | | public int ID { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 设å¤å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public string DeviceNum { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æå±åç±»ï¼æºæ¢°/çµæ°/å°æ²ï¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public string TorqueGruop { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æç©æ³æä¼ è¾çå¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | |
| | | public string TorqueValue { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æå¤§èå´+0001000[+TOL] |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public string TorqueMax { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// æå°èå´-0001000[-TOL] |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50)] |
| | | public string TorqueMin { get; set; } |
| | | } |