2024-04-10 12:55:50 +00:00
|
|
|
package com.example.catchTheLetters.service;
|
|
|
|
|
2024-04-10 16:05:24 +00:00
|
|
|
import com.example.catchTheLetters.entity.Level;
|
|
|
|
import com.example.catchTheLetters.utils.R;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2024-04-10 12:55:50 +00:00
|
|
|
/**
|
|
|
|
* @author 慕华
|
|
|
|
* @date 2024/4/10
|
|
|
|
* @Version 1.0
|
|
|
|
* @description
|
|
|
|
*/
|
|
|
|
public interface LevelService {
|
2024-04-10 16:05:24 +00:00
|
|
|
|
|
|
|
R<Level> levelDetail(Long id);
|
|
|
|
|
|
|
|
R<List<Level>> list();
|
2024-04-10 12:55:50 +00:00
|
|
|
}
|