机型组 字段名变更修正

This commit is contained in:
fanghongchao
2018-12-11 09:57:08 +08:00
parent 50acb4d907
commit 0f7a0e6f51
2 changed files with 31 additions and 33 deletions
@@ -24,37 +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;
} }
} }
@@ -7,37 +7,36 @@ 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;
} }
} }