1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.WmsTask
- {
- public class WcsAgvCmdResult
- {
- public int AGV_CMD_ID { get; set; }
- public string NEWID { get; set; }
- public int TASK_NO { get; set; }
- public int CMD_NO { get; set; }
- public string TRAY_CODE { get; set; }
- public string PALLET_CODE { get; set; }
- public int TRAY_STATUS { get; set; }
- public string TRAY_STATUS_NAME { get; set; }
- public string AGV_DEV_NO { get; set; }
- public string SLOC_NO { get; set; }
- public string SPLC_NO { get; set; }
- public string ELOC_NO { get; set; }
- public string EPLC_NO { get; set; }
- public string CMD_TYPE { get; set; }
- public string CMD_TYPE_NAME { get; set; }
- public int ACTIVE_TYPE { get; set; }
- public string ACTIVE_TYPE_NAME { get; set; }
- public int CMD_PRIORITY { get; set; }
- public int CMD_STATUS { get; set; }
- public string CMD_STATUS_NAME { get; set; }
- public string CMD_LOG { get; set; }
- public int ERR_FLAG { get; set; }
- public string ERR_FLAG_NAME { get; set; }
- public string ERR_LOG { get; set; }
- public DateTime EXECUTE_TIME { get; set; }
- public DateTime FINISH_TIME { get; set; }
- public int CREATE_BY { get; set; }
- public string CREATE_NAME { get; set; }
- public DateTime CREATE_TIME { get; set; }
- public int UPDATE_BY { get; set; }
- public string UPDATE_NAME { get; set; }
- public DateTime UPDATE_TIME { get; set; }
- public int DATA_VERSION { get; set; }
- public string REMARKS1 { get; set; }
- public string REMARKS2 { get; set; }
- public string REMARKS3 { get; set; }
- public string REMARKS4 { get; set; }
- public string REMARKS5 { get; set; }
- }
- }
|