12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Result.WmsTask
- {
- public class WmsTaskResult
- {
- public int TASK_ID { get; set; }
- public string NEWID { get; set; }
- public string WAREHOUSE_CODE { get; set; }
- public string WAREHOUSE_NAME { 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_LOADED_TYPE { get; set; }
- public string TRAY_LOADED_TYPE_NAME { get; set; }
- public string SLOC_CODE { get; set; }
- public string ELOC_CODE { get; set; }
- public string CLOC_CODE { get; set; }
- public int TASK_TYPE { get; set; }
- public string TASK_TYPE_NAME { get; set; }
- public string TASK_MSG { get; set; }
- public int ERR_FLAG { get; set; }
- public string ERR_FLAG_NAME { get; set; }
- public int TASK_PRIORITY { get; set; }
- public int TASK_STATUS { get; set; }
- public string TASK_STATUS_NAME { get; set; }
- public string SBIN_CODE { get; set; }
- public string EBIN_CODE { get; set; }
- public string ROUTE_CODE { 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; }
- }
- }
|