using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core.DB.Models; namespace WIDESEAWCS_Model.Models { [SugarTable(nameof(Dt_ProcessInfo), "加工信息表")] public class Dt_ProcessInfo : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// 工装板编号 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "工装板编号")] public string PalletCode { get; set; } /// /// 成品编号 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "成品编号")] public string ProductCode { get; set; } /// /// 成品名称 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "成品名称")] public string ProductName { get; set; } /// /// 零件数量 /// [SugarColumn(IsNullable = false, ColumnDescription = "零件数量")] public int ComponentQty { get; set; } /// /// 扭力值 /// [SugarColumn(IsNullable = true, ColumnDescription = "扭力值")] public float TorsioValue { get; set; } /// /// 扭力值标准 /// [SugarColumn(IsNullable = true, ColumnDescription = "扭力值标准")] public float TorsioValueStandard { get; set; } /// /// 刚度值 /// [SugarColumn(IsNullable = true, ColumnDescription = "刚度值")] public float StiffnessValue { get; set; } /// /// 刚度值标准 /// [SugarColumn(IsNullable = true, ColumnDescription = "刚度值标准")] public float StiffnessValueStandard { get; set; } /// /// 测试结果 /// [SugarColumn(IsNullable = true, ColumnDescription = "测试结果")] public int TestResult { get; set; } /// /// 压装位下压检测高度 /// [SugarColumn(IsNullable = true, ColumnDescription = "压装位下压检测高度")] public float PressHeight { get; set; } /// /// 压装位拧紧检测扭力 /// [SugarColumn(IsNullable = true, ColumnDescription = "压装位拧紧检测扭力")] public float ScrewTorque { get; set; } /// /// 压装位拧紧检测角度 /// [SugarColumn(IsNullable = true, ColumnDescription = "压装位拧紧检测角度")] public float ScrewAngle { get; set; } /// /// 拧紧位检测高度1 /// [SugarColumn(IsNullable = true, ColumnDescription = "拧紧位检测高度1")] public float Height1 { get; set; } /// /// 拧紧位检测高度2 /// [SugarColumn(IsNullable = true, ColumnDescription = "拧紧位检测高度2")] public float Height2 { get; set; } /// /// 拧紧位检测高度3 /// [SugarColumn(IsNullable = true, ColumnDescription = "拧紧位检测高度3")] public float Height3 { get; set; } } }