123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.warewms.system.service;
- import java.util.List;
- import com.warewms.system.domain.SysOperLog;
- public interface ISysOperLogService
- {
-
- public void insertOperlog(SysOperLog operLog);
-
- public List<SysOperLog> selectOperLogList(SysOperLog operLog);
-
- public int deleteOperLogByIds(Long[] operIds);
-
- public SysOperLog selectOperLogById(Long operId);
-
- public void cleanOperLog();
- }
|