Commit bddc449d5f81b3984047f4209d8bd5556b0c6284
1 parent
dcbaba3a
bf
Showing
9 changed files
with
110 additions
and
7 deletions
bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/controller/BsthTLineAddController.java
| @@ -112,6 +112,7 @@ public class BsthTLineAddController extends BaseController | @@ -112,6 +112,7 @@ public class BsthTLineAddController extends BaseController | ||
| 112 | BsthTLine bl=new BsthTLine(); | 112 | BsthTLine bl=new BsthTLine(); |
| 113 | bl.setLineName(bsthTLine.getLineName()); | 113 | bl.setLineName(bsthTLine.getLineName()); |
| 114 | bl=bsthTLineService.selectBsthTLineExamineByLineName(bl); | 114 | bl=bsthTLineService.selectBsthTLineExamineByLineName(bl); |
| 115 | + bsthTLineService.getDeptId(bsthTLine); | ||
| 115 | if(bl==null){ | 116 | if(bl==null){ |
| 116 | bsthTLine.setLineUpdateType("0"); | 117 | bsthTLine.setLineUpdateType("0"); |
| 117 | bsthTLine.setExamineType("0"); | 118 | bsthTLine.setExamineType("0"); |
| @@ -149,6 +150,7 @@ public class BsthTLineAddController extends BaseController | @@ -149,6 +150,7 @@ public class BsthTLineAddController extends BaseController | ||
| 149 | { | 150 | { |
| 150 | User loginUser = ShiroUtils.getSysUser(); | 151 | User loginUser = ShiroUtils.getSysUser(); |
| 151 | bsthTLine.setUpdateBy(loginUser.getUserName()); | 152 | bsthTLine.setUpdateBy(loginUser.getUserName()); |
| 153 | + bsthTLineService.getDeptId(bsthTLine); | ||
| 152 | return toAjax(bsthTLineService.updateBsthTLineExamine(bsthTLine)); | 154 | return toAjax(bsthTLineService.updateBsthTLineExamine(bsthTLine)); |
| 153 | } | 155 | } |
| 154 | 156 |
bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/controller/BsthTLineHistoryController.java
| @@ -110,6 +110,7 @@ public class BsthTLineHistoryController extends BaseController | @@ -110,6 +110,7 @@ public class BsthTLineHistoryController extends BaseController | ||
| 110 | BsthTLine bl=new BsthTLine(); | 110 | BsthTLine bl=new BsthTLine(); |
| 111 | bl.setLineName(bsthTLine.getLineName()); | 111 | bl.setLineName(bsthTLine.getLineName()); |
| 112 | BsthTLine bsthTLineExamine=bsthTLineService.selectBsthTLineExamineByLineName(bl); | 112 | BsthTLine bsthTLineExamine=bsthTLineService.selectBsthTLineExamineByLineName(bl); |
| 113 | + bsthTLineService.getDeptId(bsthTLine); | ||
| 113 | if(bsthTLineExamine!=null){//存在申请直接覆盖 | 114 | if(bsthTLineExamine!=null){//存在申请直接覆盖 |
| 114 | bsthTLine.setId(bsthTLineExamine.getId()); | 115 | bsthTLine.setId(bsthTLineExamine.getId()); |
| 115 | ajaxResult= toAjax(bsthTLineService.updateBsthTLineExamine(bsthTLine)); | 116 | ajaxResult= toAjax(bsthTLineService.updateBsthTLineExamine(bsthTLine)); |
bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/domain/BsthTLine.java
| @@ -286,6 +286,8 @@ public class BsthTLine extends BaseEntity | @@ -286,6 +286,8 @@ public class BsthTLine extends BaseEntity | ||
| 286 | 286 | ||
| 287 | private Long historyId; | 287 | private Long historyId; |
| 288 | 288 | ||
| 289 | + private Long deptId; | ||
| 290 | + | ||
| 289 | public Long getId() { | 291 | public Long getId() { |
| 290 | return id; | 292 | return id; |
| 291 | } | 293 | } |
| @@ -857,4 +859,12 @@ public class BsthTLine extends BaseEntity | @@ -857,4 +859,12 @@ public class BsthTLine extends BaseEntity | ||
| 857 | public void setHistoryId(Long historyId) { | 859 | public void setHistoryId(Long historyId) { |
| 858 | this.historyId = historyId; | 860 | this.historyId = historyId; |
| 859 | } | 861 | } |
| 862 | + | ||
| 863 | + public Long getDeptId() { | ||
| 864 | + return deptId; | ||
| 865 | + } | ||
| 866 | + | ||
| 867 | + public void setDeptId(Long deptId) { | ||
| 868 | + this.deptId = deptId; | ||
| 869 | + } | ||
| 860 | } | 870 | } |
bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/domain/Company.java
0 → 100644
| 1 | +package com.ruoyi.project.system.line.domain; | ||
| 2 | + | ||
| 3 | +import com.ruoyi.framework.web.domain.BaseEntity; | ||
| 4 | + | ||
| 5 | + | ||
| 6 | + | ||
| 7 | +public class Company extends BaseEntity | ||
| 8 | +{ | ||
| 9 | + private static final long serialVersionUID = 1L; | ||
| 10 | + | ||
| 11 | + private Long id; | ||
| 12 | + | ||
| 13 | + private String company; | ||
| 14 | + | ||
| 15 | + private String fCompany; | ||
| 16 | + | ||
| 17 | + private String companyID; | ||
| 18 | + | ||
| 19 | + private String dept_id; | ||
| 20 | + | ||
| 21 | + public void setId(Long id) { | ||
| 22 | + this.id = id; | ||
| 23 | + } | ||
| 24 | + | ||
| 25 | + public void setCompany(String company) { | ||
| 26 | + this.company = company; | ||
| 27 | + } | ||
| 28 | + | ||
| 29 | + public void setfCompany(String fCompany) { | ||
| 30 | + this.fCompany = fCompany; | ||
| 31 | + } | ||
| 32 | + | ||
| 33 | + public void setCompanyID(String companyID) { | ||
| 34 | + this.companyID = companyID; | ||
| 35 | + } | ||
| 36 | + | ||
| 37 | + public void setDept_id(String dept_id) { | ||
| 38 | + this.dept_id = dept_id; | ||
| 39 | + } | ||
| 40 | + | ||
| 41 | + public Long getId() { | ||
| 42 | + return id; | ||
| 43 | + } | ||
| 44 | + | ||
| 45 | + public String getCompany() { | ||
| 46 | + return company; | ||
| 47 | + } | ||
| 48 | + | ||
| 49 | + public String getfCompany() { | ||
| 50 | + return fCompany; | ||
| 51 | + } | ||
| 52 | + | ||
| 53 | + public String getCompanyID() { | ||
| 54 | + return companyID; | ||
| 55 | + } | ||
| 56 | + | ||
| 57 | + public String getDept_id() { | ||
| 58 | + return dept_id; | ||
| 59 | + } | ||
| 60 | +} |
bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/mapper/BsthTLineMapper.java
| @@ -79,4 +79,6 @@ public interface BsthTLineMapper | @@ -79,4 +79,6 @@ public interface BsthTLineMapper | ||
| 79 | BsthTLine selectBsthTLineHistory(BsthTLine bsthTLine); | 79 | BsthTLine selectBsthTLineHistory(BsthTLine bsthTLine); |
| 80 | 80 | ||
| 81 | List<LineHistoryReport>getLineHistoryReport(BsthTLine bsthTLine); | 81 | List<LineHistoryReport>getLineHistoryReport(BsthTLine bsthTLine); |
| 82 | + | ||
| 83 | + long getDeptId(Company company); | ||
| 82 | } | 84 | } |
bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/service/IBsthTLineService.java
| @@ -75,4 +75,6 @@ public interface IBsthTLineService | @@ -75,4 +75,6 @@ public interface IBsthTLineService | ||
| 75 | List<BsthTLineKFK> changeCN(List<BsthTLineKFK> list); | 75 | List<BsthTLineKFK> changeCN(List<BsthTLineKFK> list); |
| 76 | 76 | ||
| 77 | void getCarPlate(); | 77 | void getCarPlate(); |
| 78 | + | ||
| 79 | + void getDeptId(BsthTLine bsthTLine); | ||
| 78 | } | 80 | } |
bsthLineProfiles/src/main/java/com/ruoyi/project/system/line/service/impl/BsthTLineServiceImpl.java
| @@ -185,6 +185,7 @@ public class BsthTLineServiceImpl implements IBsthTLineService | @@ -185,6 +185,7 @@ public class BsthTLineServiceImpl implements IBsthTLineService | ||
| 185 | //存入主表和历史表 | 185 | //存入主表和历史表 |
| 186 | bl=bsthTLineMapper.selectBsthTLineExamineById(bsthTLine.getId()); | 186 | bl=bsthTLineMapper.selectBsthTLineExamineById(bsthTLine.getId()); |
| 187 | bl.setUpdateStatus("0"); | 187 | bl.setUpdateStatus("0"); |
| 188 | + this.getDeptId(bl); | ||
| 188 | bsthTLineMapper.saveEditHistory(bl); | 189 | bsthTLineMapper.saveEditHistory(bl); |
| 189 | i=bsthTLineMapper.insertBsthTLine(bl); | 190 | i=bsthTLineMapper.insertBsthTLine(bl); |
| 190 | //删除审核表 | 191 | //删除审核表 |
| @@ -226,6 +227,7 @@ public class BsthTLineServiceImpl implements IBsthTLineService | @@ -226,6 +227,7 @@ public class BsthTLineServiceImpl implements IBsthTLineService | ||
| 226 | //把审核表的记录插入历史表 状态 0-当前 记录前一次数据的id | 227 | //把审核表的记录插入历史表 状态 0-当前 记录前一次数据的id |
| 227 | bl.setUpdateStatus("0"); | 228 | bl.setUpdateStatus("0"); |
| 228 | bl.setHistoryId(blo.getId()); | 229 | bl.setHistoryId(blo.getId()); |
| 230 | + this.getDeptId(bl); | ||
| 229 | bsthTLineMapper.saveEditHistory(bl); | 231 | bsthTLineMapper.saveEditHistory(bl); |
| 230 | //修改主表 | 232 | //修改主表 |
| 231 | bl.setId(bsthTLine1.getId()); | 233 | bl.setId(bsthTLine1.getId()); |
| @@ -302,6 +304,7 @@ public class BsthTLineServiceImpl implements IBsthTLineService | @@ -302,6 +304,7 @@ public class BsthTLineServiceImpl implements IBsthTLineService | ||
| 302 | 304 | ||
| 303 | 305 | ||
| 304 | @Override | 306 | @Override |
| 307 | + @DataScope(deptAlias = "b") | ||
| 305 | public List<BsthTLine> selectBsthTLineListAndExamine(BsthTLine bsthTLine) | 308 | public List<BsthTLine> selectBsthTLineListAndExamine(BsthTLine bsthTLine) |
| 306 | { | 309 | { |
| 307 | return bsthTLineMapper.selectBsthTLineListAndExamine(bsthTLine); | 310 | return bsthTLineMapper.selectBsthTLineListAndExamine(bsthTLine); |
| @@ -478,4 +481,10 @@ public class BsthTLineServiceImpl implements IBsthTLineService | @@ -478,4 +481,10 @@ public class BsthTLineServiceImpl implements IBsthTLineService | ||
| 478 | } | 481 | } |
| 479 | } | 482 | } |
| 480 | 483 | ||
| 484 | + public void getDeptId(BsthTLine bsthTLine){ | ||
| 485 | + Company company=new Company(); | ||
| 486 | + company.setfCompany(bsthTLine.getfCompany()); | ||
| 487 | + long deptId= bsthTLineMapper.getDeptId(company); | ||
| 488 | + bsthTLine.setDeptId(deptId); | ||
| 489 | + } | ||
| 481 | } | 490 | } |
bsthLineProfiles/src/main/java/com/ruoyi/project/system/user/controller/LoginController.java
| @@ -100,7 +100,9 @@ public class LoginController extends BaseController | @@ -100,7 +100,9 @@ public class LoginController extends BaseController | ||
| 100 | User user = tokenService.getUser(token); | 100 | User user = tokenService.getUser(token); |
| 101 | if (user == null && token != null) { | 101 | if (user == null && token != null) { |
| 102 | 102 | ||
| 103 | - String dataJsonStr = sendPost("http://180.169.154.251:18080/information/authenticate/loginAuthentication",token); | 103 | + //String dataJsonStr = sendPost("http://180.169.154.251:18080/information/authenticate/loginAuthentication",token); |
| 104 | + String dataJsonStr = sendPost("http://112.64.45.51:32740/information/authenticate/loginAuthentication",token); | ||
| 105 | + | ||
| 104 | 106 | ||
| 105 | //String dataJsonStr="{\"code\":200,\"msg\":\"成功\",\"data\":{\"userId\":\"50aa4eea655d42c49bef086e68a789ad\",\"userName\":\"拓华\",\"userType\":null,\"photoPath\":\"http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/\",\"sex\":\"女\",\"idCard\":\"\",\"telephoneNumber\":\"1\",\"mailbox\":\"1\",\"account\":\"100005\",\"status\":\"01\",\"remark\":\"\",\"sort\":\"\",\"orgId\":\"7E1EAC2C-AE4D-42B3-A8ED-B0AF6929B889\",\"companyInfo\":{\"organizationId\":\"578ECB10-9859-47CC-A6D5-CEE09536243D\",\"parentId\":\"7AE0A3FB-2D6C-4E51-8B10-71EAFA2D269A\",\"number\":\"KD01.0115\",\"simpleNameCn\":\"PJ\",\"simpleName\":\"浦交本部\",\"name\":\"上海浦东新区公交本部\",\"fullName\":\"上海浦东新区公共交通有限公司/上海浦东新区公交本部\",\"status\":\"01\",\"remark\":null,\"type\":\"01\",\"attributes\":\"01\",\"sort\":\"KD01.0101\"},\"orgInfo\":{\"organizationId\":\"7E1EAC2C-AE4D-42B3-A8ED-B0AF6929B889\",\"parentId\":\"EB26BC7B-D6BA-49BE-83A2-661E6D1E1825\",\"number\":\"KD01.0115.0013.0010\",\"simpleNameCn\":\"XXGLB\",\"simpleName\":\"信息管理部\",\"name\":\"信息管理部\",\"fullName\":\"上海浦东新区公共交通有限公司/上海浦东新区公交本部/浦交本部/信息管理部\",\"status\":\"01\",\"remark\":null,\"type\":\"02\",\"attributes\":\"\",\"sort\":\"KD01.0101.0001.0012\"},\"userAuthList\":[{\"pjtId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"pjtName\":\"线路档案系统\",\"pjtCode\":\"SYS0015\",\"sort\":\"15\",\"roleList\":[{\"roleId\":\"5e7bcde5554b470ab3a1324703cfed6e\",\"roleName\":\"拓华测试角色\",\"roleCode\":\"thcsjs\",\"sort\":\"1\",\"resourceList\":[{\"resourceId\":\"d3f86b2cb7004cfdb0fcde3cd7c63db8\",\"parentId\":\"3196ffbd51fb4a1fb0197e5c78b7cf47\",\"resourceName\":\"定时任务\",\"resourceCode\":\"定时任务\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"110\",\"menuParentId\":\"2\",\"groupBy\":null},{\"resourceId\":\"f2a0bdbb1a284f1d999c2512bd48878a\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"地图维度查询\",\"resourceCode\":\"地图维度查询\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2032\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"aacd5a3c958c41dabb1b169eec78f5ad\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"线路变更管理\",\"resourceCode\":\"线路变更管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2031\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"1206d2b8eab64861a7eb01ed048ca520\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"菜单管理\",\"resourceCode\":\"菜单管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"103\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"eb239b91709a48d4b9e2d27d72258154\",\"parentId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"resourceName\":\"线路变更月报表\",\"resourceCode\":\"线路变更月报表\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2010\",\"menuParentId\":\"2034\",\"groupBy\":null},{\"resourceId\":\"625b5ad8ed284b8fa2946109332ee240\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路基本信息\",\"resourceCode\":\"lineinfo\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2007\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"2cd312c1fd8f42c59dbfea33e2d6b0ba\",\"parentId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"resourceName\":\"线路基础信息报表\",\"resourceCode\":\"线路基础信息报表\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2035\",\"menuParentId\":\"2034\",\"groupBy\":null},{\"resourceId\":\"fe9efa556357482cacbcc95010275589\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"岗位管理\",\"resourceCode\":\"岗位管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"104\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"49611a31bea943b6bdb855a2d4d2dcf1\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"部门管理\",\"resourceCode\":\"部门管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"103\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"c168cb7d7f0b44ed8279371086993137\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"用户管理\",\"resourceCode\":\"/system/user\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"0\",\"menuId\":\"100\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"5f5f6fb757894661bd005a74327cc6df\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"字典管理\",\"resourceCode\":\"字典管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"105\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"报表管理\",\"resourceCode\":\"报表管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2034\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"系统管理\",\"resourceCode\":\"system\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"2\",\"menuId\":\"1\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"7145d027c875466291722a9c5abeb368\",\"parentId\":\"a937d70ad81d415294ae226a8acc711a\",\"resourceName\":\"线路历史沿革\",\"resourceCode\":\"线路历史沿革\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2012\",\"menuParentId\":\"2033\",\"groupBy\":null},{\"resourceId\":\"3196ffbd51fb4a1fb0197e5c78b7cf47\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"系统监控\",\"resourceCode\":\"系统监控\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"2\",\"menuId\":\"2\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"2e9a714cdf984da38e0c6a74e452e3b0\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路变更月报表\",\"resourceCode\":\"historyReport\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"4\",\"menuId\":\"2010\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"1c382ca2da92468ab53c205daed27286\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路基本信息月报表\",\"resourceCode\":\"lineReport\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"3\",\"menuId\":\"2009\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"a937d70ad81d415294ae226a8acc711a\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"历史信息管理\",\"resourceCode\":\"历史信息管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2033\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"f25d5506f9224c6c9fac72219dff8f8a\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"角色管理\",\"resourceCode\":\"角色管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"101\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"54087ffab360444680066475d2c745da\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"线路档案\",\"resourceCode\":\"lineinfo\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2006\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"fa687ea4d5494e0c80f08269bf8ebcea\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"沿革\",\"resourceCode\":\"historyCompare\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"6\",\"menuId\":\"2012\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"50bc627ecc1841f786ae011fda227561\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"地图查询\",\"resourceCode\":\"map\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"5\",\"menuId\":\"2011\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"2a0bea23ab554586a563e1ff8b8ef8cf\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路审核\",\"resourceCode\":\"lineExamine\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2030\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"6308d837f5574216816c40a94c327d9d\",\"parentId\":\"aacd5a3c958c41dabb1b169eec78f5ad\",\"resourceName\":\"线路变更信息\",\"resourceCode\":\"lineExamine\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"lineHistory\",\"sort\":\"\",\"menuId\":\"2008\",\"menuParentId\":\"2031\",\"groupBy\":null},{\"resourceId\":\"09e645f5086a465bbd6992adecfbba7e\",\"parentId\":\"f2a0bdbb1a284f1d999c2512bd48878a\",\"resourceName\":\"地图\",\"resourceCode\":\"地图\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2011\",\"menuParentId\":\"2032\",\"groupBy\":null}]}],\"globalResourceList\":[{\"resourceId\":\"09e645f5086a465bbd6992adecfbba7e\",\"parentId\":\"f2a0bdbb1a284f1d999c2512bd48878a\",\"resourceName\":\"地图\",\"resourceCode\":\"地图\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2011\",\"menuParentId\":\"2032\",\"groupBy\":null},{\"resourceId\":\"1206d2b8eab64861a7eb01ed048ca520\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"菜单管理\",\"resourceCode\":\"菜单管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"103\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"1c382ca2da92468ab53c205daed27286\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路基本信息月报表\",\"resourceCode\":\"lineReport\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"3\",\"menuId\":\"2009\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"2a0bea23ab554586a563e1ff8b8ef8cf\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路审核\",\"resourceCode\":\"lineExamine\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2030\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"2cd312c1fd8f42c59dbfea33e2d6b0ba\",\"parentId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"resourceName\":\"线路基础信息报表\",\"resourceCode\":\"线路基础信息报表\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2035\",\"menuParentId\":\"2034\",\"groupBy\":null},{\"resourceId\":\"2e9a714cdf984da38e0c6a74e452e3b0\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路变更月报表\",\"resourceCode\":\"historyReport\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"4\",\"menuId\":\"2010\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"3196ffbd51fb4a1fb0197e5c78b7cf47\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"系统监控\",\"resourceCode\":\"系统监控\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"2\",\"menuId\":\"2\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"报表管理\",\"resourceCode\":\"报表管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2034\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"49611a31bea943b6bdb855a2d4d2dcf1\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"部门管理\",\"resourceCode\":\"部门管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"103\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"50bc627ecc1841f786ae011fda227561\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"地图查询\",\"resourceCode\":\"map\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"5\",\"menuId\":\"2011\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"54087ffab360444680066475d2c745da\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"线路档案\",\"resourceCode\":\"lineinfo\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2006\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"5f5f6fb757894661bd005a74327cc6df\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"字典管理\",\"resourceCode\":\"字典管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"105\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"625b5ad8ed284b8fa2946109332ee240\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路基本信息\",\"resourceCode\":\"lineinfo\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2007\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"6308d837f5574216816c40a94c327d9d\",\"parentId\":\"aacd5a3c958c41dabb1b169eec78f5ad\",\"resourceName\":\"线路变更信息\",\"resourceCode\":\"lineExamine\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"lineHistory\",\"sort\":\"\",\"menuId\":\"2008\",\"menuParentId\":\"2031\",\"groupBy\":null},{\"resourceId\":\"7145d027c875466291722a9c5abeb368\",\"parentId\":\"a937d70ad81d415294ae226a8acc711a\",\"resourceName\":\"线路历史沿革\",\"resourceCode\":\"线路历史沿革\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2012\",\"menuParentId\":\"2033\",\"groupBy\":null},{\"resourceId\":\"a937d70ad81d415294ae226a8acc711a\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"历史信息管理\",\"resourceCode\":\"历史信息管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2033\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"aacd5a3c958c41dabb1b169eec78f5ad\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"线路变更管理\",\"resourceCode\":\"线路变更管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2031\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"系统管理\",\"resourceCode\":\"system\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"2\",\"menuId\":\"1\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"c168cb7d7f0b44ed8279371086993137\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"用户管理\",\"resourceCode\":\"/system/user\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"0\",\"menuId\":\"100\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"d3f86b2cb7004cfdb0fcde3cd7c63db8\",\"parentId\":\"3196ffbd51fb4a1fb0197e5c78b7cf47\",\"resourceName\":\"定时任务\",\"resourceCode\":\"定时任务\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"110\",\"menuParentId\":\"2\",\"groupBy\":null},{\"resourceId\":\"eb239b91709a48d4b9e2d27d72258154\",\"parentId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"resourceName\":\"线路变更月报表\",\"resourceCode\":\"线路变更月报表\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2010\",\"menuParentId\":\"2034\",\"groupBy\":null},{\"resourceId\":\"f25d5506f9224c6c9fac72219dff8f8a\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"角色管理\",\"resourceCode\":\"角色管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"101\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"f2a0bdbb1a284f1d999c2512bd48878a\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"地图维度查询\",\"resourceCode\":\"地图维度查询\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2032\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"fa687ea4d5494e0c80f08269bf8ebcea\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"沿革\",\"resourceCode\":\"historyCompare\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"6\",\"menuId\":\"2012\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"fe9efa556357482cacbcc95010275589\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"岗位管理\",\"resourceCode\":\"岗位管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"104\",\"menuParentId\":\"1\",\"groupBy\":null}]}]}}"; | 107 | //String dataJsonStr="{\"code\":200,\"msg\":\"成功\",\"data\":{\"userId\":\"50aa4eea655d42c49bef086e68a789ad\",\"userName\":\"拓华\",\"userType\":null,\"photoPath\":\"http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/http://106.54.221.120:8013/\",\"sex\":\"女\",\"idCard\":\"\",\"telephoneNumber\":\"1\",\"mailbox\":\"1\",\"account\":\"100005\",\"status\":\"01\",\"remark\":\"\",\"sort\":\"\",\"orgId\":\"7E1EAC2C-AE4D-42B3-A8ED-B0AF6929B889\",\"companyInfo\":{\"organizationId\":\"578ECB10-9859-47CC-A6D5-CEE09536243D\",\"parentId\":\"7AE0A3FB-2D6C-4E51-8B10-71EAFA2D269A\",\"number\":\"KD01.0115\",\"simpleNameCn\":\"PJ\",\"simpleName\":\"浦交本部\",\"name\":\"上海浦东新区公交本部\",\"fullName\":\"上海浦东新区公共交通有限公司/上海浦东新区公交本部\",\"status\":\"01\",\"remark\":null,\"type\":\"01\",\"attributes\":\"01\",\"sort\":\"KD01.0101\"},\"orgInfo\":{\"organizationId\":\"7E1EAC2C-AE4D-42B3-A8ED-B0AF6929B889\",\"parentId\":\"EB26BC7B-D6BA-49BE-83A2-661E6D1E1825\",\"number\":\"KD01.0115.0013.0010\",\"simpleNameCn\":\"XXGLB\",\"simpleName\":\"信息管理部\",\"name\":\"信息管理部\",\"fullName\":\"上海浦东新区公共交通有限公司/上海浦东新区公交本部/浦交本部/信息管理部\",\"status\":\"01\",\"remark\":null,\"type\":\"02\",\"attributes\":\"\",\"sort\":\"KD01.0101.0001.0012\"},\"userAuthList\":[{\"pjtId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"pjtName\":\"线路档案系统\",\"pjtCode\":\"SYS0015\",\"sort\":\"15\",\"roleList\":[{\"roleId\":\"5e7bcde5554b470ab3a1324703cfed6e\",\"roleName\":\"拓华测试角色\",\"roleCode\":\"thcsjs\",\"sort\":\"1\",\"resourceList\":[{\"resourceId\":\"d3f86b2cb7004cfdb0fcde3cd7c63db8\",\"parentId\":\"3196ffbd51fb4a1fb0197e5c78b7cf47\",\"resourceName\":\"定时任务\",\"resourceCode\":\"定时任务\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"110\",\"menuParentId\":\"2\",\"groupBy\":null},{\"resourceId\":\"f2a0bdbb1a284f1d999c2512bd48878a\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"地图维度查询\",\"resourceCode\":\"地图维度查询\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2032\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"aacd5a3c958c41dabb1b169eec78f5ad\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"线路变更管理\",\"resourceCode\":\"线路变更管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2031\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"1206d2b8eab64861a7eb01ed048ca520\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"菜单管理\",\"resourceCode\":\"菜单管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"103\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"eb239b91709a48d4b9e2d27d72258154\",\"parentId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"resourceName\":\"线路变更月报表\",\"resourceCode\":\"线路变更月报表\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2010\",\"menuParentId\":\"2034\",\"groupBy\":null},{\"resourceId\":\"625b5ad8ed284b8fa2946109332ee240\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路基本信息\",\"resourceCode\":\"lineinfo\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2007\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"2cd312c1fd8f42c59dbfea33e2d6b0ba\",\"parentId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"resourceName\":\"线路基础信息报表\",\"resourceCode\":\"线路基础信息报表\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2035\",\"menuParentId\":\"2034\",\"groupBy\":null},{\"resourceId\":\"fe9efa556357482cacbcc95010275589\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"岗位管理\",\"resourceCode\":\"岗位管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"104\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"49611a31bea943b6bdb855a2d4d2dcf1\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"部门管理\",\"resourceCode\":\"部门管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"103\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"c168cb7d7f0b44ed8279371086993137\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"用户管理\",\"resourceCode\":\"/system/user\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"0\",\"menuId\":\"100\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"5f5f6fb757894661bd005a74327cc6df\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"字典管理\",\"resourceCode\":\"字典管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"105\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"报表管理\",\"resourceCode\":\"报表管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2034\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"系统管理\",\"resourceCode\":\"system\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"2\",\"menuId\":\"1\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"7145d027c875466291722a9c5abeb368\",\"parentId\":\"a937d70ad81d415294ae226a8acc711a\",\"resourceName\":\"线路历史沿革\",\"resourceCode\":\"线路历史沿革\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2012\",\"menuParentId\":\"2033\",\"groupBy\":null},{\"resourceId\":\"3196ffbd51fb4a1fb0197e5c78b7cf47\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"系统监控\",\"resourceCode\":\"系统监控\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"2\",\"menuId\":\"2\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"2e9a714cdf984da38e0c6a74e452e3b0\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路变更月报表\",\"resourceCode\":\"historyReport\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"4\",\"menuId\":\"2010\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"1c382ca2da92468ab53c205daed27286\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路基本信息月报表\",\"resourceCode\":\"lineReport\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"3\",\"menuId\":\"2009\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"a937d70ad81d415294ae226a8acc711a\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"历史信息管理\",\"resourceCode\":\"历史信息管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2033\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"f25d5506f9224c6c9fac72219dff8f8a\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"角色管理\",\"resourceCode\":\"角色管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"101\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"54087ffab360444680066475d2c745da\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"线路档案\",\"resourceCode\":\"lineinfo\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2006\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"fa687ea4d5494e0c80f08269bf8ebcea\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"沿革\",\"resourceCode\":\"historyCompare\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"6\",\"menuId\":\"2012\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"50bc627ecc1841f786ae011fda227561\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"地图查询\",\"resourceCode\":\"map\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"5\",\"menuId\":\"2011\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"2a0bea23ab554586a563e1ff8b8ef8cf\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路审核\",\"resourceCode\":\"lineExamine\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2030\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"6308d837f5574216816c40a94c327d9d\",\"parentId\":\"aacd5a3c958c41dabb1b169eec78f5ad\",\"resourceName\":\"线路变更信息\",\"resourceCode\":\"lineExamine\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"lineHistory\",\"sort\":\"\",\"menuId\":\"2008\",\"menuParentId\":\"2031\",\"groupBy\":null},{\"resourceId\":\"09e645f5086a465bbd6992adecfbba7e\",\"parentId\":\"f2a0bdbb1a284f1d999c2512bd48878a\",\"resourceName\":\"地图\",\"resourceCode\":\"地图\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2011\",\"menuParentId\":\"2032\",\"groupBy\":null}]}],\"globalResourceList\":[{\"resourceId\":\"09e645f5086a465bbd6992adecfbba7e\",\"parentId\":\"f2a0bdbb1a284f1d999c2512bd48878a\",\"resourceName\":\"地图\",\"resourceCode\":\"地图\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2011\",\"menuParentId\":\"2032\",\"groupBy\":null},{\"resourceId\":\"1206d2b8eab64861a7eb01ed048ca520\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"菜单管理\",\"resourceCode\":\"菜单管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"103\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"1c382ca2da92468ab53c205daed27286\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路基本信息月报表\",\"resourceCode\":\"lineReport\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"3\",\"menuId\":\"2009\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"2a0bea23ab554586a563e1ff8b8ef8cf\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路审核\",\"resourceCode\":\"lineExamine\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2030\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"2cd312c1fd8f42c59dbfea33e2d6b0ba\",\"parentId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"resourceName\":\"线路基础信息报表\",\"resourceCode\":\"线路基础信息报表\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2035\",\"menuParentId\":\"2034\",\"groupBy\":null},{\"resourceId\":\"2e9a714cdf984da38e0c6a74e452e3b0\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路变更月报表\",\"resourceCode\":\"historyReport\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"4\",\"menuId\":\"2010\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"3196ffbd51fb4a1fb0197e5c78b7cf47\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"系统监控\",\"resourceCode\":\"系统监控\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"2\",\"menuId\":\"2\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"报表管理\",\"resourceCode\":\"报表管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2034\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"49611a31bea943b6bdb855a2d4d2dcf1\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"部门管理\",\"resourceCode\":\"部门管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"103\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"50bc627ecc1841f786ae011fda227561\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"地图查询\",\"resourceCode\":\"map\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"5\",\"menuId\":\"2011\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"54087ffab360444680066475d2c745da\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"线路档案\",\"resourceCode\":\"lineinfo\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2006\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"5f5f6fb757894661bd005a74327cc6df\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"字典管理\",\"resourceCode\":\"字典管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"105\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"625b5ad8ed284b8fa2946109332ee240\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"线路基本信息\",\"resourceCode\":\"lineinfo\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2007\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"6308d837f5574216816c40a94c327d9d\",\"parentId\":\"aacd5a3c958c41dabb1b169eec78f5ad\",\"resourceName\":\"线路变更信息\",\"resourceCode\":\"lineExamine\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"lineHistory\",\"sort\":\"\",\"menuId\":\"2008\",\"menuParentId\":\"2031\",\"groupBy\":null},{\"resourceId\":\"7145d027c875466291722a9c5abeb368\",\"parentId\":\"a937d70ad81d415294ae226a8acc711a\",\"resourceName\":\"线路历史沿革\",\"resourceCode\":\"线路历史沿革\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2012\",\"menuParentId\":\"2033\",\"groupBy\":null},{\"resourceId\":\"a937d70ad81d415294ae226a8acc711a\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"历史信息管理\",\"resourceCode\":\"历史信息管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2033\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"aacd5a3c958c41dabb1b169eec78f5ad\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"线路变更管理\",\"resourceCode\":\"线路变更管理\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2031\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"系统管理\",\"resourceCode\":\"system\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"2\",\"menuId\":\"1\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"c168cb7d7f0b44ed8279371086993137\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"用户管理\",\"resourceCode\":\"/system/user\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"0\",\"menuId\":\"100\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"d3f86b2cb7004cfdb0fcde3cd7c63db8\",\"parentId\":\"3196ffbd51fb4a1fb0197e5c78b7cf47\",\"resourceName\":\"定时任务\",\"resourceCode\":\"定时任务\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"110\",\"menuParentId\":\"2\",\"groupBy\":null},{\"resourceId\":\"eb239b91709a48d4b9e2d27d72258154\",\"parentId\":\"3f0ca7150a824cd09bdbdda92f9dee6b\",\"resourceName\":\"线路变更月报表\",\"resourceCode\":\"线路变更月报表\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2010\",\"menuParentId\":\"2034\",\"groupBy\":null},{\"resourceId\":\"f25d5506f9224c6c9fac72219dff8f8a\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"角色管理\",\"resourceCode\":\"角色管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"101\",\"menuParentId\":\"1\",\"groupBy\":null},{\"resourceId\":\"f2a0bdbb1a284f1d999c2512bd48878a\",\"parentId\":\"6dc39f7782d94f45aecda6075b92cecd\",\"resourceName\":\"地图维度查询\",\"resourceCode\":\"地图维度查询\",\"resourceIcon\":\"\",\"type\":\"03\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"2032\",\"menuParentId\":\"\",\"groupBy\":null},{\"resourceId\":\"fa687ea4d5494e0c80f08269bf8ebcea\",\"parentId\":\"54087ffab360444680066475d2c745da\",\"resourceName\":\"沿革\",\"resourceCode\":\"historyCompare\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"6\",\"menuId\":\"2012\",\"menuParentId\":\"2006\",\"groupBy\":null},{\"resourceId\":\"fe9efa556357482cacbcc95010275589\",\"parentId\":\"b564cfa4f8eb46d78b9d8255ede6696e\",\"resourceName\":\"岗位管理\",\"resourceCode\":\"岗位管理\",\"resourceIcon\":\"\",\"type\":\"01\",\"vuePath\":\"\",\"vueComponent\":\"\",\"sort\":\"\",\"menuId\":\"104\",\"menuParentId\":\"1\",\"groupBy\":null}]}]}}"; |
| 106 | JSONObject jsonObject = JSON.parseObject(dataJsonStr); | 108 | JSONObject jsonObject = JSON.parseObject(dataJsonStr); |
bsthLineProfiles/src/main/resources/mybatis/mybatis/system/BsthTLineMapper.xml
| @@ -253,6 +253,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -253,6 +253,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 253 | <if test="files != null">files,</if> | 253 | <if test="files != null">files,</if> |
| 254 | <if test="lineUpdateType != null">line_update_type,</if> | 254 | <if test="lineUpdateType != null">line_update_type,</if> |
| 255 | <if test="revenueType != null">revenue_type,</if> | 255 | <if test="revenueType != null">revenue_type,</if> |
| 256 | + <if test="deptId != null">dept_id,</if> | ||
| 256 | create_time, | 257 | create_time, |
| 257 | </trim> | 258 | </trim> |
| 258 | <trim prefix="values (" suffix=")" suffixOverrides=","> | 259 | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| @@ -318,6 +319,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -318,6 +319,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 318 | <if test="files != null">#{files},</if> | 319 | <if test="files != null">#{files},</if> |
| 319 | <if test="lineUpdateType != null">#{lineUpdateType},</if> | 320 | <if test="lineUpdateType != null">#{lineUpdateType},</if> |
| 320 | <if test="revenueType != null">#{revenueType},</if> | 321 | <if test="revenueType != null">#{revenueType},</if> |
| 322 | + <if test="deptId != null">#{deptId},</if> | ||
| 321 | sysdate(), | 323 | sysdate(), |
| 322 | </trim> | 324 | </trim> |
| 323 | </insert> | 325 | </insert> |
| @@ -390,6 +392,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -390,6 +392,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 390 | <if test="files != null">files = #{files},</if> | 392 | <if test="files != null">files = #{files},</if> |
| 391 | <if test="revenueType != null">revenue_type = #{revenueType},</if> | 393 | <if test="revenueType != null">revenue_type = #{revenueType},</if> |
| 392 | <if test="lineUpdateType != null">line_update_type = #{lineUpdateType},</if> | 394 | <if test="lineUpdateType != null">line_update_type = #{lineUpdateType},</if> |
| 395 | + <if test="deptId != null">dept_id = #{deptId},</if> | ||
| 393 | </trim> | 396 | </trim> |
| 394 | where id = #{id} | 397 | where id = #{id} |
| 395 | </update> | 398 | </update> |
| @@ -460,6 +463,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -460,6 +463,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 460 | <if test="files != null">files = #{files},</if> | 463 | <if test="files != null">files = #{files},</if> |
| 461 | <if test="lineUpdateType != null">line_update_type = #{lineUpdateType},</if> | 464 | <if test="lineUpdateType != null">line_update_type = #{lineUpdateType},</if> |
| 462 | <if test="revenueType != null">revenue_type = #{revenueType},</if> | 465 | <if test="revenueType != null">revenue_type = #{revenueType},</if> |
| 466 | + <if test="deptId != null">dept_id = #{deptId},</if> | ||
| 463 | </trim> | 467 | </trim> |
| 464 | where line_name = #{lineName} | 468 | where line_name = #{lineName} |
| 465 | </update> | 469 | </update> |
| @@ -606,6 +610,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -606,6 +610,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 606 | <if test="examineType != null">examine_type,</if> | 610 | <if test="examineType != null">examine_type,</if> |
| 607 | <if test="lineUpdateType != null">line_update_type,</if> | 611 | <if test="lineUpdateType != null">line_update_type,</if> |
| 608 | <if test="examineStatus != null">examine_status,</if> | 612 | <if test="examineStatus != null">examine_status,</if> |
| 613 | + <if test="deptId != null">dept_id,</if> | ||
| 609 | create_time, | 614 | create_time, |
| 610 | </trim> | 615 | </trim> |
| 611 | <trim prefix="values (" suffix=")" suffixOverrides=","> | 616 | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| @@ -673,6 +678,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -673,6 +678,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 673 | <if test="examineType != null">#{examineType},</if> | 678 | <if test="examineType != null">#{examineType},</if> |
| 674 | <if test="lineUpdateType != null">#{lineUpdateType},</if> | 679 | <if test="lineUpdateType != null">#{lineUpdateType},</if> |
| 675 | <if test="examineStatus != null">#{examineStatus},</if> | 680 | <if test="examineStatus != null">#{examineStatus},</if> |
| 681 | + <if test="deptId != null">#{deptId},</if> | ||
| 676 | sysdate(), | 682 | sysdate(), |
| 677 | </trim> | 683 | </trim> |
| 678 | </insert> | 684 | </insert> |
| @@ -764,6 +770,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -764,6 +770,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 764 | <if test="revenueType != null">revenue_type = #{revenueType},</if> | 770 | <if test="revenueType != null">revenue_type = #{revenueType},</if> |
| 765 | <if test="examineType != null">examine_type = #{examineType},</if> | 771 | <if test="examineType != null">examine_type = #{examineType},</if> |
| 766 | <if test="examineStatus != null">examine_status = #{examineStatus},</if> | 772 | <if test="examineStatus != null">examine_status = #{examineStatus},</if> |
| 773 | + <if test="deptId != null">dept_id=#{deptId},</if> | ||
| 767 | </trim> | 774 | </trim> |
| 768 | where id = #{id} | 775 | where id = #{id} |
| 769 | </update> | 776 | </update> |
| @@ -937,6 +944,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -937,6 +944,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 937 | <if test="revenueType != null">revenue_type,</if> | 944 | <if test="revenueType != null">revenue_type,</if> |
| 938 | <if test="updateStatus != null">update_status,</if> | 945 | <if test="updateStatus != null">update_status,</if> |
| 939 | <if test="historyId != null">history_id,</if> | 946 | <if test="historyId != null">history_id,</if> |
| 947 | + <if test="deptId != null">dept_id,</if> | ||
| 940 | create_time, | 948 | create_time, |
| 941 | </trim> | 949 | </trim> |
| 942 | <trim prefix="values (" suffix=")" suffixOverrides=","> | 950 | <trim prefix="values (" suffix=")" suffixOverrides=","> |
| @@ -1004,6 +1012,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -1004,6 +1012,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 1004 | <if test="revenueType != null">#{revenueType},</if> | 1012 | <if test="revenueType != null">#{revenueType},</if> |
| 1005 | <if test="updateStatus != null">#{updateStatus},</if> | 1013 | <if test="updateStatus != null">#{updateStatus},</if> |
| 1006 | <if test="historyId != null">#{historyId},</if> | 1014 | <if test="historyId != null">#{historyId},</if> |
| 1015 | + <if test="deptId != null">#{deptId},</if> | ||
| 1007 | sysdate(), | 1016 | sysdate(), |
| 1008 | </trim> | 1017 | </trim> |
| 1009 | </insert> | 1018 | </insert> |
| @@ -1076,6 +1085,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -1076,6 +1085,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 1076 | <if test="lineUpdateType != null">line_update_type = #{lineUpdateType},</if> | 1085 | <if test="lineUpdateType != null">line_update_type = #{lineUpdateType},</if> |
| 1077 | <if test="revenueType != null">revenue_type = #{revenueType},</if> | 1086 | <if test="revenueType != null">revenue_type = #{revenueType},</if> |
| 1078 | <if test="updateStatus != null ">update_status = #{updateStatus},</if> | 1087 | <if test="updateStatus != null ">update_status = #{updateStatus},</if> |
| 1088 | + <if test="deptId != null">dept_id=#{deptId},</if> | ||
| 1079 | </trim> | 1089 | </trim> |
| 1080 | where id = #{id} | 1090 | where id = #{id} |
| 1081 | </update> | 1091 | </update> |
| @@ -1307,14 +1317,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -1307,14 +1317,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 1307 | 1317 | ||
| 1308 | 1318 | ||
| 1309 | <select id="selectBsthTLineListAndExamine" parameterType="BsthTLine" resultMap="BsthTLineResult"> | 1319 | <select id="selectBsthTLineListAndExamine" parameterType="BsthTLine" resultMap="BsthTLineResult"> |
| 1310 | - select bsth_t_line.*,bsth_t_line_examine.examine_status from bsth_t_line left join bsth_t_line_examine | ||
| 1311 | - on bsth_t_line.line_name=bsth_t_line_examine.line_name | 1320 | + select b.*,e.examine_status from bsth_t_line b left join bsth_t_line_examine e |
| 1321 | + on b.line_name=e.line_name | ||
| 1312 | <where> | 1322 | <where> |
| 1313 | - <if test="lineName != null and lineName != ''"> bsth_t_line.line_name= #{lineName}</if> | ||
| 1314 | - <if test="company != null and company != ''"> and bsth_t_line.company = #{company}</if> | ||
| 1315 | - <if test="fCompany != null and fCompany != ''"> and bsth_t_line.f_company = #{fCompany}</if> | 1323 | + <if test="lineName != null and lineName != ''"> b.line_name= #{lineName}</if> |
| 1324 | + <if test="company != null and company != ''"> and b.company = #{company}</if> | ||
| 1325 | + <if test="fCompany != null and fCompany != ''"> and b.f_company = #{fCompany}</if> | ||
| 1326 | + ${params.dataScope} | ||
| 1316 | </where> | 1327 | </where> |
| 1317 | - order by bsth_t_line.id desc | 1328 | + order by b.id desc |
| 1318 | </select> | 1329 | </select> |
| 1319 | 1330 | ||
| 1320 | 1331 | ||
| @@ -1380,4 +1391,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | @@ -1380,4 +1391,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | ||
| 1380 | </where> | 1391 | </where> |
| 1381 | </select> | 1392 | </select> |
| 1382 | 1393 | ||
| 1394 | + <select id="getDeptId" parameterType="com.ruoyi.project.system.line.domain.Company" resultType="long"> | ||
| 1395 | + select dept_id from bsth_company where fCompany=#{fCompany} | ||
| 1396 | + </select> | ||
| 1397 | + | ||
| 1383 | </mapper> | 1398 | </mapper> |
| 1384 | \ No newline at end of file | 1399 | \ No newline at end of file |