19 lines
466 B
Java
19 lines
466 B
Java
package com.bwie.mapper;
|
|
|
|
import com.bwie.common.domain.response.UserLoginResp;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Select;
|
|
|
|
import java.util.Date;
|
|
|
|
@Mapper
|
|
public interface UserMapper {
|
|
|
|
@Select("select * from t_user where user_tel=#{userTel}")
|
|
UserLoginResp findByTel(String userTel);
|
|
|
|
|
|
int updNumber(@Param("userId") String userId, @Param("date") Date date);
|
|
}
|