|
@@ -19,6 +19,9 @@ public class Aircraft1Entity {
|
|
|
@Property(name = "aircraft_describe")
|
|
|
private String aircraftDescribe;
|
|
|
|
|
|
+// @Property(name = "mysql_id")
|
|
|
+// private Integer mysqlId;
|
|
|
+
|
|
|
public Aircraft1Entity() {
|
|
|
}
|
|
|
|
|
@@ -26,6 +29,8 @@ public class Aircraft1Entity {
|
|
|
this.id = id;
|
|
|
this.aircraftType = aircraftType;
|
|
|
this.aircraftDescribe = aircraftDescribe;
|
|
|
+// this.mysqlId = mysqlId;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
public Long getId() {
|
|
@@ -52,6 +57,14 @@ public class Aircraft1Entity {
|
|
|
this.aircraftDescribe = aircraftDescribe;
|
|
|
}
|
|
|
|
|
|
+// public Integer getMysqlId() {
|
|
|
+// return mysqlId;
|
|
|
+// }
|
|
|
+//
|
|
|
+// public void setMysqlId(Integer mysqlId) {
|
|
|
+// this.mysqlId = mysqlId;
|
|
|
+// }
|
|
|
+
|
|
|
|
|
|
|
|
|
// @Override
|