package cn.lili.modules.lmk.mapper;
|
|
import cn.lili.modules.lmk.domain.entity.CustomerTagRef;
|
import cn.lili.modules.lmk.domain.query.CustomerTagRefQuery;
|
import cn.lili.modules.lmk.domain.vo.CustomerTagRefVO;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* Mapper 接口
|
*
|
* @author zxl
|
* @since 2025-05-14
|
*/
|
@Mapper
|
public interface CustomerTagRefMapper extends BaseMapper<CustomerTagRef> {
|
|
/**
|
* id查找
|
* @param id
|
* @return
|
*/
|
CustomerTagRefVO getById(Integer id);
|
|
/**
|
* 分页
|
*/
|
IPage getPage(IPage page, @Param("query") CustomerTagRefQuery query);
|
|
}
|