杨前锦
2025-06-19 d42ad8b01195def2a9309930e14f90ff13ad47b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using HH.WCS.Mobox3.YNJT_PT.models;
using SqlSugar;
using System;
using System.Collections.Generic;
 
namespace HH.WCS.Mobox3.YNJT_PT {
    [SugarTable("TN_Container")]
    public class Container : BaseModel {
 
        [SugarColumn(IsPrimaryKey = true)]
        public string S_CODE { get; set; }
        public string S_TYPE { get; set; }
        public string S_SPEC { get; set; }
 
        public int N_DETAIL_COUNT { get; set; }
        public int N_B_STATE { get; set; }
 
 
 
        [SugarColumn(IsIgnore = true)]
        [Navigate(NavigateType.OneToOne, nameof(S_CODE))]
        public CntrItemRel CntrItemRel { get; set; }
    }
}