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.
jty/src/main/java/jty/expressdistributionsystem/service/impl/UserServiceImpl.java

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 {
}