zxx
2025-07-03 2b41b8903accb120df1ae29aac6342c124cc78d8
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
using HH.WCS.XiaoMi.models;
using SqlSugar;
using System;
using System.Collections.Generic;
 
namespace HH.WCS.XiaoMi
{
    //TN_Loc_Container
    //LocCntrRel
    [SugarTable("TN_Loc_Container")]
    public class LocCntrRel : BaseModel
    {
        
        
        [SugarColumn(IsPrimaryKey = true)]
        public string S_LOC_CODE { get; set; }
        public string S_CNTR_CODE { get; set; }
        public string S_ACTION_SRC { get; set; }
        public string S_BINDING_METHOD { get; set; }
        public int N_BINDING_METHOD { get; set; }
        public string S_STATE_PRE { get; set; }
        public int N_REVIEW_RESULT { get; set; }
        
        public int N_BIND_ORDER { get; set; }
 
 
        //»õ¼Ü  zxx
        public string S_FRAME_CODE { get; set; }
 
 
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToMany, nameof(S_CNTR_CODE))]
        public List<CntrItemDetail> CntrItemRels { get; set; }
 
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToOne, nameof(S_CNTR_CODE))]
        public Container Container { get; set; }
    }
}