Commit 349a8611 authored by cy's avatar cy

修改vip方案查询实体注解

parent efe50b38
...@@ -44,7 +44,7 @@ public class SchemeVipVo implements Serializable { ...@@ -44,7 +44,7 @@ public class SchemeVipVo implements Serializable {
/** /**
* 地区 * 地区
*/ */
@ApiModelProperty(value = "地区", name = "local") @ApiModelProperty(value = "地区,如('上海,山东,湖北')", name = "local")
private String local; private String local;
/** /**
......
...@@ -27,7 +27,7 @@ public class AuthenticationFilter extends FormAuthenticationFilter { ...@@ -27,7 +27,7 @@ public class AuthenticationFilter extends FormAuthenticationFilter {
httpResponse.setContentType("application/json"); httpResponse.setContentType("application/json");
Map<String, Object> map = new HashMap<>(); Map<String, Object> map = new HashMap<>();
map.put("status", "1001"); map.put("status", "1001");
map.put("message", "登录已超时,请重新登录!"); map.put("message", "未登录,马上去登录!");
httpResponse.getWriter().write(JSONObject.toJSONString(map)); httpResponse.getWriter().write(JSONObject.toJSONString(map));
return false; return false;
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment