123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.Model.AppModels.View.Common
- {
- /// <summary>
- /// 组盘码视图
- /// </summary>
- public class TrayView
- {
- public string TrayCode { get; set; }
- public string PalletCode { get; set; }
- public string TraysType { get; set; }
- public string TrayLoadedType { get; set; }
- public string TrayStatus { get; set; }
- public string MaterielCode { get; set; }
- public string QTY { get; set; }
- public string TrayDtlStatus { get; set; }
- public string MaterielSpec { get; set; }
- public string PackageCode { get; set; }
- public string UnitCode { get; set; }
- public string BatchNo { get; set; }
- public string SupplierCode { get; set; }
- public string SupplierName { get; set; }
- public string ProductDate { get; set; }
- public string ExpDate { get; set; }
- public string QualityStatus { get; set; }
- public string ItemStatus { get; set; }
- public string EctendTimeLen { get; set; }
- public string LockFlag { get; set; }
- public string InspectionResult { get; set; }
- }
- }
|