| | |
| | | package com.yeshi.fanli.service.inter.config;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.SystemEnum;
|
| | | import com.yeshi.fanli.entity.system.BusinessSystem;
|
| | |
|
| | | public interface BusinessSystemService {
|
| | |
|
| | | public BusinessSystem getBusinessSystem(String platform, String packages, SystemEnum system);
|
| | |
|
| | | public BusinessSystem getBusinessSystemCache(String platform, String packages, SystemEnum system);
|
| | |
|
| | | public List<BusinessSystem> getBusinessSystems();
|
| | |
|
| | | /**
|
| | | * 通过id查询
|
| | | * |
| | | * @param id
|
| | | * @return
|
| | | */
|
| | | public BusinessSystem getById(long id);
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.config; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.fanli.entity.SystemEnum; |
| | | import com.yeshi.fanli.entity.system.BusinessSystem; |
| | | |
| | | public interface BusinessSystemService { |
| | | |
| | | public BusinessSystem getBusinessSystem(String platform, String packages, SystemEnum system); |
| | | |
| | | public BusinessSystem getBusinessSystemCache(String platform, String packages, SystemEnum system); |
| | | |
| | | public List<BusinessSystem> getBusinessSystems(); |
| | | |
| | | /** |
| | | * 通过id查询 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | public BusinessSystem getById(long id); |
| | | |
| | | } |