Commit 497c8682 by 王祖波

内容版本

parent eea31c6b
...@@ -1906,7 +1906,7 @@ public class WxStaffController extends WebBaseController { ...@@ -1906,7 +1906,7 @@ public class WxStaffController extends WebBaseController {
}else { }else {
vo.setStatus(2); vo.setStatus(2);
} }
vo.setVersion(dto.getVersion()); vo.setModuleVersion(dto.getModuleVersion());
return RestResponse.successResult(vo); return RestResponse.successResult(vo);
} }
} }
...@@ -15,7 +15,7 @@ public class RightVO implements Serializable{ ...@@ -15,7 +15,7 @@ public class RightVO implements Serializable{
/** /**
* 版本 1基础版2高级版 * 版本 1基础版2高级版
*/ */
private Integer version; private Integer moduleVersion;
public int getStatus() { public int getStatus() {
return status; return status;
...@@ -25,11 +25,11 @@ public class RightVO implements Serializable{ ...@@ -25,11 +25,11 @@ public class RightVO implements Serializable{
this.status = status; this.status = status;
} }
public Integer getVersion() { public Integer getModuleVersion() {
return version; return moduleVersion;
} }
public void setVersion(Integer version) { public void setModuleVersion(Integer moduleVersion) {
this.version = version; this.moduleVersion = moduleVersion;
} }
} }
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