xiaojiao
18 小时以前 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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
 
namespace WIDESEAWCS_Model.Models
{
    /// <summary>
    /// 库存表(货位信息)
    /// </summary>
    [SugarTable(nameof(Dt_Inventory), "库存表")]
    public class Dt_Inventory : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 货位id
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "货位id")]
        public string? location_id { get; set; }
 
        /// <summary>
        /// 库区/区域id
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "库区/区域id")]
        public string? location_areaid { get; set; }
 
        /// <summary>
        /// 货位状态
        /// </summary>
        [SugarColumn(Length = 510, ColumnDescription = "货位状态")]
        public string? location_state { get; set; }
 
        /// <summary>
        /// 行
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "行")]
        public int? location_line { get; set; }
 
        /// <summary>
        /// 列
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "列")]
        public int? location_column { get; set; }
 
        /// <summary>
        /// 层
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "层")]
        public int? location_layer { get; set; }
 
        /// <summary>
        /// 是否被锁定
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "是否被锁定")]
        public bool? location_islocked { get; set; }
 
        /// <summary>
        /// 备用字段1
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "备用字段1")]
        public string? location_bak_1 { get; set; }
 
        /// <summary>
        /// 备用字段2
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "备用字段2")]
        public string? location_bak_2 { get; set; }
 
        /// <summary>
        /// 备用字段3
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "备用字段3")]
        public string? location_bak_3 { get; set; }
 
        /// <summary>
        /// 货位深度
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "货位深度")]
        public int? location_deep { get; set; }
    }
}