上传代码

master
zhiyong.ning 4 years ago
parent 144dcb2c5f
commit 9d5b71e352
  1. 8
      src/main/java/com/yipin/liuwanr/controller/CustomerController.java
  2. 30
      src/main/java/com/yipin/liuwanr/controller/UserInfoController.java
  3. 2
      src/main/java/com/yipin/liuwanr/mapper/CustomerMapper.java

@ -241,12 +241,18 @@ public class CustomerController {
* 查询学校
*/
@GetMapping("/querySchool")
Response querySchool(@RequestParam String schoolName) {
Response querySchool(@RequestParam String schoolName,@RequestParam Integer provinceId,@RequestParam Integer cityId) {
Response resp = new Response();
School school = new School();
if (schoolName != null || schoolName != "") {
school.setSchoolName(schoolName);
}
if (provinceId !=null){
school.setProvinceId(provinceId);
}
school.setCityId(cityId);
if (cityId !=null ){
}
HashMap<String, Object> ret = customerService.querySchool(school);
resp.setStatus(200);
resp.setErrmessage("Parameter effective");

@ -331,6 +331,36 @@ public class UserInfoController {
return resp;
}
/**
* 登陆查询学校/职战
*/
@GetMapping("/zzLoginSchoolClient")
Response zzLoginSchoolClient(@RequestParam("account") String account, @RequestParam("password") String password , HttpServletRequest req, HttpServletResponse res) {
Response resp = new Response();
UserInfo userInfo = new UserInfo();
userInfo.setSchoolId(2105);//暂定学校id
if (account == null || account=="") {
resp.setStatus(300);
resp.setErrmessage("用户账号为空,登录失败!");
}else if(password ==null || password=="") {
resp.setStatus(300);
resp.setErrmessage("用户密码为空,登录失败!");
}else{
userInfo.setAccount(account);
userInfo.setPassword(password);
HashMap<String, Object> ret = userInfoService.loginSchoolClient(userInfo);
int status = (int) ret.get("retcode");
if (200 == status) {
resp.setStatus(status);
resp.setMessage(ret.get("retvalue"));
} else {
resp.setStatus(status);
resp.setErrmessage(ret.get("retvalue").toString());
}
}
return resp;
}
/**
* 服务端登陆
*/

@ -89,6 +89,8 @@ public interface CustomerMapper {
//查询行业
@Select({"<script>",
"SELECT schoolId,schoolName,provinceId,cityId,level,provinceName,cityName from school where isdel = 0",
" <if test='provinceId!=null'>and provinceId = #{provinceId} </if>",
" <if test='cityId!=null'>and cityId = #{cityId} </if>",
" <if test='schoolName!=null and schoolName!=\"\"'>and schoolName like concat('%',#{schoolName},'%') </if>",
"</script> "})
List<School> querySchool(School school);

Loading…
Cancel
Save