添加关卡服务类

This commit is contained in:
Ethereal 2024-04-10 20:55:50 +08:00
parent 0092736b52
commit 6e61ffd198
3 changed files with 25 additions and 0 deletions

View File

@ -59,4 +59,6 @@ public interface AuthService {
* @return 用户信息
*/
User getUserByName(String username);
}

View File

@ -0,0 +1,10 @@
package com.example.catchTheLetters.service;
/**
* @author 慕华
* @date 2024/4/10
* @Version 1.0
* @description
*/
public interface LevelService {
}

View File

@ -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 {
}