kongdeqiang
2024-03-20 281b8003e2d26451793c22f7c7c0c4d13ea40da1
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> {
}