oracle中表的字段类型为number,在生成映射文件时会自动转化成BigDecimal ,如何才能转化成int类型呢
BigDecimal b=new BigDecimal(100); int a=b.intValue();