init:米东项目初始化
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.saye.hospitalgd.mapper.system;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import com.saye.hospitalgd.model.Logger;
|
||||
|
||||
@Repository
|
||||
public interface LoggerMapper {
|
||||
|
||||
/**
|
||||
* @description 查询所有日志
|
||||
* @author thuang
|
||||
* @created 2019年11月14日 下午2:06:22
|
||||
* @param map
|
||||
* @return
|
||||
*/
|
||||
public List<Logger> findLoggers(HashMap<Object, Object> map);
|
||||
|
||||
|
||||
public void addLog(HashMap<Object, Object> map) throws Exception;
|
||||
}
|
||||
Reference in New Issue
Block a user