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(); } }