mybatis BigDecimal Double Long 的坑爹事
写接口的时候别用
public Map<String,Double> selectForRealRemainer(Orders orders);
用这样就行
public Map<String,Number> selectForYestoday(Map<String,String> params);
拿值的话类似这样就行了
map.get("xxx").doubleValue();
map.get("xxx").longValue();
...