123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.Result.Balance
- {
- public class WmsStkTrayDtlExtResult
- {
- public int TRAY_DTL_EXT_ID { get; set; }
- public string NEWID { get; set; }
- public int TRAY_DTL_ID { get; set; }
- public int TRAY_ID { get; set; }
- public string TRAY_CODE { get; set; }
- public string PALLET_CODE { get; set; }
- public string MATERIEL_SPEC { get; set; }
- public string PACKAGE_CODE { get; set; }
- public string UNIT_CODE { get; set; }
- public string BATCH_NO { get; set; }
- public string SUPPLIER_CODE { get; set; }
- public string SUPPLIER_NAME { get; set; }
- public DateTime PRODUCT_DATE { get; set; }
- public DateTime EXP_DATE { get; set; }
- public string INSPECTION_RESULT { get; set; }
- public string INSPECTION_RESULT_NAME { get; set; }
- public int ITEM_STATUS { get; set; }
- public string ITEM_STATUS_NAME { get; set; }
- public int LOCK_FLAG { get; set; }
- public decimal MIN_PKG_QTY { get; set; }
- public int ECTEND_TIME_LEN { get; set; }
- public string SUPPLIER_BATCH { get; set; }
- public string DESCRIBE { 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; }
- }
- }
|