fei.wang
2024-04-15 61747a14819075bf6da2c1597b6c22e22e026686
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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<OperationLog> {
 
    @Select({"select * from operatio_log where none = 0 ORDER BY caozuodate DESC"})
    List<OperationLog> FindOperationLog();
}