不需要传uid参数
This commit is contained in:
parent
a332b2dd19
commit
a624518ee6
@ -50,8 +50,9 @@ public class DataViewController {
|
|||||||
|
|
||||||
@Mapping(value = "com.awspaas.user.apps.yili.reportform.service.DataViewService_personalView_right",
|
@Mapping(value = "com.awspaas.user.apps.yili.reportform.service.DataViewService_personalView_right",
|
||||||
desc = "个人视图_本岗位有权限的流程图")
|
desc = "个人视图_本岗位有权限的流程图")
|
||||||
public String personalView_right(UserContext uc, RequestParams params) {
|
public String personalView_right(String sid) {
|
||||||
return new DataViewService(uc).personalView_right(uc, params);
|
UserContext uc = UserContext.fromSessionId(sid);
|
||||||
|
return new DataViewService(uc).personalView_right(uc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -991,7 +991,8 @@ public class DataViewService extends ActionWeb {
|
|||||||
* @auther: wangcy
|
* @auther: wangcy
|
||||||
* @date: 2023/6/36 14:12
|
* @date: 2023/6/36 14:12
|
||||||
*/
|
*/
|
||||||
public String personalView_right(UserContext uc, RequestParams params) {
|
public String personalView_right(UserContext uc) {
|
||||||
|
System.out.println("uc>>>>>>>>"+uc.getUID());
|
||||||
ResponseObject ro = ResponseObject.newOkResponse();
|
ResponseObject ro = ResponseObject.newOkResponse();
|
||||||
String positionKeys = null;
|
String positionKeys = null;
|
||||||
String positionVals = null;
|
String positionVals = null;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user