lss
3 天以前 17e3ef45fe0a6b6f8a147b50740834ac734f9317
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
using HH.WCS.DaYang.models;
using SqlSugar;
using System;
using System.Collections.Generic;
 
namespace HH.WCS.DaYang {
    [SugarTable("TN_Container")]
    public class Container : BaseModel {
 
 
        public string S_CODE { get; set; }
        public string S_TYPE { get; set; }
        public string S_SPEC { get; set; }
    
        public string C_IS_VIRTUAL { get; set; } = "N";
        public int N_TYPE { get; set; }
        public string C_ENABLE { get; set; } = "Y";
        public string S_STATE_PRE { get; set; }
        public int N_REVIEW_RESULT { get; set; }
        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; }
 
        /// <summary>
        /// 容器来源1是正常,2是叠盘
        /// </summary>
        public string S_SOURCE { get; set; }
        public int N_LOCK_STATE { get; set; }
      
      
 
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToMany, nameof(CntrItemDetail.S_CNTR_CODE), nameof(S_CODE))]
        public List<CntrItemDetail> CntrItemRels { get; set; }
    }
}