fei.wang
2024-05-13 b9b58b9ef261cb290d93465f88a2cbd814b576f0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package com.flow.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.flow.pojo.Bangzhu;
import com.github.pagehelper.PageInfo;
import com.tencentcloudapi.common.exception.TencentCloudSDKException;
 
public interface BangZhuService extends IService<Bangzhu> {
    void addBang(Bangzhu var1) throws TencentCloudSDKException;
 
    PageInfo<Bangzhu> findBangZhu(Integer var1, Integer var2);
 
    PageInfo<Bangzhu> findBangZhuZi(Integer var1, Integer var2, String var3);
 
    void ChuLi(Bangzhu var1);
}