| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.pojo.UserInf; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface UserMapper extends CustomMapper<UserInf> { |
| | | |
| | | UserInf getUserInfoByPhoneNumber(String phoneNumber); |
| | | UserInf getUserInfoByPhoneNumber(@Param("phoneNumber") String phoneNumber); |
| | | |
| | | int addJudge(@Param("uName") String uName,@Param("uPhoneNumber") String uPhoneNumber); |
| | | |
| | | List<UserInf> searchCS_All2(); |
| | | |
| | | List<UserInf> getUserInfoByStationId(@Param("stationId") String stationId); |
| | | |
| | | List<UserInf> getUserInfAndPermitInf(); |
| | | |
| | | |
| | | void updatePasswordsTo3072(List<UserInf> userListWithNewPwd); |
| | | |
| | | } |