| 1234567891011121314151617181920212223 |
- package com.leanwo.gateway.service;
- import java.util.List;
- import com.leanwo.gateway.dto.AccountManagementDto;
- public interface GatewayService {
-
- /**
- * 根据域名查询账套Id
- * @return 账套Id
- * @author GuoZhiBo 20200618
- */
- Long getAccountIdByDomainName(String domainName);
- /**
- * 重新加载账套信息,并放到缓存中
- * @author YangZhiJie 20200702
- */
- void reloadAccountManagement();
-
-
- }
|