123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NX_ModelClassLibrary.WmsBalance
- {
- public class WmsTrayMd
- {
- public int TrayId { get; set; }
- public string Newid { get; set; }
- public string TrayCode { get; set; }
- public string PalletCode { get; set; }
- public decimal Weight { get; set; }
- public decimal Height { get; set; }
- public int TraysType { get; set; }
- public string TraysTypeName { get; set; }
- public int TrayLoadedType { get; set; }
- public string TrayLoadedTypeName { get; set; }
- public int TrayStatus { get; set; }
- public string TrayStatusName { get; set; }
- public string Describe { get; set; }
- public int CreateBy { get; set; }
- public string CreateName { get; set; }
- public DateTime CreateTime { get; set; }
- public int UpdateBy { get; set; }
- public string UpdateName { get; set; }
- public DateTime UpdateTime { get; set; }
- public int DataVersion { 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; }
- public List<WmsTrayDtlMd> TrayDtls = new List<WmsTrayDtlMd>();
- }
- }
|