123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Result.WmsTask
- {
- public class WcsCrnCmdResult
- {
- public int CRN_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 CRN_DEV_NO { get; set; }
- public string CRN_FORK_DEV_NO { get; set; }
- public string SBIN_NO { get; set; }
- public int SBIN_ROW { get; set; }
- public int SBIN_COL { get; set; }
- public int SBIN_LAYER { get; set; }
- public string S_EXTENSION_GROUP { get; set; }
- public int S_EXTENSION_IDX { get; set; }
- public string EBIN_NO { get; set; }
- public int EBIN_ROW { get; set; }
- public int EBIN_COL { get; set; }
- public int EBIN_LAYER { get; set; }
- public string E_EXTENSION_GROUP { get; set; }
- public int E_EXTENSION_IDX { 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; }
- }
- }
|