14 lines
371 B
Java
14 lines
371 B
Java
package com.guo.learningprogresstracker.service;
|
|
|
|
import com.guo.learningprogresstracker.domain.entity.UserEntity;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* @author guo
|
|
* @description 针对表【user(用户信息表)】的数据库操作Service
|
|
* @createDate 2024-06-09 15:28:48
|
|
*/
|
|
public interface UserService extends IService<UserEntity> {
|
|
|
|
}
|