fei.wang
2024-05-13 19fe5a3d816184549e8ffa011c39f218734da8d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.flow.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.flow.pojo.Duanxinlog;
import com.github.pagehelper.PageInfo;
 
public interface DuanxinlogService extends IService<Duanxinlog> {
 
    PageInfo<Duanxinlog> FindDuanxinlog(Integer var1, Integer var2);
 
    int DeleteDuanxinlog(String var1);
    int addDuanxinlog(Duanxinlog var1);
 
    String userdate(String var1);
}