fei.wang
2024-03-07 80c20bb65f4b73d8beb817e0d595889cd44479dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// 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.Card;
import com.flow.pojo.Company;
import com.github.pagehelper.PageInfo;
import java.util.List;
 
public interface CompanyService extends IService<Company> {
    PageInfo<Company> FindCompany(Integer var1, Integer var2) throws Exception;
 
    PageInfo<Company> FindCompanyZi(String var1, Integer var2, Integer var3) throws Exception;
 
    int DeleteCompany(String var1);
 
    List<Company> findSuoShu() throws Exception;
 
    PageInfo<Company> tableSearch(Company var1, int var2, int var3) throws Exception;
 
    int UpdateCard(Company var1) throws Exception;
 
    int addGongSi(Company var1) throws Exception;
 
    Company findUser(Company var1);
 
    String chaZi(String var1) throws Exception;
 
    int upUser(Company var1) throws Exception;
 
    Card ifGongSi(Company var1) throws Exception;
 
    List<Company> MoHuGongSi(Company var1);
 
    Company findLoginPhone(Company var1);
 
    List<Company> findLength();
 
    Company HuoPhone(Company var1) throws Exception;
 
    Company findC(String var1) throws Exception;
 
    int bcHxg(Company var1) throws Exception;
}