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 { IPage findAll(@Param("criteria") MesCustomerCommentMsgQueryCriteria criteria, Page page); List findAll(@Param("criteria") MesCustomerCommentMsgQueryCriteria criteria); List listCustomerComment(Long shopId); }