fei.wang
2024-03-07 80c20bb65f4b73d8beb817e0d595889cd44479dd
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 addDuanxinlog(Duanxinlog var1);
 
    String userdate(String var1);
}