| 123456789101112131415161718192021 |
- package com.welampiot.dao;
- import com.welampiot.dto.OperationLogDTO;
- import com.welampiot.vo.OperationLogVO;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- public interface OperationLogDao {
- List<OperationLogDTO> getListByVO(OperationLogVO operationLogVO);
- List<OperationLogDTO> getLogListByVO(OperationLogVO vo);
- Integer getLogTotalByUserId(OperationLogVO vo);
- Integer getUserIdByUsername(OperationLogVO vo);
- Integer getRoleByUsername(OperationLogVO vo);
- Integer deleteLogListById(@Param("id") Integer id);
- }
|