|
|
|
|
@ -29,6 +29,7 @@ import org.springframework.data.redis.core.RedisTemplate;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
|
|
import org.springframework.util.ObjectUtils;
|
|
|
|
|
import tk.mybatis.mapper.entity.Example;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
@ -2881,6 +2882,9 @@ public class SsmBaseStaffServiceImpl extends BaseServiceImpl<BaseStaff> implemen
|
|
|
|
|
if(StringUtils.isEmpty(memberRequest.getMobilePhone())){
|
|
|
|
|
throw new SmsException(ResponseCode.MSG,"请输入手机号!");
|
|
|
|
|
}
|
|
|
|
|
if(ObjectUtils.isEmpty(passCode)){
|
|
|
|
|
throw new SmsException(ResponseCode.MSG,"请输入验证码");
|
|
|
|
|
}
|
|
|
|
|
criteria.andEqualTo(StaffRequest.Fields.mobilePhone, memberRequest.getMobilePhone());
|
|
|
|
|
criteria.andEqualTo(StaffRequest.Fields.storeId, memberRequest.getStoreId());
|
|
|
|
|
List<BlackList> list = blackListDao.selectByExample(example);
|
|
|
|
|
|