mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-08 04:08:19 +00:00
HHH-17460 - Ongoing JPA 32 work
This commit is contained in:
parent
707c4f59d7
commit
3c177df4f5
@ -33,7 +33,7 @@ public void testManyToOneFromNonPk(SessionFactoryScope scope) {
|
||||
scope.inTransaction( (session) -> {
|
||||
Menu menu = new Menu();
|
||||
menu.setOrderNbr( "123" );
|
||||
menu.setDefault( "F" );
|
||||
menu.setIsDefault( "F" );
|
||||
session.persist( menu );
|
||||
FoodItem foodItem = new FoodItem();
|
||||
foodItem.setItem( "Mouse" );
|
||||
|
@ -33,12 +33,12 @@ public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
@Column(name="is_default")
|
||||
public String isDefault() {
|
||||
@Column(name="is_default")
|
||||
public String getIsDefault() {
|
||||
return isDefault;
|
||||
}
|
||||
|
||||
public void setDefault(String isDefault) {
|
||||
public void setIsDefault(String isDefault) {
|
||||
this.isDefault = isDefault;
|
||||
}
|
||||
|
||||
|
@ -39,9 +39,10 @@ public void setCompanyId(int companyId) {
|
||||
this.companyId = companyId;
|
||||
}
|
||||
@Column(name="is_default")
|
||||
public String isDefaultFlag() {
|
||||
public String getDefaultFlag() {
|
||||
return defaultFlag;
|
||||
}
|
||||
|
||||
public void setDefaultFlag(String defaultFlag) {
|
||||
this.defaultFlag = defaultFlag;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user