cjl
2023-11-15 783d1706ab3e943fd79b52f566e6ed8e42abfea5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.moral.api.service;
 
import com.moral.api.entity.ManageLog;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * <p>
 * 后台操作日志表 服务类
 * </p>
 *
 * @author moral
 * @since 2021-04-13
 */
public interface ManageLogService extends IService<ManageLog> {
 
}