添加关卡服务类
This commit is contained in:
parent
0092736b52
commit
6e61ffd198
|
@ -59,4 +59,6 @@ public interface AuthService {
|
|||
* @return 用户信息
|
||||
*/
|
||||
User getUserByName(String username);
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
package com.example.catchTheLetters.service;
|
||||
|
||||
/**
|
||||
* @author 慕华
|
||||
* @date 2024/4/10
|
||||
* @Version 1.0
|
||||
* @description
|
||||
*/
|
||||
public interface LevelService {
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
package com.example.catchTheLetters.service.impl;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author 慕华
|
||||
* @date 2024/4/10
|
||||
* @Version 1.0
|
||||
* @description
|
||||
*/
|
||||
@Service
|
||||
public class LevelServiceImpl {
|
||||
}
|
Loading…
Reference in New Issue