1
2
3
4
5
6
7
8
9
10
11
12
| package com.sandu.common.log;
|
| import com.sandu.common.domain.BaseMapper;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @author chenjiantian
| * @date 2021/7/20 14:53
| */
| @Mapper
| public interface LogDao extends BaseMapper<AccessLog> {
| }
|
|