init_object,增加了不完全的登录API,完善数据库设计
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.guo.learningprogresstracker.service;
|
||||
|
||||
import com.guo.learningprogresstracker.domain.entity.TestTableEntity;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author Administrator
|
||||
* @description 针对表【test_table(测试表)】的数据库操作Service
|
||||
* @createDate 2024-04-28 18:01:21
|
||||
*/
|
||||
//@Service
|
||||
public interface TestTableService extends IService<TestTableEntity> {
|
||||
|
||||
TestTableEntity getTestEntityById(String id);
|
||||
}
|
||||
Reference in New Issue
Block a user