hjstocktemp.cs 554 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.hj
  5. {
  6. public class hjstocktemp
  7. {
  8. public string Code { get; set; }
  9. public long Id { get; set; }
  10. public int Row { get; set; }
  11. public int Col { get; set; }
  12. public int Layer { get; set; }
  13. public int Tunnel { get; set; }
  14. public string ContGrpBarCode { get; set; }
  15. public string Shelf { get; set; }
  16. public string MatCode { get; set; }
  17. public long MatId { get; set; }
  18. }
  19. }