|
@@ -1,6 +1,7 @@
|
|
package com.gyee.backconfig.model.auto;
|
|
package com.gyee.backconfig.model.auto;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.EqualsAndHashCode;
|
|
@@ -22,50 +23,73 @@ public class Region extends Model {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
+ @TableId("ID")
|
|
private String id;
|
|
private String id;
|
|
|
|
|
|
|
|
+ @TableField("COMPANYID")
|
|
private String companyid;
|
|
private String companyid;
|
|
|
|
|
|
|
|
+ @TableField("NAME")
|
|
private String name;
|
|
private String name;
|
|
|
|
|
|
|
|
+ @TableField("ANAME")
|
|
private String aname;
|
|
private String aname;
|
|
|
|
|
|
|
|
+ @TableField("WINDCAPACITY")
|
|
private Integer windcapacity;
|
|
private Integer windcapacity;
|
|
|
|
|
|
|
|
+ @TableField("WINDCAPACITYUNIT")
|
|
private String windcapacityunit;
|
|
private String windcapacityunit;
|
|
|
|
|
|
|
|
+ @TableField("WINDQUANTITY")
|
|
private Integer windquantity;
|
|
private Integer windquantity;
|
|
|
|
|
|
|
|
+ @TableField("CAPACITY")
|
|
private Double capacity;
|
|
private Double capacity;
|
|
|
|
|
|
|
|
+ @TableField("CAPACITYUNIT")
|
|
private String capacityunit;
|
|
private String capacityunit;
|
|
|
|
|
|
|
|
+ @TableField("QUANTITYJZ")
|
|
private Integer quantityjz;
|
|
private Integer quantityjz;
|
|
|
|
|
|
|
|
+ @TableField("QUANTITYZC")
|
|
private Integer quantityzc;
|
|
private Integer quantityzc;
|
|
|
|
|
|
|
|
+ @TableField("JRWINDCAPACITY")
|
|
private Integer jrwindcapacity;
|
|
private Integer jrwindcapacity;
|
|
|
|
|
|
|
|
+ @TableField("JRWINDCAPACITYUNIT")
|
|
private String jrwindcapacityunit;
|
|
private String jrwindcapacityunit;
|
|
|
|
|
|
|
|
+ @TableField("JRWINDQUANTITY")
|
|
private Integer jrwindquantity;
|
|
private Integer jrwindquantity;
|
|
|
|
|
|
|
|
+ @TableField("JRCAPACITY")
|
|
private Integer jrcapacity;
|
|
private Integer jrcapacity;
|
|
|
|
|
|
|
|
+ @TableField("JRCAPACITYUNIT")
|
|
private String jrcapacityunit;
|
|
private String jrcapacityunit;
|
|
|
|
|
|
|
|
+ @TableField("JRQUANTITYJZ")
|
|
private Integer jrquantityjz;
|
|
private Integer jrquantityjz;
|
|
|
|
|
|
|
|
+ @TableField("JRQUANTITYZC")
|
|
private Integer jrquantityzc;
|
|
private Integer jrquantityzc;
|
|
|
|
|
|
|
|
+ @TableField("ORDERNUM")
|
|
private Integer ordernum;
|
|
private Integer ordernum;
|
|
|
|
|
|
|
|
+ @TableField("WINDNUMBER")
|
|
private Integer windnumber;
|
|
private Integer windnumber;
|
|
|
|
|
|
|
|
+ @TableField("NUMBER")
|
|
private Integer number;
|
|
private Integer number;
|
|
|
|
|
|
|
|
+ @TableField("JRWINDNUMBER")
|
|
private Integer jrwindnumber;
|
|
private Integer jrwindnumber;
|
|
|
|
|
|
|
|
+ @TableField("JRNUMBER")
|
|
private Integer jrnumber;
|
|
private Integer jrnumber;
|
|
|
|
|
|
@TableField(exist = false)
|
|
@TableField(exist = false)
|