添加全所权限修改

This commit is contained in:
chen 2024-07-18 16:49:00 +08:00
parent 42ae88438e
commit 239660946b

View File

@ -150,7 +150,9 @@ public class ProjectWeeklyController implements ProjectWeeklyApi {
JSONObject extInfo = projectInfo.getExt();
//获取projectManagerData
JSONArray projectManagerData = extInfo.getJSONArray("projectManagerData");
JSONArray projectAdmin = extInfo.getJSONArray("projectAdmin");
ext.put("projectManagerData",projectManagerData.getString(projectManagerData.toArray().length -1 ));
ext.put("projectAdmin",projectAdmin.getString(projectAdmin.toArray().length -1 ));
ext.put("draftManId",extInfo.getString("draftManId"));
return ext;
}