在我的数据库中,我有类似的列
"ISDEFAULTPAYMENTFORCURRENCY" CHAR(1 BYTE) NOT NULL ENABLE,
CHECK (ISDEFAULTPAYMENTFORCURRENCY IN ('N','Y')) ENABLE,
在我的豆子里,我有
private Boolean isDefaultPaymentForCurrency;
我的问题,我怎样才能isDefaultPaymentForCurrency
在hibernate hbm文件中映射它?
<property name="isDefaultPaymentForCurrency" type="???" column="ISDEFAULTPAYMENTFORCURRENCY" not-null="true"/>