yangys
2024-05-18 cc0bdfb33ef638dfafe3185c92c7076d815e1c9b
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);
}