package com.oying.modules.message.mapper;
|
|
import com.oying.modules.message.domain.MesCustomerCommentMsg;
|
import com.oying.modules.message.domain.dto.MesCustomerCommentMsgQueryCriteria;
|
import java.util.List;
|
|
import com.oying.modules.message.domain.myDto.MesCustomerCommentMsgDTO;
|
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Mapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
/**
|
* @author 李萌
|
* @date 2025-07-25
|
**/
|
@Mapper
|
public interface MesCustomerCommentMsgMapper extends BaseMapper<MesCustomerCommentMsg> {
|
|
IPage<MesCustomerCommentMsg> findAll(@Param("criteria") MesCustomerCommentMsgQueryCriteria criteria, Page<Object> page);
|
|
List<MesCustomerCommentMsg> findAll(@Param("criteria") MesCustomerCommentMsgQueryCriteria criteria);
|
|
List<MesCustomerCommentMsgDTO> listCustomerComment(Long shopId);
|
}
|