1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ruoyi.admin.service;
|
| import com.ruoyi.admin.entity.RecoveryServePrice;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * <p>
| * 回收服务对应回收价格及所在城市 服务类
| * </p>
| *
| * @author hjl
| * @since 2024-05-29
| */
| public interface RecoveryServePriceService extends IService<RecoveryServePrice> {
|
| }
|
|