hjl
2024-06-18 aaa3384609da2dfb7d6788a2a2b3d92a2bff0813
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
package com.ruoyi.user.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.user.entity.RecoveryServe;
import com.ruoyi.user.vo.ServeListVO;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * <p>
 * 回收服务列表 Mapper 接口
 * </p>
 *
 * @author hjl
 * @since 2024-06-06
 */
@Mapper
public interface RecoveryServeMapper extends BaseMapper<RecoveryServe> {
 
    /**
     * 查询回收服务分类列表
     *
     * @return 列表
     */
    List<ServeListVO> seveList();
}