mybatis 如何返回list<map<string,object>>

2024年12月05日 00:52
有2个网友回答
网友(1):

Mapper里面返回List,就是说Mapper里面的方法声明是
public List
dao、service层也作相应修改,改为返回List>




public interface OnlineStatMapper {
public List> selectOnlineRateCurrent();
}

网友(2):

拆分:将map拆分成List结构,KeyValue: String, Object