blob: 98b2810110f06e2b556974444d9c2af1a8431c9d [file] [log] [blame]
package com.example.g8backend.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.example.g8backend.entity.User;
import org.apache.ibatis.annotations.Param;
public interface IUserService extends IService<User> {
User getUserByName(@Param("name") String name);
}