| package com.moral.api.service; | 
|   | 
| import com.moral.api.entity.ManageLog; | 
| import com.baomidou.mybatisplus.extension.service.IService; | 
| import com.moral.api.pojo.dto.manageLog.ManageLogQueryDTO; | 
| import com.moral.api.pojo.form.manageLog.ManageLogQueryForm; | 
|   | 
| /** | 
|  * <p> | 
|  * 后台操作日志表 服务类 | 
|  * </p> | 
|  * | 
|  * @author moral | 
|  * @since 2021-04-12 | 
|  */ | 
| public interface ManageLogService extends IService<ManageLog> { | 
|     ManageLogQueryDTO queryManageLog(ManageLogQueryForm form); | 
| } |