16 lines
450 B
Java
16 lines
450 B
Java
package com.guo.learningprogresstracker.service;
|
|
|
|
import com.guo.learningprogresstracker.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);
|
|
}
|