OperationLogDao.java 562 B

123456789101112131415161718192021
  1. package com.welampiot.dao;
  2. import com.welampiot.dto.OperationLogDTO;
  3. import com.welampiot.vo.OperationLogVO;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. public interface OperationLogDao {
  7. List<OperationLogDTO> getListByVO(OperationLogVO operationLogVO);
  8. List<OperationLogDTO> getLogListByVO(OperationLogVO vo);
  9. Integer getLogTotalByUserId(OperationLogVO vo);
  10. Integer getUserIdByUsername(OperationLogVO vo);
  11. Integer getRoleByUsername(OperationLogVO vo);
  12. Integer deleteLogListById(@Param("id") Integer id);
  13. }