1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Result.Monitor
- {
- public class WcsMotBalanceMonitor
- {
- public string REGION_CODE { get; set; }
- public string REGION_NAME { get; set; }
- public string SHELF_CODE { get; set; }
- public string SHELF_NAME { get; set; }
- public string DEV_TYPE_CODE { get; set; }
- public string DEV_TYPE_NAME { get; set; }
- public string DEV_CODE { get; set; }
- public string DEV_NAME { get; set; }
- public string BIN_CODE { get; set; }
- public string BIN_NAME { get; set; }
- public int BIN_ROW { get; set; }
- public int BIN_COLUMN { get; set; }
- public int BIN_LAYER { get; set; }
- public int USED_FLAG { get; set; }
- public string USED_FLAG_NAME { get; set; }
- public int BALANCE_ID { get; set; }
- public string TRAY_CODE { get; set; }
- public string PALLET_CODE { get; set; }
- public int TRAYS_TYPE { get; set; }
- public string TRAYS_TYPE_NAME { get; set; }
- public int TRAY_LOADED_TYPE { get; set; }
- public string TRAY_LOADED_TYPE_NAME { get; set; }
- public int BALANCE_STATUS { get; set; }
- public string BALANCE_STATUS_NAME { get; set; }
- public int TASK_NO { get; set; }
- public int CMD_NO { get; set; }
- }
- }
|