xin
4 days ago 982313135d1c239fe3b20e4c5664781f92d40aca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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);
}