你现在看到的就是用户的操作行为了呢
目前就只是,查看,导出,打印这三个行为呀
自己参考着改:
select displayName,tname,count(type) from fine_record_execute
where todate(time)>='${start} 00:00:00'
and todate(time)<='${end} 23:59:59'
and type<=3
/*报表名称,模糊查询*/
${if(len(tname)==0,"","and tname like '"+tname+"%'")}
/*对应的人员,模糊查询*/
${if(len(czyh)=0,"","and username in('"+czyh+"')")}
GROUP BY displayName,tname
order by displayName desc