z8018
2025-04-01 7ad4c76e91735cf3333c8bc0d2016bacf6ae7d04
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
 
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_Container : BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "编号")]
        public string ContainerCode { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "长")]
        public int ContainerLength { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "宽")]
        public int ContainerWidth { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "高")]
        public int ContainerHeight { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "X坐标")]
        public int ContainerPositionX { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "Y坐标")]
        public int ContainerPositionY { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "Z坐标")]
        public int ContainerPositionZ { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "状态")]
        public int ContainerStatus { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "排序")]
        public int ContainerSort { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "备注")]
        public string ContainerRemark { get; set; }
 
        [Navigate(NavigateType.OneToMany, nameof(Dt_ContainerItem.ContainerId), nameof(Id))]
        public List<Dt_ContainerItem> Items { get; set; }
    }
}