first commit
This commit is contained in:
24
src/main/java/com/peanut/modules/sys/dao/SysLogDao.java
Normal file
24
src/main/java/com/peanut/modules/sys/dao/SysLogDao.java
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* Copyright (c) 2016-2019 人人开源 All rights reserved.
|
||||
*
|
||||
* https://www.renren.io
|
||||
*
|
||||
* 版权所有,侵权必究!
|
||||
*/
|
||||
|
||||
package com.peanut.modules.sys.dao;
|
||||
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.peanut.modules.sys.entity.SysLogEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* 系统日志
|
||||
*
|
||||
* @author Mark sunlightcs@gmail.com
|
||||
*/
|
||||
@Mapper
|
||||
public interface SysLogDao extends BaseMapper<SysLogEntity> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user