机型组 字段格式修正

This commit is contained in:
fanghongchao
2018-12-11 10:08:50 +08:00
parent 0f7a0e6f51
commit 5ffdc23d61
4 changed files with 45 additions and 44 deletions
@@ -48,7 +48,7 @@ public class SysAircrafttype {
private BigDecimal aircraftWidth; //飞机宽度(翼展宽度) private BigDecimal aircraftWidth; //飞机宽度(翼展宽度)
@Column(name="AIRCRAFTTYPEGROUP_ID") @Column(name="AIRCRAFTTYPEGROUP_ID")
private BigDecimal aircrafttypegroupId; //机型组记录ID private BigDecimal aircraftTypeGroupId; //机型组记录ID
private String chap; //机型分类 private String chap; //机型分类
@@ -135,14 +135,6 @@ public class SysAircrafttype {
this.aircraftWidth = aircraftWidth; this.aircraftWidth = aircraftWidth;
} }
public BigDecimal getAircrafttypegroupId() {
return this.aircrafttypegroupId;
}
public void setAircrafttypegroupId(BigDecimal aircrafttypegroupId) {
this.aircrafttypegroupId = aircrafttypegroupId;
}
public String getChap() { public String getChap() {
return this.chap; return this.chap;
} }
@@ -199,4 +191,12 @@ public class SysAircrafttype {
this.transitstoptime = transitstoptime; this.transitstoptime = transitstoptime;
} }
public BigDecimal getAircraftTypeGroupId() {
return aircraftTypeGroupId;
}
public void setAircraftTypeGroupId(BigDecimal aircraftTypeGroupId) {
this.aircraftTypeGroupId = aircraftTypeGroupId;
}
} }
@@ -24,36 +24,36 @@ public class SysAircrafttypeGroup {
@SequenceGenerator(name="SYS_AIRCRAFTTYPEGROUP_ID_GENERATOR", sequenceName="SYS_AIRCRAFTTYPEGROUP_ID") @SequenceGenerator(name="SYS_AIRCRAFTTYPEGROUP_ID_GENERATOR", sequenceName="SYS_AIRCRAFTTYPEGROUP_ID")
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator="SYS_AIRCRAFTTYPEGROUP_ID_GENERATOR") @GeneratedValue(strategy=GenerationType.SEQUENCE, generator="SYS_AIRCRAFTTYPEGROUP_ID_GENERATOR")
@Column(name="AIRCRAFTTYPEGROUP_ID") @Column(name="AIRCRAFTTYPEGROUP_ID")
private Long aircrafttypeGroupId; //机型组记录ID private Long aircraftTypeGroupId; //机型组记录ID
@Column(name="AIRCRAFTTYPEGROUP_CODE") @Column(name="AIRCRAFTTYPEGROUP_CODE")
private String aircrafttypeGroupCode; //机型组代码 private String aircraftTypeGroupCode; //机型组代码
@Column(name="AIRCRAFTTYPEGROUP_NAME") @Column(name="AIRCRAFTTYPEGROUP_NAME")
private String aircrafttypeGroupName; //机型组名称 private String aircraftTypeGroupName; //机型组名称
public Long getAircrafttypeGroupId() { public Long getAircraftTypeGroupId() {
return aircrafttypeGroupId; return aircraftTypeGroupId;
} }
public void setAircrafttypeGroupId(Long aircrafttypeGroupId) { public void setAircraftTypeGroupId(Long aircraftTypeGroupId) {
this.aircrafttypeGroupId = aircrafttypeGroupId; this.aircraftTypeGroupId = aircraftTypeGroupId;
} }
public String getAircrafttypeGroupCode() { public String getAircraftTypeGroupCode() {
return aircrafttypeGroupCode; return aircraftTypeGroupCode;
} }
public void setAircrafttypeGroupCode(String aircrafttypeGroupCode) { public void setAircraftTypeGroupCode(String aircraftTypeGroupCode) {
this.aircrafttypeGroupCode = aircrafttypeGroupCode; this.aircraftTypeGroupCode = aircraftTypeGroupCode;
} }
public String getAircrafttypeGroupName() { public String getAircraftTypeGroupName() {
return aircrafttypeGroupName; return aircraftTypeGroupName;
} }
public void setAircrafttypeGroupName(String aircrafttypeGroupName) { public void setAircraftTypeGroupName(String aircraftTypeGroupName) {
this.aircrafttypeGroupName = aircrafttypeGroupName; this.aircraftTypeGroupName = aircraftTypeGroupName;
} }
} }
@@ -32,7 +32,7 @@ public class SysAircrafttypeDto {
private BigDecimal aircraftWidth; private BigDecimal aircraftWidth;
@ApiModelProperty(value="机型组记录ID",example="15235001") @ApiModelProperty(value="机型组记录ID",example="15235001")
private BigDecimal aircrafttypegroupId; private BigDecimal aircraftTypeGroupId;
@ApiModelProperty(value="机型分类",example="C") @ApiModelProperty(value="机型分类",example="C")
private String chap; private String chap;
@@ -119,12 +119,12 @@ public class SysAircrafttypeDto {
this.aircraftWidth = aircraftWidth; this.aircraftWidth = aircraftWidth;
} }
public BigDecimal getAircrafttypegroupId() { public BigDecimal getAircraftTypeGroupId() {
return this.aircrafttypegroupId; return aircraftTypeGroupId;
} }
public void setAircrafttypegroupId(BigDecimal aircrafttypegroupId) { public void setAircraftTypeGroupId(BigDecimal aircraftTypeGroupId) {
this.aircrafttypegroupId = aircrafttypegroupId; this.aircraftTypeGroupId = aircraftTypeGroupId;
} }
public String getChap() { public String getChap() {
@@ -7,36 +7,37 @@ import io.swagger.annotations.ApiModelProperty;
public class SysAircrafttypeGroupDto { public class SysAircrafttypeGroupDto {
@ApiModelProperty(value="机型组记录ID",example="15235001") @ApiModelProperty(value="机型组记录ID",example="15235001")
private Long aircrafttypeGroupId; //机型组记录ID private Long aircraftTypeGroupId; //机型组记录ID
@ApiModelProperty(value="机型组代码",example="AB") @ApiModelProperty(value="机型组代码",example="AB")
private String aircrafttypeGroupCode; //机型组代码 private String aircraftTypeGroupCode; //机型组代码
@ApiModelProperty(value="机型组名称",example="AB类") @ApiModelProperty(value="机型组名称",example="AB类")
private String aircrafttypeGroupName; //机型组名称 private String aircraftTypeGroupName; //机型组名称
public Long getAircrafttypeGroupId() { public Long getAircraftTypeGroupId() {
return aircrafttypeGroupId; return aircraftTypeGroupId;
} }
public void setAircrafttypeGroupId(Long aircrafttypeGroupId) { public void setAircraftTypeGroupId(Long aircraftTypeGroupId) {
this.aircrafttypeGroupId = aircrafttypeGroupId; this.aircraftTypeGroupId = aircraftTypeGroupId;
} }
public String getAircrafttypeGroupCode() { public String getAircraftTypeGroupCode() {
return aircrafttypeGroupCode; return aircraftTypeGroupCode;
} }
public void setAircrafttypeGroupCode(String aircrafttypeGroupCode) { public void setAircraftTypeGroupCode(String aircraftTypeGroupCode) {
this.aircrafttypeGroupCode = aircrafttypeGroupCode; this.aircraftTypeGroupCode = aircraftTypeGroupCode;
} }
public String getAircrafttypeGroupName() { public String getAircraftTypeGroupName() {
return aircrafttypeGroupName; return aircraftTypeGroupName;
} }
public void setAircrafttypeGroupName(String aircrafttypeGroupName) { public void setAircraftTypeGroupName(String aircraftTypeGroupName) {
this.aircrafttypeGroupName = aircrafttypeGroupName; this.aircraftTypeGroupName = aircraftTypeGroupName;
} }
} }