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);
|
}
|