18 lines
295 B
Java
18 lines
295 B
Java
package com.bwie.mapper;
|
|
|
|
import com.bwie.common.domain.Admin;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* @Author: zhx
|
|
* @Package: com.bwie.mapper
|
|
* @Datetime: 2023/12/18 16:21
|
|
* @Filename: UserMapper
|
|
*/
|
|
@Mapper
|
|
public interface UserMapper {
|
|
|
|
|
|
Admin findPhone(String phone);
|
|
}
|