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_Process", "工艺表"), MultiTenant] public class Dt_Process : BaseEntity { [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int CraftID { get; set; } /// /// 大序号 /// [SugarColumn(IsNullable = true, Length = 50)] public int Nodal { get; set; } /// /// 小序号 /// [SugarColumn(IsNullable = true, Length = 50)] public int SetpNum { get; set; } /// /// 组别 /// [SugarColumn(IsNullable = true, Length = 50)] public string CraftType { get; set; } /// /// 工作前准备步骤 /// [SugarColumn(IsNullable = true, Length = 255)] public string CraftsStep { get; set; } /// /// 工艺具体内容 /// [SugarColumn(IsNullable = true, Length = 255)] public string CraftContent { get; set; } /// /// 工具 /// [SugarColumn(IsNullable = true, Length = 50)] public string Tools { get; set; } /// /// 物料 /// [SugarColumn(IsNullable = true, Length = 50)] public string Material { get; set; } /// /// 第一个需要扭的值 /// [SugarColumn(IsNullable = true, Length = 50)] public float TorqueOne { get; set; } /// /// 第一个需要扭的值的个数 /// [SugarColumn(IsNullable = true, Length = 50)] public int TorqueOneQuantity { get; set; } /// /// 套筒id(信息列表) /// [SugarColumn(IsNullable = true, Length = 50)] public string ArticleOneid { get; set; } /// /// 第一个套筒数量 /// [SugarColumn(IsNullable = true, Length = 50)] public string ArticleOne { get; set; } /// /// 第二个需要扭的值 /// [SugarColumn(IsNullable = true, Length = 50)] public float TorqueTwo { get; set; } /// /// 第二个需要扭的值的个数 /// [SugarColumn(IsNullable = true, Length = 50)] public int TorqueTwoQuantity { get; set; } /// /// 第二个套筒id /// [SugarColumn(IsNullable = true, Length = 50)] public string ArticleTowid { get; set; } /// /// 第二个套筒的数量 /// [SugarColumn(IsNullable = true, Length = 50)] public string ArticleTwo { get; set; } /// /// 需要扭几种不同的力 /// [SugarColumn(IsNullable = true, Length = 50)] public int TorqueSum { get; set; } } }