1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NX_ModelClassLibrary.BaseModel
- {
- public class BasBinMonitorMd
- {
- public string RegionCode { get; set; }
- public string RegionName { get; set; }
- public string ShelfCode { get; set; }
- public string ShelfName { get; set; }
- public string DevTypeCode { get; set; }
- public string DevTypeName { get; set; }
- public string DevCode { get; set; }
- public string DevName { get; set; }
- public string BinCode { get; set; }
- public string BinName { get; set; }
- public int BinRow { get; set; }
- public int BinColumn { get; set; }
- public int BinLayer { get; set; }
- public int UsedFlag { get; set; }
- public string UsedFlagName { get; set; }
- public int BalanceId { get; set; }
- public string TrayCode { get; set; }
- public string PalletCode { get; set; }
- public int TraysType { get; set; }
- public string TraysTypeName { get; set; }
- public int TrayLoadedType { get; set; }
- public string TrayLoadedTypeName { get; set; }
- public int BalanceStatus { get; set; }
- public string BalanceStatusName { get; set; }
- public int TaskNo { get; set; }
- public int CmdNo { get; set; }
- }
- }
|