kaiyu
2021-04-12 827ac521835b2c581e1134bb2e865bfcb7778be7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.moral.api.service.impl;
 
import com.moral.api.entity.ManageLog;
import com.moral.api.mapper.ManageLogMapper;
import com.moral.api.pojo.dto.system.ManageLogQueryDTO;
import com.moral.api.pojo.form.system.ManageLogQueryForm;
import com.moral.api.service.ManageLogService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 后台操作日志表 服务实现类
 * </p>
 *
 * @author moral
 * @since 2021-04-12
 */
@Service
public class ManageLogServiceImpl extends ServiceImpl<ManageLogMapper, ManageLog> implements ManageLogService {
 
    @Override
    public ManageLogQueryDTO queryManageLog(ManageLogQueryForm form) {
        return null;
    }
}