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.SerialPort
|
{
|
//[SugarTable("Dt_Process", "每次执行成功存储的值"), 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,ColumnName = "TakeId")]
|
public int TakeId { get; set; }
|
|
//[SugarColumn(IsNullable = true, Length = 50, ColumnName = "GroupOp")]
|
public string GroupOp { get; set; }
|
|
//[SugarColumn(IsNullable = true, Length = 50, ColumnName = "ProcessSte")]
|
public int ProcessSte { get; set; }
|
|
//[SugarColumn(IsNullable = true, Length = 50, ColumnName = "TorqueSize")]
|
public string TorqueSize { get; set; }
|
|
|
|
|
}
|
}
|