yanjinhui
2025-03-22 2f0c81709876d76b6b120cf6ac43f05cda6dfe4c
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
55
56
57
58
59
60
61
62
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_TorqueOp", "每次执行成功存储的值"), MultiTenant]
    public class Dt_TorqueOp :BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int ID { get; set; }
 
 
        /// <summary>
        /// 设备号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string DeviceCode { get;  set; }
 
 
        /// <summary>
        /// 任务id(定义的任务id)
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string  TakeId {  get; set; }
 
        /// <summary>
        /// 那个类型扳手扭的(机械/电气/地沟)
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public string GroupOp { get; set; }
 
        /// <summary>
        /// 步骤(任务表中的小步骤),第几步存储的
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public int ProcessSte { get; set; }
 
 
        /// <summary>
        /// 存储值的大小
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50)]
        public float TorqueSize { get; set; }
 
        ///// <summary>
        ///// 扭力值是否合格
        ///// </summary>
        //[SugarColumn(IsNullable = true)]
        //public bool OpStatus { get; set; }
         
 
    }
}