yangys
2024-03-31 153d165114fb17722853629dfdc9c1d59b73e439
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.qianwen.smartman.modules.trace.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
import com.qianwen.core.tenant.annotation.TenantIgnore;
import com.qianwen.smartman.modules.trace.entity.TraceCatalog;
import com.qianwen.smartman.modules.trace.vo.TraceCatalogSearchVO;
 
@TenantIgnore
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/trace/mapper/TraceCatalogMapper.class */
public interface TraceCatalogMapper extends BaseMapper<TraceCatalog> {
    @TenantIgnore
    IPage<TraceCatalog> traceCatalogPage(IPage<TraceCatalog> page, @Param("searchVO") TraceCatalogSearchVO searchVO);
 
    @TenantIgnore
    Long countRelatedCatalog(@Param("searchVO") TraceCatalogSearchVO searchVO);
}