inseriti campi cod_linea, cod_slinea, cod_sslinea nella entity mtb_aart
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good
This commit is contained in:
@@ -313,6 +313,15 @@ public class MtbAart extends EntityBase implements EquatableEntityInterface<MtbA
|
||||
@SqlField(value = "cod_mssfa", maxLength = 6)
|
||||
private String codMssfa;
|
||||
|
||||
@SqlField(value = "cod_linea", maxLength = 6)
|
||||
private String codLinea;
|
||||
|
||||
@SqlField(value = "cod_slinea", maxLength = 6)
|
||||
private String codSlinea;
|
||||
|
||||
@SqlField(value = "cod_sslinea", maxLength = 6)
|
||||
private String codSslinea;
|
||||
|
||||
@Priority(1)
|
||||
private MtbAartMarchio mtbAartMarchio;
|
||||
|
||||
@@ -1340,6 +1349,33 @@ public class MtbAart extends EntityBase implements EquatableEntityInterface<MtbA
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getCodLinea() {
|
||||
return codLinea;
|
||||
}
|
||||
|
||||
public MtbAart setCodLinea(String codLinea) {
|
||||
this.codLinea = codLinea;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getCodSlinea() {
|
||||
return codSlinea;
|
||||
}
|
||||
|
||||
public MtbAart setCodSlinea(String codSlinea) {
|
||||
this.codSlinea = codSlinea;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getCodSslinea() {
|
||||
return codSslinea;
|
||||
}
|
||||
|
||||
public MtbAart setCodSslinea(String codSslinea) {
|
||||
this.codSslinea = codSslinea;
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void updateChilds() throws Exception {
|
||||
insertChilds();
|
||||
|
||||
Reference in New Issue
Block a user