1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using HH.WCS.Mobox3.pinggao.models;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.pinggao.models
{
    [SugarTable("TN_Location_Ext")]
    public class TN_Location_Ext : BaseModel
    {
        public string S_EQ_TYPE { get;  set; }
        public int N_LAYER { get; internal set; }
        public string S_LOC_CODE { get; internal set; }
        public string N_EQ_TYPE { get; internal set; }
        public string S_AGV_SITE { get; internal set; }
    }
}