yangys
2025-11-05 10c5247722995e571b3fd4dbffb178964a9bd6ee
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
 
public interface TraceCatalogMapper extends BaseMapper<TraceCatalog> {
    @TenantIgnore
    IPage<TraceCatalog> traceCatalogPage(IPage<TraceCatalog> page, @Param("searchVO") TraceCatalogSearchVO searchVO);
 
    @TenantIgnore
    Long countRelatedCatalog(@Param("searchVO") TraceCatalogSearchVO searchVO);
}