package com.flow.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.flow.pojo.Duanxinlog; import com.flow.pojo.OperationLog; import org.apache.ibatis.annotations.Select; import java.util.List; public interface OperationLogMapper extends BaseMapper { @Select({"select * from operatio_log where none = 0 ORDER BY caozuodate DESC"}) List FindOperationLog(); }