Windpowerstation.java 774 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.gyee.table.entity;
  2. import lombok.Data;
  3. import javax.persistence.Table;
  4. /**
  5. * @author hlf
  6. * @date 2023/3/16 17:05
  7. * 文件说明:
  8. */
  9. @Data
  10. @Table(name="windpowerstation")
  11. public class Windpowerstation {
  12. private String id;
  13. private String code;
  14. private String name;
  15. private String address;
  16. private String telephone;
  17. private Double capacity;
  18. private String capacityunit;
  19. private Integer quantity;
  20. private String aname;
  21. private Double longitude;
  22. private Double latitude;
  23. private String photo;
  24. private String companyid;
  25. private String systemmanufact;
  26. private String headfarm;
  27. private String headfarmphone;
  28. private String model;
  29. private Integer ordernum;
  30. private Double altitude;
  31. }