fei.wang
2024-05-09 871d4095b07cedacb7fbef4c38d64982f539c404
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
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
 
package com.flow.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.flow.pojo.Card;
import com.flow.pojo.Company;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
 
public interface CompanyMapper extends BaseMapper<Company> {
    @Select({"select * from company where none = 0 ORDER BY enterdate DESC"})
    List<Company> findAllcompany();
 
    @Select({"select * from company where none = 0 and companyabbName = #{Zong} ORDER BY enterdate DESC"})
    List<Company> findAllcompanyZi(String var1);
 
    @Select({"SELECT * FROM company where none = 0 and companyabbName = #{companybbName} or none = 0 and companyName = #{companyName} "})
    Card ifGongSi(@Param("companyName") String var1, @Param("companybbName") String var2);
 
    @Select({"select * from company where none = 0 and companyabbName = #{companyName} or none = 0 and companyName = #{companyName}"})
    List<Company> findsearch(String var1);
}