zhitong.yu
7 天以前 7fc9c42987a13c1d8d2159591a5803e70518827f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.hxzk.gps.mapper.Cabinet;
 
import com.hxzk.gps.entity.Cabinet.TbFakaqulog;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author YuZhiTong
 * @since 2025-07-15
 */
public interface TbFakaqulogMapper extends BaseMapper<TbFakaqulog> {
    @Select("select * from tb_fakaqulog f inner join tb_cabinet c on c.cabinetname = f.guiziname where c.company = #{company} order by f.time desc")
    List<TbFakaqulog> FindFaKaQuInfo(String company);
 
}