1
z8018
2025-06-10 e46aa927d231af83724683c7286d9db503e24cf7
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
99
100
101
102
103
104
105
 
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEAWCS_Core.DB.Models;
 
namespace WIDESEAWCS_Model.Models
{
    [SugarTable]
    public class Dt_ContainerItem : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 容器主表主键
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "容器主表主键")]
        public int ContainerId { get; set; }
 
        /// <summary>
        /// 编号
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "编号")]
        public string ItemCode { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "名称")]
        public string ItemName { get; set; }
 
        /// <summary>
        /// 长
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "长")]
        public int ItemLength { get; set; }
 
        /// <summary>
        /// 宽
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "宽")]
        public int ItemWidth { get; set; }
 
        /// <summary>
        /// 高
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "高")]
        public int ItemHeight { get; set; }
 
        /// <summary>
        /// X坐标
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "X坐标")]
        public int ItemPositionX { get; set; }
 
        /// <summary>
        /// Y坐标
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "Y坐标")]
        public int ItemPositionY { get; set; }
 
        /// <summary>
        /// Z坐标
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "Z坐标")]
        public int ItemPositionZ { get; set; }
 
        /// <summary>
        /// X相对坐标
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "X相对坐标")]
        public int ItemRelaPositionX { get; set; }
 
        /// <summary>
        /// Y相对坐标
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "Y相对坐标")]
        public int ItemRelaPositionY { get; set; }
 
        /// <summary>
        /// Z相对坐标
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "Z相对坐标")]
        public int ItemRelaPositionZ { get; set; }
 
        /// <summary>
        /// 状态
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "状态")]
        public int ItemStatus { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "备注")]
        public string Remark { get; set; }
    }
}