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; }
|
|
|
}
|
}
|