yanjinhui
2025-03-17 b8510ca5d1e56ef78cd27c45b6bd65a2c13f6b27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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; }
 
 
        /// <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; }
    }
}