1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.terra.lfdcexp.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.terra.lfdcexp.entity.WeilanMonEntity;
|
|
| import java.util.Map;
|
| /**
| * ${comments}
| *
| * @author chenshun
| * @email sunlightcs@gmail.com
| * @date 2023-12-05 16:11:48
| */
| public interface WeilanMonService extends IService<WeilanMonEntity> {
|
|
| }
|
|