@Select("select t1.*,t2.name as provideName,t3.name as brandName from customerActionNote as t1 ,user as t2,brand as t3 WHERE t1.provideId = t2.id and t1.brandId = t3.id")
IPage<Map>pageList(IPagepage);
@Select("<script> "+
"select t1.*,t2.name as provideName,t3.name as brandName\n"+
" from customerActionNote as t1 left JOIN brand AS t3 on t1.brandId = t3.id,\n"+