fei.wang
2024-05-13 b9b58b9ef261cb290d93465f88a2cbd814b576f0
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();
}