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
27
28
29
30
31
32
33
34
35
| package com.sinata.rest.modular.mall.service;
|
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.sinata.rest.modular.mall.model.MallUserReport;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * <p>
| * 用户举报 服务类
| * </p>
| *
| * @author goku
| * @since 2023-03-10
| */
| public interface IMallUserReportService extends IService<MallUserReport> {
|
| /**
| * 根据条件查询列表
| * @param beginTime 举报时间
| * @param endTime 举报时间
| * @param nickName 用户昵称
| * @param merchantName 门店名称
| * @param goodsName 商品名称
| * @param id 商品id
| * @param page 分页
| * @return
| */
| List<Map<String,Object>> selectReoortList(String beginTime, String endTime, String nickName,
| String merchantName, String goodsName, Integer id, Integer state, Integer merchantId,Integer userId, Page<MallUserReport> page);
|
| void updateForId(Integer id);
| }
|
|