package com.zy.system.mapper;
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
import com.zy.system.entity.OperateLog;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Select;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
import java.util.Map;
|
|
@Mapper
|
@Repository
|
public interface OperateLogMapper extends BaseMapper<OperateLog> {
|
|
@Select("select count(1) from \"SOURCE\".\"sys_operate_log\" where yearweek(date_format(CREATE_TIME,'%Y-%m-%d')) = yearweek(now());")
|
int selectCountByCurrentWeek();
|
|
@Select("select MONTH(CREATE_TIME) as node , count(1) as val from \"SOURCE\".\"sys_operate_log\" where 1 = 1 and year(CREATE_TIME) = #{year} group by MONTH(CREATE_TIME)")
|
List<Map<String, Object>> getReportByYear(@Param("year") Integer year);
|
|
@Select("select DAYOFMONTH(CREATE_TIME) as node,count(1) as val from \"SOURCE\".\"sys_operate_log\" where 1 = 1 and year(CREATE_TIME) = #{year} and month(CREATE_TIME) = #{month} group by DAYOFMONTH(CREATE_TIME)")
|
List<Map<String, Object>> getReportByMonth(@Param("year") Integer year, @Param("month") Integer month);
|
|
}
|