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 getListByVO(OperationLogVO operationLogVO); List getLogListByVO(OperationLogVO vo); Integer getLogTotalByUserId(OperationLogVO vo); Integer getUserIdByUsername(OperationLogVO vo); Integer getRoleByUsername(OperationLogVO vo); Integer deleteLogListById(@Param("id") Integer id); }