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_Packinfo), "待码垛信息表")] public class Dt_Packinfo : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int id { get; set; } /// /// 箱码 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "箱码")] public string BarCode { get; set; } /// /// 垛型 /// [SugarColumn(IsNullable = false, ColumnDescription = "垛型")] public int PackType { get; set; } /// /// 码垛工单号 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛工单号")] public string OrderNo { get; set; } /// /// 物料编号 /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛物料编号")] public string MaterialCode { get; set; } /// /// 加工中心编码(机台) /// [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "加工中心编码(机台)")] public string MakeCode { get; set; } /// /// 码垛状态 /// [SugarColumn(IsNullable = false, ColumnDescription = "码垛状态")] public int PackStatus { get; set; } /// /// 箱长 /// [SugarColumn(IsNullable = false, ColumnDescription = "箱长")] public int Length { get; set; } /// /// 箱宽 /// [SugarColumn(IsNullable = false, ColumnDescription = "箱宽")] public int Width { get; set; } /// /// 箱高 /// [SugarColumn(IsNullable = false, ColumnDescription = "箱高")] public int Height { get; set; } } }