copy from blade-auth/src/main/java/org/springblade/auth/AuthApplication.java
copy to blade-auth/src/main/java/org/springblade/system/service/IParamService.java
| File was copied from blade-auth/src/main/java/org/springblade/auth/AuthApplication.java |
| | |
| | | * this software without specific prior written permission. |
| | | * Author: Chill 庄骞 (smallchill@163.com) |
| | | */ |
| | | package org.springblade.auth; |
| | | package org.springblade.system.service; |
| | | |
| | | |
| | | import org.springblade.core.cloud.client.BladeCloudApplication; |
| | | import org.springblade.core.launch.BladeApplication; |
| | | import org.springblade.core.launch.constant.AppConstant; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import org.springblade.system.entity.Param; |
| | | |
| | | /** |
| | | * 用户认证服务器 |
| | | * 服务类 |
| | | * |
| | | * @author Chill |
| | | */ |
| | | @BladeCloudApplication |
| | | public class AuthApplication { |
| | | public interface IParamService extends BaseService<Param> { |
| | | |
| | | public static void main(String[] args) { |
| | | BladeApplication.run(AppConstant.APPLICATION_AUTH_NAME, AuthApplication.class, args); |
| | | } |
| | | /** |
| | | * 获取参数值 |
| | | * |
| | | * @param paramKey 参数key |
| | | * @return String |
| | | */ |
| | | String getValue(String paramKey); |
| | | |
| | | } |