| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import org.springblade.system.entity.Tenant; |
| | | import org.springblade.system.vo.TenantVO; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 服务类 |
| | |
| | | * @param tenant |
| | | * @return |
| | | */ |
| | | boolean submitTenant(Tenant tenant); |
| | | boolean submitTenant(TenantVO tenant); |
| | | |
| | | /** |
| | | * 删除 |
| | |
| | | * @param ids |
| | | * @return |
| | | */ |
| | | boolean setting(Integer accountNumber, Date expireTime, String ids); |
| | | //boolean setting(Integer accountNumber, Date expireTime, String ids); |
| | | |
| | | /** |
| | | * 查询租户id(key):租户名(value) |
| | | * @return |
| | | */ |
| | | List<Map<String,Object>> selectMaps(); |
| | | |
| | | /** |
| | | * 查询是否配置有默认必须开启三员管理 |
| | | * |
| | | * @return |
| | | */ |
| | | boolean findIsOpen(); |
| | | |
| | | } |