xiaojiao
14 小时以前 0071cf57931792eb2357a1e67a42bcaa9603c567
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
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_ContainerInfo), "容器信息")]
    public class Dt_ContainerInfo : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 请求id,幂等uuid32位
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "请求id,幂等uuid32位")]
        public string RequestId { get; set; }
 
        /// <summary>
        /// 容器类型
        /// </summary>
        [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容器类型",DefaultValue = "RACK")]
        public string ContainerType { get; set; }
 
        /// <summary>
        /// 容器模型编码
        /// </summary>
        //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容器模型编码")]
        //public string ContainerModelCode { get; set; }
 
        /// <summary>
        /// 容器编号
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "容器编号")]
        public string ContainerCode { get; set; }
 
        /// <summary>
        /// 容器入场角度
        /// </summary>
        //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容器入场角度")]
        //public string EnterOrientation { get; set; }
 
        /// <summary>
        /// 容器当前对应位置
        /// </summary>
        //[SugarColumn(Length = 100, ColumnDescription = "容器当前对应位置")]
        //public string Position { get; set; }
 
        /// <summary>
        /// 是否新增增容器
        /// </summary>
        //[SugarColumn(ColumnDescription = "是否新增增容器", DefaultValue = "0")]
        //public bool IsNew { get; set; }
 
        /// <summary>
        /// 容器校验码
        /// </summary>
        //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容器校验码")]
        //public string ContainerValidationCode { get; set; }
 
        /// <summary>
        /// 配置容器默认校验码
        /// </summary>
        //[SugarColumn(ColumnDescription = "配置容器默认校验码", IsNullable = true, DefaultValue = "0")]
        //public bool WithDefaultValidationCode { get; set; }
 
        // 下方是容器出场的相关字段
 
        /// <summary>
        /// 容器出场位置
        /// </summary>
        //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容器出场位置")]
        //public string EndPosition { get; set; }
 
        /// <summary>
        /// 容器出场后是否删除
        /// </summary>
        //[SugarColumn(ColumnDescription = "容器出场后是否删除", IsNullable = true, DefaultValue = "0")]
        //public bool isDelete { get; set; }
 
 
        /// <summary>
        /// 容器的空满状态,空:EMPTY 满:FULL
        /// </summary>
        //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容器的空满状态")]
        //public string emptyStatus { get; set; }
 
        /// <summary>
        /// 容器的空满状态,空:EMPTY 满:FULL
        /// </summary>
        //[SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "更新原因")]
        //public string reason { get; set; }
    }
}