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