BasShelfMd.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NX_ModelClassLibrary.BaseModel
  7. {
  8. public class BasShelfMd
  9. {
  10. public int ShelfId { get; set; }
  11. public string Newid { get; set; }
  12. public string ShelfCode { get; set; }
  13. public string ShelfName { get; set; }
  14. public int ShelfIdx { get; set; }
  15. public string RegionCode { get; set; }
  16. public int RowSize { get; set; }
  17. public int ColSize { get; set; }
  18. public int LayerSize { get; set; }
  19. public string DevCode { get; set; }
  20. public int UsedFlag { get; set; }
  21. public int DelFlag { get; set; }
  22. public int CreateBy { get; set; }
  23. public DateTime CreateTime { get; set; }
  24. public int UpdateBy { get; set; }
  25. public DateTime UpdateTime { get; set; }
  26. public int DataVersion { get; set; }
  27. public string Remarks1 { get; set; }
  28. public string Remarks2 { get; set; }
  29. public string Remarks3 { get; set; }
  30. public string Remarks4 { get; set; }
  31. public string Remarks5 { get; set; }
  32. }
  33. }