yanjinhui
2025-03-11 6eaa4ce46292314450fb725f67f27774945865cc
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.Tenants;
 
namespace WIDESEAWCS_Model.Models
{
    [SugarTable("Dt_TorqueOp", "每次执行成功存储的值"), MultiTenant]
    public class Dt_TorqueOp
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int ID { get; set; }
 
        public string DeviceCode { get;  set; }
 
        [SugarColumn(IsNullable = true, Length = 50)]
        public int TakeId {  get; set; }
 
        [SugarColumn(IsNullable = true, Length = 50)]
        public string GroupOp { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 50)]
        public int ProcessSte { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 50)]
        public string TorqueSize { get; set; }
 
       
         
 
    }
}