fei.wang
2024-04-15 61747a14819075bf6da2c1597b6c22e22e026686
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.flow.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.flow.pojo.Duanxinlog;
import com.flow.pojo.OperationLog;
import com.github.pagehelper.PageInfo;
 
import java.util.List;
 
public interface OperationLogService extends IService<OperationLog> {
 
    PageInfo<OperationLog> FindOperationLog(Integer var1, Integer var2);
 
//    List<OperationLog> FindOperationLog(OperationLog var1);
 
    int addOperationLog(OperationLog var1);
}