|  |  | 
 |  |  | package com.zy.system.mapper; | 
 |  |  |  | 
 |  |  | import com.zy.system.entity.SaasLog; | 
 |  |  | import com.baomidou.mybatisplus.mapper.BaseMapper; | 
 |  |  | import com.zy.system.entity.SaasLog; | 
 |  |  | import org.apache.ibatis.annotations.Mapper; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  | import org.springframework.stereotype.Repository; | 
 |  |  |  | 
 |  |  | import java.util.ArrayList; | 
 |  |  | import java.util.Date; | 
 |  |  |  | 
 |  |  | @Mapper | 
 |  |  | @Repository | 
 |  |  | public interface SaasLogMapper extends BaseMapper<SaasLog> { | 
 |  |  |     /** | 
 |  |  |      * 分组统计日志详情 | 
 |  |  |      * @param sDate | 
 |  |  |      * @param eDate | 
 |  |  |      * @param type | 
 |  |  |      * @param owner | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     ArrayList<SaasLog> selectListSummary(@Param("sDate") Date sDate, @Param("eDate") Date eDate | 
 |  |  |                                          , @Param("type") String type, @Param("owner") String owner); | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 分组统计主体小计 | 
 |  |  |      * @param owner | 
 |  |  |      * @param sDate | 
 |  |  |      * @param eDate | 
 |  |  |      * @param type | 
 |  |  |      * @return | 
 |  |  |      */ | 
 |  |  |     ArrayList<SaasLog> selectListSummaryBySubtotal(@Param("owner") String owner,@Param("sDate") Date sDate,@Param("eDate") Date eDate | 
 |  |  |                                         ,@Param("type") String type); | 
 |  |  | } |