package com.example.demo.service; import com.baomidou.mybatisplus.extension.service.IService; import com.example.demo.domain.Operatelog; /** * @author adanm * @description 针对表【OPERATELOG】的数据库操作Service * @createDate 2023-09-10 13:43:26 */ public interface OperatelogService extends IService { /** * 添加日志到后端 * * @param ouser 方法待定 * @param otype * @param ocontent * @return */ Boolean addlogBack(String ouser, String otype, String ocontent); }