jinxin
2025-06-04 174aa37fc0553ac80c9c2ae17b919ded10b8bae4
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
using HH.WCS.Mobox3.YNJuXing.models;
using SqlSugar;
using System;
using System.Collections.Generic;
 
namespace HH.WCS.Mobox3.YNJuXing
{
    //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; }
        public string S_SRC_SYS { get; set; }
        public string TRAYTYPE { get; set; }
 
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToMany, nameof(S_CNTR_CODE))]
        public List<CntrItemRel> CntrItemRels { get; set; }
 
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToOne, nameof(S_CNTR_CODE))]
        public Container Container { get; set; }
    }
}