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
| package com.ruoyi.service;
|
| import com.ruoyi.domain.ZfEconomy;
|
| import java.util.Date;
| import java.util.List;
|
| public interface ModuleSearchable {
| /**
| * 获取支持的模块编码
| */
| String getModuleCode();
|
| /**
| * 搜索方法
| */
| List<?> search(String companion, Date happenStartTime,Date happenEndTime);
|
| /**
| * 模块名称
| */
| default String getModuleName() {
| return getModuleCode();
| }
| }
|
|