kongdeqiang
2024-04-09 68270a251b81502f815ecbd04cb2ab23f3978d24
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> {
}