荣鑫后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
583 B

5 years ago
  1. package com.gaotao.modules.toolman.entity;
  2. import lombok.Data;
  3. /**
  4. * @Auther: Zuowenwen
  5. * @Date:2021/07/07 10:30
  6. * @Description: //TODO 描述
  7. */
  8. /**
  9. * 库位表
  10. */
  11. @Data
  12. public class Location {
  13. /**
  14. * 库位id
  15. */
  16. private String locationid;
  17. /**
  18. * 工厂编码
  19. */
  20. private String site;
  21. /**
  22. * 库位名称
  23. */
  24. private String locationname;
  25. /**
  26. * 仓库id
  27. */
  28. private String warehouseid;
  29. /**
  30. * 管理人
  31. */
  32. private String keeper;
  33. /**
  34. * 是否启用
  35. */
  36. private String active;
  37. }