huangxiaoqiang
2025-08-31 81b3c30ab5e042c3a740e4e5077c1d85013b6482
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
93
94
95
96
97
98
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.PackInfo
{
    [SugarTable(nameof(Dt_Packaxis), "码垛坐标")]
    public class Dt_Packaxis : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int id { get; set; }
 
        /// <summary>
        /// 设备编号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "设备编号")]
        public string DeviceCode { get; set; }
 
        /// <summary>
        /// 站台编号
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "站台编号")]
        public int StationCode { get; set; }
 
        /// <summary>
        /// 垛型
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "垛型")]
        public string PackType { get; set; }
 
        /// <summary>
        /// 码垛数量
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "码垛数量")]
        public int PackNum { get; set; }
 
        /// <summary>
        /// X坐标
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标")]
        public int AxisX { get; set; }
 
        /// <summary>
        /// X坐标个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标个数")]
        public int AxisXCount { get; set; }
 
        /// <summary>
        /// X坐标间距
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "X坐标间距")]
        public int AxisXSpacing { get; set; }
 
        /// <summary>
        /// Y坐标
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标")]
        public int AxisY { get; set; }
 
        /// <summary>
        /// Y坐标个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标个数")]
        public int AxisYCount { get; set; }
 
        /// <summary>
        /// Y坐标间距
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Y坐标间距")]
        public int AxisYSpacing { get; set; }
 
        /// <summary>
        /// Z坐标
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标")]
        public int AxisZ { get; set; }
 
        /// <summary>
        /// Z坐标个数
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标个数")]
        public int AxisZCount { get; set; }
 
        /// <summary>
        /// Z坐标间距
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "Z坐标间距")]
        public int AxisZSpacing { get; set; }
    }
}