1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.matrix.system.common.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.matrix.system.common.bean.OperationLog;
|
| /**
| * @description 单据操作记录
| * @author jyy
| * @date 2021-03-10 15:22
| */
| public interface OperationLogDao extends BaseMapper<OperationLog> {
|
|
|
| }
|
|