荣鑫后端
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.

32 lines
722 B

  1. package com.gaotao.modules.pda.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import lombok.AllArgsConstructor;
  4. import lombok.Data;
  5. import lombok.NoArgsConstructor;
  6. import org.springframework.data.annotation.Id;
  7. /**
  8. * @author lirui
  9. * @ClassName: WareHouse
  10. * @Description: 仓库实体类
  11. * @date 2018年3月30日
  12. */
  13. @AllArgsConstructor
  14. @NoArgsConstructor
  15. @Data
  16. public class WareHouse {
  17. private String Site;
  18. private String WareHouseID;
  19. private String WareHouseName;
  20. private String Active;
  21. private String WareHouseType;
  22. private String WareHouseType_DB;
  23. private String Keeper;
  24. private String CompanyID;
  25. private String ValidStock;
  26. private String UseLocation;
  27. }