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_Process
|
{
|
[SugarColumn(IsPrimaryKey =true,IsIdentity =true,ColumnDescription ="主键")]
|
public int CraftID { get; set; }
|
|
public int Nodal { get; set; }
|
|
//[SugarColumn(IsNullable = false, Length = 50)]
|
public string CraftType { get; set; }
|
|
//[SugarColumn(IsNullable = false, Length = 255)]
|
public string CraftsStep { get; set; }
|
|
//[SugarColumn(IsNullable = false, Length = 255)]
|
public string CraftContent { get; set; }
|
|
//[SugarColumn(IsNullable = true, Length = 50)]
|
public string Tools { get; set; }
|
|
//[SugarColumn(IsNullable = true, Length = 50)]
|
public string TorqueOne { get; set; }
|
|
//[SugarColumn(IsNullable = true)]
|
public int TorqueOneQuantity { get; set; }
|
|
//[SugarColumn(IsNullable = true, Length = 50)]
|
public string TorqueTwo { get; set; }
|
|
//[SugarColumn(IsNullable = true)]
|
public int TorqueTwoQuantity { get; set; }
|
|
//[SugarColumn(IsNullable = true)]
|
public int TorqueSum { get; set; }
|
|
//[SugarColumn(IsNullable = true)]
|
public int SetpNum { get; set; }
|
|
}
|
}
|