wangxinhui
2026-01-12 ded9c653b4bd5f45cb23124068687135c29e6915
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int id { get; set; }
 
        /// <summary>
        /// 箱码
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "箱码")]
        public string BarCode { get; set; }
 
        /// <summary>
        /// 垛型
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "垛型")]
        public int PackType { get; set; }
 
        /// <summary>
        /// 码垛工单号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛工单号")]
        public string OrderNo { get; set; }
 
        /// <summary>
        /// 物料编号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛物料编号")]
        public string MaterialCode { get; set; }
 
        /// <summary>
        /// 加工中心编码(机台)
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "加工中心编码(机台)")]
        public string MakeCode { get; set; }
        /// <summary>
        /// 码垛状态
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "码垛状态")]
        public int PackStatus { get; set; }
        /// <summary>
        /// 箱长
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "箱长")]
        public int Length { get; set; }
 
        /// <summary>
        /// 箱宽
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "箱宽")]
        public int Width { get; set; }
 
        /// <summary>
        /// 箱高
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "箱高")]
        public int Height { get; set; }
    }
}