111
cjs
4 天以前 7fda4aeb36beda46d767a78082573692e7b85651
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
using HH.WCS.Mobox3.NFLZ.models;
using SqlSugar;
using System;
using System.Collections.Generic;
 
namespace HH.WCS.Mobox3.NFLZ {
    [SugarTable("TN_Container")]
    public class Container : BaseModel 
    {
        /// <summary>
        /// ÈÝÆ÷±àÂë
        /// </summary>
        public string S_CODE { get; set; }
        /// <summary>
        /// ÀàÐÍ
        /// </summary>
        public string S_TYPE { get; set; }
        /// <summary>
        /// ÀàÐÍÖµ
        /// </summary>
        public int N_TYPE { get; set; }
        /// <summary>
        /// ¹æ¸ñ
        /// </summary>
        public string S_SPEC { get; set; }
        /// <summary>
        /// ×ÔÖØ
        /// </summary>
        public float F_WEIGHT { get; set; }
        /// <summary>
        /// ×î´óÈÝÁ¿
        /// </summary>
        public float F_MAX_CAP {  get; set; }
        /// <summary>
        /// ×î´óÖØÁ¿
        /// </summary>
        public float F_MAX_WEIGHT { get; set; }
        public string C_IS_VIRTUAL { get; set; } = "N";
        public string C_ENABLE { get; set; } = "Y";
        /// <summary>
        /// Ã÷ϸÌõÊý
        /// </summary>
        public int N_DETAIL_COUNT { get; set; }
        public int N_B_STATE { get; set; }
        public string S_LOCK_OP_CODE { get; set; }
        public string S_LOCK_STATE { get; set; }
        public int N_LOCK_STATE { get; set; }
        public float F_GOOD_WEIGHT { get; set; }
        public float F_MAX_VOLUME {  get; set; }
        public float F_GOOD_VOLUME {  get; set; }
        public string C_FULL { get; set; }
        public int N_EMPTY_FULL { get; set; }
        public int N_MAX_CELL_NUM { get; set; }
        public int N_EMPTY_CELL_NUM { get; set; }
        public float F_LENGTH { get; set; }
        public float F_WIDTH { get; set; }
        public float F_HEIGHT { get; set; }
        public string S_POSITION { get; set; }
        public int N_GOOD_NUM { get; set; }
        public int N_ALLOC_CELL_NUM { get; set; }
        public string S_SOURCE { get; set; }
        public float F_ACT_WEIGHT { get; set; }
        /// <summary>
        /// ÂëÅÌʱºò±ê¼Ç
        /// </summary>
        public string S_SRC { get; internal set; }
        public string S_DEST { get; internal set; }
 
 
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToMany, nameof(CntrItemRel.S_CNTR_CODE), nameof(S_CODE))]
        public List<CntrItemRel> CntrItemRels { get; set; }
    }
}