forked from fdzcxy212206413/jty
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
436 B
12 lines
436 B
package jty.expressdistributionsystem.service.impl;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import jty.expressdistributionsystem.entity.User;
|
|
import jty.expressdistributionsystem.mapper.UserMapper;
|
|
import jty.expressdistributionsystem.service.UserService;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService {
|
|
}
|