Commit 497c8682 by 王祖波

内容版本

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