kongdeqiang
2023-03-30 5d7c58dfa04648e5831a66a87597ccb5581a7f16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.boying.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.boying.entity.User;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName UserService.java
 * @Description TODO
 * @createTime 2022年11月21日 20:02:00
 */
public interface UserService extends IService<User> {
}