123456789101112131415161718192021222324252627282930313233343536 |
- package com.gyee.table.entity;
- import lombok.Data;
- import javax.persistence.Table;
- /**
- * @author hlf
- * @date 2023/3/16 17:05
- * 文件说明:
- */
- @Data
- @Table(name="windpowerstation")
- public class Windpowerstation {
- private String id;
- private String code;
- private String name;
- private String address;
- private String telephone;
- private Double capacity;
- private String capacityunit;
- private Integer quantity;
- private String aname;
- private Double longitude;
- private Double latitude;
- private String photo;
- private String companyid;
- private String systemmanufact;
- private String headfarm;
- private String headfarmphone;
- private String model;
- private Integer ordernum;
- private Double altitude;
- }
|