wangxinhui
2026-03-06 65a231315d1dcc35d2996106d36e9cca9aba6ce6
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
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_StationPackInfo), "码垛工位执行信息表")]
    public class Dt_StationPackInfo : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int id { get; set; }
 
        /// <summary>
        /// 站台编号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "站台编号")]
        public string StationCode { get; set; }
 
        /// <summary>
        /// 输送口编号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "输送口编号")]
        public string LineCode { get; set; }
 
        /// <summary>
        /// 码垛机械手编号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "码垛机械手编号")]
        public string CraneCode { 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 MaterielCode { get; set; }
 
        /// <summary>
        /// 加工中心编码(机台)
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "加工中心编码(机台)")]
        public string MakeCode { get; set; }
 
        /// <summary>
        /// 码垛结托数量
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "码垛结托数量")]
        public int PackNum { get; set; }
 
        /// <summary>
        /// 码垛已分配数量
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "码垛已分配数量")]
        public int AssignNum { get; set; }
 
        /// <summary>
        /// 码垛执行中数量
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "码垛执行中数量")]
        public int ExecutingNum { get; set; }
 
        /// <summary>
        /// 排序
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "排序")]
        public int OrderIndex { get; set; }
 
        /// <summary>
        /// 码垛已完成数量
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "码垛已完成数量")]
        public int OverNum { get; set; }
    }
}