Procházet zdrojové kódy

Merge branch '2.0.0' of http://git.ycjcjy.com/fuxingfan/smartCommunity into 2.0.0

魏熙美 před 6 roky
rodič
revize
4cc1c46a6d

+ 5
- 9
CODE/smart-community/app-api/src/main/java/com/community/huiju/controller/FaceController.java Zobrazit soubor

@@ -26,18 +26,16 @@ public class FaceController extends BaseController {
26 26
     @ApiOperation(value = "添加人脸图片", notes = "添加人脸图片")
27 27
     @ApiImplicitParams({
28 28
             @ApiImplicitParam(paramType = "header",dataType = "String",name = "X-Auth-Token",value = "Token"),
29
-            @ApiImplicitParam(paramType = "query",dataType = "Integer",name = "otherUserId",value = "家属或租户ID,不填为本人"),
30
-            @ApiImplicitParam(paramType = "query",dataType = "Integer",name = "verifyID",value = "审核id")
29
+            @ApiImplicitParam(paramType = "query",dataType = "Integer",name = "otherUserId",value = "家属或租户ID,不填为本人")
31 30
     })
32 31
 
33 32
     @RequestMapping(value = "/addFace",method = RequestMethod.POST)
34 33
     public Object getTaFace(HttpSession session,
35 34
                             @ApiParam(value = "file" ,required = true) MultipartFile uploadFile,
36
-                            @RequestParam(required = false) Integer otherUserId,
37
-                            @RequestParam(required = false) Integer verifyID){
35
+                            @RequestParam(required = false) Integer otherUserId){
38 36
         ResponseBean responseBean = new ResponseBean();
39 37
         UserElement userElement = getUserElement(session);
40
-        responseBean = faceServicel.addFace(userElement ,uploadFile,otherUserId,verifyID);
38
+        responseBean = faceServicel.addFace(userElement ,uploadFile,otherUserId);
41 39
         return responseBean;
42 40
     }
43 41
 
@@ -72,13 +70,11 @@ public class FaceController extends BaseController {
72 70
     @ApiImplicitParams({
73 71
             @ApiImplicitParam(paramType = "header",dataType = "String",name = "X-Auth-Token",value = "Token"),
74 72
             @ApiImplicitParam(paramType = "query",dataType = "Integer",name = "otherUserId",value = "家属或租户ID,不填为本人"),
75
-            @ApiImplicitParam(paramType = "query",dataType = "Integer",name = "verifyID",value = "审核id")
76 73
     })
77 74
     @RequestMapping(value = "/deleteFace",method = RequestMethod.GET)
78
-    public Object deleteFace(HttpSession session, @RequestParam(required = false) Integer otherUserId,
79
-                             @RequestParam(required = false) Integer verifyID){
75
+    public Object deleteFace(HttpSession session, @RequestParam(required = false) Integer otherUserId){
80 76
         UserElement userElement = getUserElement(session);
81
-        ResponseBean responseBean = faceServicel.deleteFace(userElement,otherUserId,verifyID);
77
+        ResponseBean responseBean = faceServicel.deleteFace(userElement,otherUserId);
82 78
         return responseBean;
83 79
     }
84 80
 

+ 2
- 2
CODE/smart-community/app-api/src/main/java/com/community/huiju/service/FaceServiceI.java Zobrazit soubor

@@ -14,7 +14,7 @@ public interface FaceServiceI {
14 14
      *  @param otherUserId 关联家属或者租客ID
15 15
      * @return
16 16
      */
17
-    ResponseBean addFace(UserElement userElement, MultipartFile uploadFile,Integer otherUserId,Integer verifyID);
17
+    ResponseBean addFace(UserElement userElement, MultipartFile uploadFile,Integer otherUserId);
18 18
 
19 19
     /**
20 20
      * 更新当前人脸
@@ -47,5 +47,5 @@ public interface FaceServiceI {
47 47
      * @param otherUserId
48 48
      * @return
49 49
      */
50
-    ResponseBean deleteFace(UserElement userElement, Integer otherUserId,Integer verifyID);
50
+    ResponseBean deleteFace(UserElement userElement, Integer otherUserId);
51 51
 }

+ 11
- 11
CODE/smart-community/app-api/src/main/java/com/community/huiju/service/impl/FaceServicelimpl.java Zobrazit soubor

@@ -70,11 +70,11 @@ public class FaceServicelimpl implements FaceServiceI {
70 70
 
71 71
     @Override
72 72
     @Transactional(rollbackFor = Exception.class)
73
-    public ResponseBean addFace(UserElement userElement, MultipartFile uploadFile, Integer otherUserId ,Integer verifyID) {
73
+    public ResponseBean addFace(UserElement userElement, MultipartFile uploadFile, Integer otherUserId) {
74 74
         TpEquipmentTree tpEquipmentTree = tpEquipmentTreeMapper.selectByCommunityId(userElement.getCommunityId());
75 75
         ResponseBean responseBean = new ResponseBean();
76 76
         /*审核房产是否通过*/
77
-        TaUserVerify taUserVerify= infoExist(verifyID);
77
+        TaUserVerify taUserVerify= infoExist(userElement.getUserVerifyId());
78 78
         if (null == taUserVerify) {
79 79
             responseBean.addError("房产审核未通过");
80 80
             return responseBean;
@@ -138,10 +138,7 @@ public class FaceServicelimpl implements FaceServiceI {
138 138
         String faceImg = img(uploadFile);
139 139
         // 房产 审核id
140 140
         Integer userVerifyId = userElement.getUserVerifyId();
141
-        if (null != otherUserId) {
142
-            TaUserVerify otherUserVerify = getTaFaceParentId(userElement, otherUserId);
143
-            userVerifyId = otherUserVerify.getId();
144
-        }
141
+
145 142
         Integer activeUser = otherUserId == null ? userElement.getId() : otherUserId;
146 143
 
147 144
         /**
@@ -157,6 +154,7 @@ public class FaceServicelimpl implements FaceServiceI {
157 154
             responseBean.addError("您的信息不存在,请录入人脸");
158 155
             return responseBean;
159 156
         }
157
+
160 158
         face.setTaUserVerifyId(userVerifyId);
161 159
         face.setFaceImg(faceImg);
162 160
         face.setUpdateUser(userElement.getId());
@@ -402,9 +400,9 @@ public class FaceServicelimpl implements FaceServiceI {
402 400
     }
403 401
 
404 402
     @Override
405
-    public ResponseBean deleteFace(UserElement userElement, Integer otherUserId,Integer verifyID) {
403
+    public ResponseBean deleteFace(UserElement userElement, Integer otherUserId) {
406 404
         ResponseBean responseBean= new ResponseBean();
407
-        TaUserVerify taUserVerify= infoExist(verifyID);
405
+        TaUserVerify taUserVerify= infoExist(userElement.getUserVerifyId());
408 406
         if (null ==taUserVerify) {
409 407
             responseBean.addError("房产审核未通过");
410 408
             return responseBean;
@@ -428,7 +426,7 @@ public class FaceServicelimpl implements FaceServiceI {
428 426
 
429 427
         // TODO 删除人脸,是否删除海康
430 428
         // 修改人脸(图片为null时。海康删除人脸)
431
-        HKOpenApi.HKpersonGroupId(null, taUser.getHkUserId(), taUser.getHkPersonNo(), taUser.getUserName(), taUser.getHkCardNo(), tpEquipmentTree.getAppkey(), tpEquipmentTree.getSecret());
429
+//        HKOpenApi.HKpersonGroupId(null, taUser.getHkUserId(), taUser.getHkPersonNo(), taUser.getUserName(), taUser.getHkCardNo(), tpEquipmentTree.getAppkey(), tpEquipmentTree.getSecret());
432 430
         // 删除 权限
433 431
         Map<String,Object> selectUserFaceMap = Maps.newHashMap();
434 432
         selectUserFaceMap.put("personIds", taUser.getHkUserId()+"");
@@ -475,8 +473,10 @@ public class FaceServicelimpl implements FaceServiceI {
475 473
     /*校验房产是否审核通过*/
476 474
     public TaUserVerify infoExist(Integer verifyID){
477 475
         /*查询当前的房产ID*/
478
-      TaUserVerify taUserVerify = taUserVerifyMapper.selectByPrimaryKey(verifyID);
479
-
476
+        TaUserVerify taUserVerify = null;
477
+      if (!"".equals(verifyID)) {
478
+        taUserVerify = taUserVerifyMapper.selectByPrimaryKey(verifyID);
479
+      }
480 480
       if (null!= taUserVerify && taUserVerify.getVerifyStatus().equals("1")) {
481 481
           return taUserVerify;
482 482
       }

+ 22
- 22
CODE/smart-community/community-common/src/main/java/com/community/commom/hk/HKOpenApi.java Zobrazit soubor

@@ -952,28 +952,28 @@ public class HKOpenApi {
952 952
 
953 953
     public static void main(String[] args) {
954 954
         // getDefaultUserUuid();
955
-        Map<String,Object> parMap = Maps.newHashMap();
956
-        String url = "http://pingtai.vipgz1.idcfengye.com" + HKConstant.ITF_MONITORY_POINT;
957
-        //设置APPKEY
958
-        parMap.put("appkey", "d30396a0");
959
-        //设置时间参数
960
-        parMap.put("time", System.currentTimeMillis());
961
-        parMap.put("pageNo","1");
962
-        parMap.put("pageSize","100");
963
-        parMap.put("opUserUuid","5b2eb534696b11e89c2e438f92627767");
964
-        parMap.put("unitUuids","1048576");
965
-        String params =  JSON.toJSONString(parMap);
966
-        log.info("获取 监控列表 请求参数:{}", params);
967
-        String data = null;
968
-        try {
969
-            data = HttpClientSSLUtils.doPost(url + "?token=" + Digests.buildToken(url + "?" + params, params, "6a939cf0b2914004a2755e70c6c96e02"), params);
970
-            log.info("获取 监控列表 请求返回结果:{}",data);
971
-        } catch (Exception e) {
972
-            e.printStackTrace();
973
-            log.error("获取监控列表失败!",e);
974
-            throw new RuntimeException("获取监控列表失败!");
975
-        }
976
-
955
+        //Map<String,Object> parMap = Maps.newHashMap();
956
+        //String url = "http://pingtai.vipgz1.idcfengye.com" + HKConstant.ITF_MONITORY_POINT;
957
+        ////设置APPKEY
958
+        //parMap.put("appkey", "d30396a0");
959
+        ////设置时间参数
960
+        //parMap.put("time", System.currentTimeMillis());
961
+        //parMap.put("pageNo","1");
962
+        //parMap.put("pageSize","100");
963
+        //parMap.put("opUserUuid","5b2eb534696b11e89c2e438f92627767");
964
+        //parMap.put("unitUuids","1048576");
965
+        //String params =  JSON.toJSONString(parMap);
966
+        //log.info("获取 监控列表 请求参数:{}", params);
967
+        //String data = null;
968
+        //try {
969
+        //    data = HttpClientSSLUtils.doPost(url + "?token=" + Digests.buildToken(url + "?" + params, params, "6a939cf0b2914004a2755e70c6c96e02"), params);
970
+        //    log.info("获取 监控列表 请求返回结果:{}",data);
971
+        //} catch (Exception e) {
972
+        //    e.printStackTrace();
973
+        //    log.error("获取监控列表失败!",e);
974
+        //    throw new RuntimeException("获取监控列表失败!");
975
+        //}
976
+        getDoorsByRegionUuids();
977 977
     }
978 978
     /**
979 979
      *     删除当前人脸设备信息

+ 81
- 57
文档/MYSQL/smartCommunity.pdb Zobrazit soubor

@@ -1,5 +1,5 @@
1 1
 <?xml version="1.0" encoding="UTF-8"?>
2
-<?PowerDesigner AppLocale="UTF16" ID="{1EFA7B8F-E5BE-422B-A0AE-B907AA87924F}" Label="" LastModificationDate="1557126808" Name="smartCommunity" Objects="961" Symbols="112" Target="MySQL 5.0" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.5.0.3982"?>
2
+<?PowerDesigner AppLocale="UTF16" ID="{1EFA7B8F-E5BE-422B-A0AE-B907AA87924F}" Label="" LastModificationDate="1557136999" Name="smartCommunity" Objects="963" Symbols="112" Target="MySQL 5.0" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.5.0.3982"?>
3 3
 <!-- do not edit this file -->
4 4
 
5 5
 <Model xmlns:a="attribute" xmlns:c="collection" xmlns:o="object">
@@ -6619,7 +6619,7 @@ LABL 0 新宋体,8,N</a:FontList>
6619 6619
 <a:CreationDate>1557035790</a:CreationDate>
6620 6620
 <a:ModificationDate>1557036489</a:ModificationDate>
6621 6621
 <a:IconMode>-1</a:IconMode>
6622
-<a:Rect>((119287,30270), (136075,40768))</a:Rect>
6622
+<a:Rect>((119287,29370), (136075,41668))</a:Rect>
6623 6623
 <a:LineColor>12615680</a:LineColor>
6624 6624
 <a:FillColor>16570034</a:FillColor>
6625 6625
 <a:ShadowColor>12632256</a:ShadowColor>
@@ -15346,7 +15346,7 @@ LABL 0 新宋体,8,N</a:FontList>
15346 15346
 <a:Code>tp_configuration</a:Code>
15347 15347
 <a:CreationDate>1557035790</a:CreationDate>
15348 15348
 <a:Creator>szc</a:Creator>
15349
-<a:ModificationDate>1557036097</a:ModificationDate>
15349
+<a:ModificationDate>1557136999</a:ModificationDate>
15350 15350
 <a:Modifier>szc</a:Modifier>
15351 15351
 <a:Comment>设备配置表</a:Comment>
15352 15352
 <a:TotalSavingCurrency/>
@@ -15413,6 +15413,30 @@ LABL 0 新宋体,8,N</a:FontList>
15413 15413
 <a:Length>255</a:Length>
15414 15414
 </o:Column>
15415 15415
 <o:Column Id="o861">
15416
+<a:ObjectID>A8F0BAB1-6E7E-4B49-8A5D-49141E7CC296</a:ObjectID>
15417
+<a:Name>doorUuid</a:Name>
15418
+<a:Code>doorUuid</a:Code>
15419
+<a:CreationDate>1557136926</a:CreationDate>
15420
+<a:Creator>szc</a:Creator>
15421
+<a:ModificationDate>1557136999</a:ModificationDate>
15422
+<a:Modifier>szc</a:Modifier>
15423
+<a:Comment>门禁点UUID</a:Comment>
15424
+<a:DataType>varchar(255)</a:DataType>
15425
+<a:Length>255</a:Length>
15426
+</o:Column>
15427
+<o:Column Id="o862">
15428
+<a:ObjectID>F5670181-A362-41B6-AA66-D8360D0483EE</a:ObjectID>
15429
+<a:Name>deviceUuid</a:Name>
15430
+<a:Code>deviceUuid</a:Code>
15431
+<a:CreationDate>1557136926</a:CreationDate>
15432
+<a:Creator>szc</a:Creator>
15433
+<a:ModificationDate>1557136999</a:ModificationDate>
15434
+<a:Modifier>szc</a:Modifier>
15435
+<a:Comment>门禁设备UUID</a:Comment>
15436
+<a:DataType>varchar(255)</a:DataType>
15437
+<a:Length>255</a:Length>
15438
+</o:Column>
15439
+<o:Column Id="o863">
15416 15440
 <a:ObjectID>E23D0EF1-35C3-4551-92BD-3B247AB3717B</a:ObjectID>
15417 15441
 <a:Name>create_tiem</a:Name>
15418 15442
 <a:Code>create_tiem</a:Code>
@@ -15423,7 +15447,7 @@ LABL 0 新宋体,8,N</a:FontList>
15423 15447
 <a:Comment>创建时间</a:Comment>
15424 15448
 <a:DataType>datetime</a:DataType>
15425 15449
 </o:Column>
15426
-<o:Column Id="o862">
15450
+<o:Column Id="o864">
15427 15451
 <a:ObjectID>B3AE750D-762F-4753-924D-DB3347DE86A7</a:ObjectID>
15428 15452
 <a:Name>create_user</a:Name>
15429 15453
 <a:Code>create_user</a:Code>
@@ -15435,7 +15459,7 @@ LABL 0 新宋体,8,N</a:FontList>
15435 15459
 <a:DataType>int(11)</a:DataType>
15436 15460
 <a:Length>11</a:Length>
15437 15461
 </o:Column>
15438
-<o:Column Id="o863">
15462
+<o:Column Id="o865">
15439 15463
 <a:ObjectID>B3F61198-099D-48C7-80C9-DE04499B27D0</a:ObjectID>
15440 15464
 <a:Name>update_time</a:Name>
15441 15465
 <a:Code>update_time</a:Code>
@@ -15446,7 +15470,7 @@ LABL 0 新宋体,8,N</a:FontList>
15446 15470
 <a:Comment>修改时间</a:Comment>
15447 15471
 <a:DataType>datetime</a:DataType>
15448 15472
 </o:Column>
15449
-<o:Column Id="o864">
15473
+<o:Column Id="o866">
15450 15474
 <a:ObjectID>CD41B813-BCA8-4C12-93B4-389711926D13</a:ObjectID>
15451 15475
 <a:Name>update_user</a:Name>
15452 15476
 <a:Code>update_user</a:Code>
@@ -15458,7 +15482,7 @@ LABL 0 新宋体,8,N</a:FontList>
15458 15482
 <a:DataType>int(11)</a:DataType>
15459 15483
 <a:Length>11</a:Length>
15460 15484
 </o:Column>
15461
-<o:Column Id="o865">
15485
+<o:Column Id="o867">
15462 15486
 <a:ObjectID>8FB6D9A3-8559-4791-865A-8B918A0A20CD</a:ObjectID>
15463 15487
 <a:Name>community_id</a:Name>
15464 15488
 <a:Code>community_id</a:Code>
@@ -15472,7 +15496,7 @@ LABL 0 新宋体,8,N</a:FontList>
15472 15496
 </o:Column>
15473 15497
 </c:Columns>
15474 15498
 <c:Keys>
15475
-<o:Key Id="o866">
15499
+<o:Key Id="o868">
15476 15500
 <a:ObjectID>C583F583-C6D1-47E9-820D-9209656BD42D</a:ObjectID>
15477 15501
 <a:Name>Key_1</a:Name>
15478 15502
 <a:Code>Key_1</a:Code>
@@ -15486,7 +15510,7 @@ LABL 0 新宋体,8,N</a:FontList>
15486 15510
 </o:Key>
15487 15511
 </c:Keys>
15488 15512
 <c:PrimaryKey>
15489
-<o:Key Ref="o866"/>
15513
+<o:Key Ref="o868"/>
15490 15514
 </c:PrimaryKey>
15491 15515
 </o:Table>
15492 15516
 <o:Table Id="o222">
@@ -15500,7 +15524,7 @@ LABL 0 新宋体,8,N</a:FontList>
15500 15524
 <a:Comment>设备表</a:Comment>
15501 15525
 <a:TotalSavingCurrency/>
15502 15526
 <c:Columns>
15503
-<o:Column Id="o867">
15527
+<o:Column Id="o869">
15504 15528
 <a:ObjectID>B79A8C79-02EF-43A9-B9A9-A93C6D9FC1EA</a:ObjectID>
15505 15529
 <a:Name>id</a:Name>
15506 15530
 <a:Code>id</a:Code>
@@ -15513,7 +15537,7 @@ LABL 0 新宋体,8,N</a:FontList>
15513 15537
 <a:Identity>1</a:Identity>
15514 15538
 <a:Column.Mandatory>1</a:Column.Mandatory>
15515 15539
 </o:Column>
15516
-<o:Column Id="o868">
15540
+<o:Column Id="o870">
15517 15541
 <a:ObjectID>B9914B59-46AA-42B8-9873-DEA65BF83FBC</a:ObjectID>
15518 15542
 <a:Name>url_id</a:Name>
15519 15543
 <a:Code>url_id</a:Code>
@@ -15525,7 +15549,7 @@ LABL 0 新宋体,8,N</a:FontList>
15525 15549
 <a:DataType>int(11)</a:DataType>
15526 15550
 <a:Length>11</a:Length>
15527 15551
 </o:Column>
15528
-<o:Column Id="o869">
15552
+<o:Column Id="o871">
15529 15553
 <a:ObjectID>3CD475E0-D9BD-45EB-AF10-6F89859F5D8C</a:ObjectID>
15530 15554
 <a:Name>community_id</a:Name>
15531 15555
 <a:Code>community_id</a:Code>
@@ -15537,7 +15561,7 @@ LABL 0 新宋体,8,N</a:FontList>
15537 15561
 <a:DataType>int(11)</a:DataType>
15538 15562
 <a:Length>11</a:Length>
15539 15563
 </o:Column>
15540
-<o:Column Id="o870">
15564
+<o:Column Id="o872">
15541 15565
 <a:ObjectID>19E49FED-E525-4755-96E7-353F4FD591CA</a:ObjectID>
15542 15566
 <a:Name>security_guard_tel_id</a:Name>
15543 15567
 <a:Code>security_guard_tel_id</a:Code>
@@ -15549,7 +15573,7 @@ LABL 0 新宋体,8,N</a:FontList>
15549 15573
 <a:DataType>int(11)</a:DataType>
15550 15574
 <a:Length>11</a:Length>
15551 15575
 </o:Column>
15552
-<o:Column Id="o871">
15576
+<o:Column Id="o873">
15553 15577
 <a:ObjectID>AC2D2251-8D3A-4F23-A9E3-1945082166F4</a:ObjectID>
15554 15578
 <a:Name>security_room_tel_id</a:Name>
15555 15579
 <a:Code>security_room_tel_id</a:Code>
@@ -15561,7 +15585,7 @@ LABL 0 新宋体,8,N</a:FontList>
15561 15585
 <a:DataType>int(11)</a:DataType>
15562 15586
 <a:Length>11</a:Length>
15563 15587
 </o:Column>
15564
-<o:Column Id="o872">
15588
+<o:Column Id="o874">
15565 15589
 <a:ObjectID>686BADC7-6399-41EB-B641-CB5D8E7FD991</a:ObjectID>
15566 15590
 <a:Name>address_id</a:Name>
15567 15591
 <a:Code>address_id</a:Code>
@@ -15573,7 +15597,7 @@ LABL 0 新宋体,8,N</a:FontList>
15573 15597
 <a:DataType>int(11)</a:DataType>
15574 15598
 <a:Length>11</a:Length>
15575 15599
 </o:Column>
15576
-<o:Column Id="o873">
15600
+<o:Column Id="o875">
15577 15601
 <a:ObjectID>F535B28B-FE50-43A6-8B94-9D01C925D3E9</a:ObjectID>
15578 15602
 <a:Name>create_time</a:Name>
15579 15603
 <a:Code>create_time</a:Code>
@@ -15584,7 +15608,7 @@ LABL 0 新宋体,8,N</a:FontList>
15584 15608
 <a:Comment>创建时间</a:Comment>
15585 15609
 <a:DataType>datetime</a:DataType>
15586 15610
 </o:Column>
15587
-<o:Column Id="o874">
15611
+<o:Column Id="o876">
15588 15612
 <a:ObjectID>8B7A6A21-7B26-43CA-92A9-2B5D488B8A76</a:ObjectID>
15589 15613
 <a:Name>create_user</a:Name>
15590 15614
 <a:Code>create_user</a:Code>
@@ -15596,7 +15620,7 @@ LABL 0 新宋体,8,N</a:FontList>
15596 15620
 <a:DataType>int(11)</a:DataType>
15597 15621
 <a:Length>11</a:Length>
15598 15622
 </o:Column>
15599
-<o:Column Id="o875">
15623
+<o:Column Id="o877">
15600 15624
 <a:ObjectID>01B0CA01-2D10-42BD-B971-B822728F9A2F</a:ObjectID>
15601 15625
 <a:Name>update_time</a:Name>
15602 15626
 <a:Code>update_time</a:Code>
@@ -15607,7 +15631,7 @@ LABL 0 新宋体,8,N</a:FontList>
15607 15631
 <a:Comment>修改时间</a:Comment>
15608 15632
 <a:DataType>datetime</a:DataType>
15609 15633
 </o:Column>
15610
-<o:Column Id="o876">
15634
+<o:Column Id="o878">
15611 15635
 <a:ObjectID>1333ECC1-5F91-4756-A7B3-EF20F4CA147A</a:ObjectID>
15612 15636
 <a:Name>update_user</a:Name>
15613 15637
 <a:Code>update_user</a:Code>
@@ -15619,7 +15643,7 @@ LABL 0 新宋体,8,N</a:FontList>
15619 15643
 <a:DataType>int(11)</a:DataType>
15620 15644
 <a:Length>11</a:Length>
15621 15645
 </o:Column>
15622
-<o:Column Id="o877">
15646
+<o:Column Id="o879">
15623 15647
 <a:ObjectID>A66B2853-D3B8-4DE7-B3E9-079739954C40</a:ObjectID>
15624 15648
 <a:Name>uuid_id</a:Name>
15625 15649
 <a:Code>uuid_id</a:Code>
@@ -15631,7 +15655,7 @@ LABL 0 新宋体,8,N</a:FontList>
15631 15655
 <a:DataType>int(11)</a:DataType>
15632 15656
 <a:Length>11</a:Length>
15633 15657
 </o:Column>
15634
-<o:Column Id="o878">
15658
+<o:Column Id="o880">
15635 15659
 <a:ObjectID>DE6AE60E-BC1C-4785-9583-83B2B609F076</a:ObjectID>
15636 15660
 <a:Name>equipment_type</a:Name>
15637 15661
 <a:Code>equipment_type</a:Code>
@@ -15643,7 +15667,7 @@ LABL 0 新宋体,8,N</a:FontList>
15643 15667
 <a:DataType>varchar(255)</a:DataType>
15644 15668
 <a:Length>255</a:Length>
15645 15669
 </o:Column>
15646
-<o:Column Id="o879">
15670
+<o:Column Id="o881">
15647 15671
 <a:ObjectID>AD0B2D73-289B-46D8-9D52-4407226E9B8E</a:ObjectID>
15648 15672
 <a:Name>equipment_tree_id</a:Name>
15649 15673
 <a:Code>equipment_tree_id</a:Code>
@@ -15655,7 +15679,7 @@ LABL 0 新宋体,8,N</a:FontList>
15655 15679
 <a:DataType>int(11)</a:DataType>
15656 15680
 <a:Length>11</a:Length>
15657 15681
 </o:Column>
15658
-<o:Column Id="o880">
15682
+<o:Column Id="o882">
15659 15683
 <a:ObjectID>11E9F8ED-A779-4187-ABE1-7C33965388D2</a:ObjectID>
15660 15684
 <a:Name>appkey</a:Name>
15661 15685
 <a:Code>appkey</a:Code>
@@ -15667,7 +15691,7 @@ LABL 0 新宋体,8,N</a:FontList>
15667 15691
 <a:DataType>varchar(255)</a:DataType>
15668 15692
 <a:Length>255</a:Length>
15669 15693
 </o:Column>
15670
-<o:Column Id="o881">
15694
+<o:Column Id="o883">
15671 15695
 <a:ObjectID>70E1D948-0EF1-45C3-BC42-A45FFBA3468A</a:ObjectID>
15672 15696
 <a:Name>secret</a:Name>
15673 15697
 <a:Code>secret</a:Code>
@@ -15679,7 +15703,7 @@ LABL 0 新宋体,8,N</a:FontList>
15679 15703
 <a:DataType>varchar(255)</a:DataType>
15680 15704
 <a:Length>255</a:Length>
15681 15705
 </o:Column>
15682
-<o:Column Id="o882">
15706
+<o:Column Id="o884">
15683 15707
 <a:ObjectID>B2EF4C83-C907-42B2-8D8C-1FD98801A8E2</a:ObjectID>
15684 15708
 <a:Name>op_user_uuid</a:Name>
15685 15709
 <a:Code>op_user_uuid</a:Code>
@@ -15691,7 +15715,7 @@ LABL 0 新宋体,8,N</a:FontList>
15691 15715
 <a:DataType>varchar(255)</a:DataType>
15692 15716
 <a:Length>255</a:Length>
15693 15717
 </o:Column>
15694
-<o:Column Id="o883">
15718
+<o:Column Id="o885">
15695 15719
 <a:ObjectID>4CF46C1B-D29D-4A54-ABF7-D73C5453A041</a:ObjectID>
15696 15720
 <a:Name>http_server</a:Name>
15697 15721
 <a:Code>http_server</a:Code>
@@ -15703,7 +15727,7 @@ LABL 0 新宋体,8,N</a:FontList>
15703 15727
 <a:DataType>varchar(255)</a:DataType>
15704 15728
 <a:Length>255</a:Length>
15705 15729
 </o:Column>
15706
-<o:Column Id="o884">
15730
+<o:Column Id="o886">
15707 15731
 <a:ObjectID>4B7F55FE-FA6B-4AFD-AEE4-FB1F131F1782</a:ObjectID>
15708 15732
 <a:Name>unit_uuids</a:Name>
15709 15733
 <a:Code>unit_uuids</a:Code>
@@ -15717,7 +15741,7 @@ LABL 0 新宋体,8,N</a:FontList>
15717 15741
 </o:Column>
15718 15742
 </c:Columns>
15719 15743
 <c:Keys>
15720
-<o:Key Id="o885">
15744
+<o:Key Id="o887">
15721 15745
 <a:ObjectID>ED680613-D022-4A08-8760-9009AB4CFB52</a:ObjectID>
15722 15746
 <a:Name>Key_1</a:Name>
15723 15747
 <a:Code>Key_1</a:Code>
@@ -15726,12 +15750,12 @@ LABL 0 新宋体,8,N</a:FontList>
15726 15750
 <a:ModificationDate>1557036173</a:ModificationDate>
15727 15751
 <a:Modifier>szc</a:Modifier>
15728 15752
 <c:Key.Columns>
15729
-<o:Column Ref="o867"/>
15753
+<o:Column Ref="o869"/>
15730 15754
 </c:Key.Columns>
15731 15755
 </o:Key>
15732 15756
 </c:Keys>
15733 15757
 <c:PrimaryKey>
15734
-<o:Key Ref="o885"/>
15758
+<o:Key Ref="o887"/>
15735 15759
 </c:PrimaryKey>
15736 15760
 </o:Table>
15737 15761
 <o:Table Id="o224">
@@ -15745,7 +15769,7 @@ LABL 0 新宋体,8,N</a:FontList>
15745 15769
 <a:Comment>设备树</a:Comment>
15746 15770
 <a:TotalSavingCurrency/>
15747 15771
 <c:Columns>
15748
-<o:Column Id="o886">
15772
+<o:Column Id="o888">
15749 15773
 <a:ObjectID>48DC36DD-4FCB-4E30-84A4-A3822C08DBDF</a:ObjectID>
15750 15774
 <a:Name>id</a:Name>
15751 15775
 <a:Code>id</a:Code>
@@ -15758,7 +15782,7 @@ LABL 0 新宋体,8,N</a:FontList>
15758 15782
 <a:Identity>1</a:Identity>
15759 15783
 <a:Column.Mandatory>1</a:Column.Mandatory>
15760 15784
 </o:Column>
15761
-<o:Column Id="o887">
15785
+<o:Column Id="o889">
15762 15786
 <a:ObjectID>681D6D6F-C9D7-40AF-9E88-2C1DEEC53AEC</a:ObjectID>
15763 15787
 <a:Name>community_id</a:Name>
15764 15788
 <a:Code>community_id</a:Code>
@@ -15770,7 +15794,7 @@ LABL 0 新宋体,8,N</a:FontList>
15770 15794
 <a:DataType>int(11)</a:DataType>
15771 15795
 <a:Length>11</a:Length>
15772 15796
 </o:Column>
15773
-<o:Column Id="o888">
15797
+<o:Column Id="o890">
15774 15798
 <a:ObjectID>33DCE901-6B88-4067-B3AC-529D188A5347</a:ObjectID>
15775 15799
 <a:Name>equipment_name</a:Name>
15776 15800
 <a:Code>equipment_name</a:Code>
@@ -15782,7 +15806,7 @@ LABL 0 新宋体,8,N</a:FontList>
15782 15806
 <a:DataType>varchar(255)</a:DataType>
15783 15807
 <a:Length>255</a:Length>
15784 15808
 </o:Column>
15785
-<o:Column Id="o889">
15809
+<o:Column Id="o891">
15786 15810
 <a:ObjectID>CC9118D1-6A1C-4B13-8C11-2F8660785F1C</a:ObjectID>
15787 15811
 <a:Name>pid</a:Name>
15788 15812
 <a:Code>pid</a:Code>
@@ -15794,7 +15818,7 @@ LABL 0 新宋体,8,N</a:FontList>
15794 15818
 <a:DataType>int(11)</a:DataType>
15795 15819
 <a:Length>11</a:Length>
15796 15820
 </o:Column>
15797
-<o:Column Id="o890">
15821
+<o:Column Id="o892">
15798 15822
 <a:ObjectID>BDE3067D-6D24-4174-AC80-540E97A0B98E</a:ObjectID>
15799 15823
 <a:Name>sort</a:Name>
15800 15824
 <a:Code>sort</a:Code>
@@ -15806,7 +15830,7 @@ LABL 0 新宋体,8,N</a:FontList>
15806 15830
 <a:DataType>int(11)</a:DataType>
15807 15831
 <a:Length>11</a:Length>
15808 15832
 </o:Column>
15809
-<o:Column Id="o891">
15833
+<o:Column Id="o893">
15810 15834
 <a:ObjectID>D03D1BA6-1B0F-4801-AC6B-A9046A1AA8B0</a:ObjectID>
15811 15835
 <a:Name>create_time</a:Name>
15812 15836
 <a:Code>create_time</a:Code>
@@ -15817,7 +15841,7 @@ LABL 0 新宋体,8,N</a:FontList>
15817 15841
 <a:Comment>创建时间</a:Comment>
15818 15842
 <a:DataType>datetime</a:DataType>
15819 15843
 </o:Column>
15820
-<o:Column Id="o892">
15844
+<o:Column Id="o894">
15821 15845
 <a:ObjectID>73FE1C77-E3B2-4101-939E-D635917C5918</a:ObjectID>
15822 15846
 <a:Name>create_user</a:Name>
15823 15847
 <a:Code>create_user</a:Code>
@@ -15829,7 +15853,7 @@ LABL 0 新宋体,8,N</a:FontList>
15829 15853
 <a:DataType>int(11)</a:DataType>
15830 15854
 <a:Length>11</a:Length>
15831 15855
 </o:Column>
15832
-<o:Column Id="o893">
15856
+<o:Column Id="o895">
15833 15857
 <a:ObjectID>943B4E2F-4F94-481F-9DA7-B22B588E847D</a:ObjectID>
15834 15858
 <a:Name>update_time</a:Name>
15835 15859
 <a:Code>update_time</a:Code>
@@ -15840,7 +15864,7 @@ LABL 0 新宋体,8,N</a:FontList>
15840 15864
 <a:Comment>修改时间</a:Comment>
15841 15865
 <a:DataType>datetime</a:DataType>
15842 15866
 </o:Column>
15843
-<o:Column Id="o894">
15867
+<o:Column Id="o896">
15844 15868
 <a:ObjectID>9F637611-0FEF-4027-9693-2F825CD27F12</a:ObjectID>
15845 15869
 <a:Name>update_user</a:Name>
15846 15870
 <a:Code>update_user</a:Code>
@@ -15852,7 +15876,7 @@ LABL 0 新宋体,8,N</a:FontList>
15852 15876
 <a:DataType>int(11)</a:DataType>
15853 15877
 <a:Length>11</a:Length>
15854 15878
 </o:Column>
15855
-<o:Column Id="o895">
15879
+<o:Column Id="o897">
15856 15880
 <a:ObjectID>C9C35B8B-5F99-4B83-B021-4777AEC949BD</a:ObjectID>
15857 15881
 <a:Name>appkey</a:Name>
15858 15882
 <a:Code>appkey</a:Code>
@@ -15864,7 +15888,7 @@ LABL 0 新宋体,8,N</a:FontList>
15864 15888
 <a:DataType>varchar(255)</a:DataType>
15865 15889
 <a:Length>255</a:Length>
15866 15890
 </o:Column>
15867
-<o:Column Id="o896">
15891
+<o:Column Id="o898">
15868 15892
 <a:ObjectID>86B87DA1-C27A-4941-8522-85580E44807C</a:ObjectID>
15869 15893
 <a:Name>secret</a:Name>
15870 15894
 <a:Code>secret</a:Code>
@@ -15876,7 +15900,7 @@ LABL 0 新宋体,8,N</a:FontList>
15876 15900
 <a:DataType>varchar(255)</a:DataType>
15877 15901
 <a:Length>255</a:Length>
15878 15902
 </o:Column>
15879
-<o:Column Id="o897">
15903
+<o:Column Id="o899">
15880 15904
 <a:ObjectID>46387752-EAFB-464B-9F36-3775963EECBC</a:ObjectID>
15881 15905
 <a:Name>op_user_uuid</a:Name>
15882 15906
 <a:Code>op_user_uuid</a:Code>
@@ -15888,7 +15912,7 @@ LABL 0 新宋体,8,N</a:FontList>
15888 15912
 <a:DataType>varchar(255)</a:DataType>
15889 15913
 <a:Length>255</a:Length>
15890 15914
 </o:Column>
15891
-<o:Column Id="o898">
15915
+<o:Column Id="o900">
15892 15916
 <a:ObjectID>7F768E91-CD07-4E91-B9D8-CBC7DB3C1908</a:ObjectID>
15893 15917
 <a:Name>http_server</a:Name>
15894 15918
 <a:Code>http_server</a:Code>
@@ -15900,7 +15924,7 @@ LABL 0 新宋体,8,N</a:FontList>
15900 15924
 <a:DataType>varchar(255)</a:DataType>
15901 15925
 <a:Length>255</a:Length>
15902 15926
 </o:Column>
15903
-<o:Column Id="o899">
15927
+<o:Column Id="o901">
15904 15928
 <a:ObjectID>7BB95C72-F458-449B-9E40-49220483733E</a:ObjectID>
15905 15929
 <a:Name>unit_uuids</a:Name>
15906 15930
 <a:Code>unit_uuids</a:Code>
@@ -15914,7 +15938,7 @@ LABL 0 新宋体,8,N</a:FontList>
15914 15938
 </o:Column>
15915 15939
 </c:Columns>
15916 15940
 <c:Keys>
15917
-<o:Key Id="o900">
15941
+<o:Key Id="o902">
15918 15942
 <a:ObjectID>DCC3D4EC-C914-4B28-9116-43E014E350E2</a:ObjectID>
15919 15943
 <a:Name>Key_1</a:Name>
15920 15944
 <a:Code>Key_1</a:Code>
@@ -15923,12 +15947,12 @@ LABL 0 新宋体,8,N</a:FontList>
15923 15947
 <a:ModificationDate>1557036559</a:ModificationDate>
15924 15948
 <a:Modifier>szc</a:Modifier>
15925 15949
 <c:Key.Columns>
15926
-<o:Column Ref="o886"/>
15950
+<o:Column Ref="o888"/>
15927 15951
 </c:Key.Columns>
15928 15952
 </o:Key>
15929 15953
 </c:Keys>
15930 15954
 <c:PrimaryKey>
15931
-<o:Key Ref="o900"/>
15955
+<o:Key Ref="o902"/>
15932 15956
 </c:PrimaryKey>
15933 15957
 </o:Table>
15934 15958
 <o:Table Id="o225">
@@ -15942,7 +15966,7 @@ LABL 0 新宋体,8,N</a:FontList>
15942 15966
 <a:Comment>房屋和设备关联表</a:Comment>
15943 15967
 <a:TotalSavingCurrency/>
15944 15968
 <c:Columns>
15945
-<o:Column Id="o901">
15969
+<o:Column Id="o903">
15946 15970
 <a:ObjectID>203207B7-EF90-44B2-947C-A5C26DDA64E6</a:ObjectID>
15947 15971
 <a:Name>id</a:Name>
15948 15972
 <a:Code>id</a:Code>
@@ -15955,7 +15979,7 @@ LABL 0 新宋体,8,N</a:FontList>
15955 15979
 <a:Identity>1</a:Identity>
15956 15980
 <a:Column.Mandatory>1</a:Column.Mandatory>
15957 15981
 </o:Column>
15958
-<o:Column Id="o902">
15982
+<o:Column Id="o904">
15959 15983
 <a:ObjectID>53DF04C6-63CA-413C-A613-84BAA5992491</a:ObjectID>
15960 15984
 <a:Name>community_id</a:Name>
15961 15985
 <a:Code>community_id</a:Code>
@@ -15967,7 +15991,7 @@ LABL 0 新宋体,8,N</a:FontList>
15967 15991
 <a:DataType>int(11)</a:DataType>
15968 15992
 <a:Length>11</a:Length>
15969 15993
 </o:Column>
15970
-<o:Column Id="o903">
15994
+<o:Column Id="o905">
15971 15995
 <a:ObjectID>478ECE04-0F20-4A4E-B5BD-048B57F04E1C</a:ObjectID>
15972 15996
 <a:Name>room_no_id</a:Name>
15973 15997
 <a:Code>room_no_id</a:Code>
@@ -15979,7 +16003,7 @@ LABL 0 新宋体,8,N</a:FontList>
15979 16003
 <a:DataType>int(11)</a:DataType>
15980 16004
 <a:Length>11</a:Length>
15981 16005
 </o:Column>
15982
-<o:Column Id="o904">
16006
+<o:Column Id="o906">
15983 16007
 <a:ObjectID>0734D148-BA9E-4D34-BC15-6F58FF1C0D83</a:ObjectID>
15984 16008
 <a:Name>equipment_id</a:Name>
15985 16009
 <a:Code>equipment_id</a:Code>
@@ -15991,7 +16015,7 @@ LABL 0 新宋体,8,N</a:FontList>
15991 16015
 <a:DataType>int(11)</a:DataType>
15992 16016
 <a:Length>11</a:Length>
15993 16017
 </o:Column>
15994
-<o:Column Id="o905">
16018
+<o:Column Id="o907">
15995 16019
 <a:ObjectID>0133E599-2095-4491-99ED-E77D2E6D4BE3</a:ObjectID>
15996 16020
 <a:Name>create_date</a:Name>
15997 16021
 <a:Code>create_date</a:Code>
@@ -16004,7 +16028,7 @@ LABL 0 新宋体,8,N</a:FontList>
16004 16028
 </o:Column>
16005 16029
 </c:Columns>
16006 16030
 <c:Keys>
16007
-<o:Key Id="o906">
16031
+<o:Key Id="o908">
16008 16032
 <a:ObjectID>6B88472B-E9E6-440A-A6CD-03C4B3E0E0B8</a:ObjectID>
16009 16033
 <a:Name>Key_1</a:Name>
16010 16034
 <a:Code>Key_1</a:Code>
@@ -16013,17 +16037,17 @@ LABL 0 新宋体,8,N</a:FontList>
16013 16037
 <a:ModificationDate>1557126633</a:ModificationDate>
16014 16038
 <a:Modifier>szc</a:Modifier>
16015 16039
 <c:Key.Columns>
16016
-<o:Column Ref="o901"/>
16040
+<o:Column Ref="o903"/>
16017 16041
 </c:Key.Columns>
16018 16042
 </o:Key>
16019 16043
 </c:Keys>
16020 16044
 <c:PrimaryKey>
16021
-<o:Key Ref="o906"/>
16045
+<o:Key Ref="o908"/>
16022 16046
 </c:PrimaryKey>
16023 16047
 </o:Table>
16024 16048
 </c:Tables>
16025 16049
 <c:DefaultGroups>
16026
-<o:Group Id="o907">
16050
+<o:Group Id="o909">
16027 16051
 <a:ObjectID>9FAF56B5-A351-488F-9A3B-D4A944CD4081</a:ObjectID>
16028 16052
 <a:Name>PUBLIC</a:Name>
16029 16053
 <a:Code>PUBLIC</a:Code>
@@ -16647,7 +16671,7 @@ LABL 0 新宋体,8,N</a:FontList>
16647 16671
 </o:ExtendedDependency>
16648 16672
 </c:ChildTraceabilityLinks>
16649 16673
 <c:TargetModels>
16650
-<o:TargetModel Id="o908">
16674
+<o:TargetModel Id="o910">
16651 16675
 <a:ObjectID>B86EB932-C352-4174-86E4-2D2B1DDE4A45</a:ObjectID>
16652 16676
 <a:Name>MySQL 5.0</a:Name>
16653 16677
 <a:Code>MYSQL50</a:Code>

+ 81
- 57
文档/MYSQL/smartCommunity.pdm Zobrazit soubor

@@ -1,5 +1,5 @@
1 1
 <?xml version="1.0" encoding="UTF-8"?>
2
-<?PowerDesigner AppLocale="UTF16" ID="{1EFA7B8F-E5BE-422B-A0AE-B907AA87924F}" Label="" LastModificationDate="1557126808" Name="smartCommunity" Objects="961" Symbols="112" Target="MySQL 5.0" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.5.0.3982"?>
2
+<?PowerDesigner AppLocale="UTF16" ID="{1EFA7B8F-E5BE-422B-A0AE-B907AA87924F}" Label="" LastModificationDate="1557136999" Name="smartCommunity" Objects="963" Symbols="112" Target="MySQL 5.0" Type="{CDE44E21-9669-11D1-9914-006097355D9B}" signature="PDM_DATA_MODEL_XML" version="16.5.0.3982"?>
3 3
 <!-- do not edit this file -->
4 4
 
5 5
 <Model xmlns:a="attribute" xmlns:c="collection" xmlns:o="object">
@@ -6619,7 +6619,7 @@ LABL 0 新宋体,8,N</a:FontList>
6619 6619
 <a:CreationDate>1557035790</a:CreationDate>
6620 6620
 <a:ModificationDate>1557036489</a:ModificationDate>
6621 6621
 <a:IconMode>-1</a:IconMode>
6622
-<a:Rect>((119287,30270), (136075,40768))</a:Rect>
6622
+<a:Rect>((119287,29370), (136075,41668))</a:Rect>
6623 6623
 <a:LineColor>12615680</a:LineColor>
6624 6624
 <a:FillColor>16570034</a:FillColor>
6625 6625
 <a:ShadowColor>12632256</a:ShadowColor>
@@ -15346,7 +15346,7 @@ LABL 0 新宋体,8,N</a:FontList>
15346 15346
 <a:Code>tp_configuration</a:Code>
15347 15347
 <a:CreationDate>1557035790</a:CreationDate>
15348 15348
 <a:Creator>szc</a:Creator>
15349
-<a:ModificationDate>1557036097</a:ModificationDate>
15349
+<a:ModificationDate>1557136999</a:ModificationDate>
15350 15350
 <a:Modifier>szc</a:Modifier>
15351 15351
 <a:Comment>设备配置表</a:Comment>
15352 15352
 <a:TotalSavingCurrency/>
@@ -15413,6 +15413,30 @@ LABL 0 新宋体,8,N</a:FontList>
15413 15413
 <a:Length>255</a:Length>
15414 15414
 </o:Column>
15415 15415
 <o:Column Id="o861">
15416
+<a:ObjectID>A8F0BAB1-6E7E-4B49-8A5D-49141E7CC296</a:ObjectID>
15417
+<a:Name>doorUuid</a:Name>
15418
+<a:Code>doorUuid</a:Code>
15419
+<a:CreationDate>1557136926</a:CreationDate>
15420
+<a:Creator>szc</a:Creator>
15421
+<a:ModificationDate>1557136999</a:ModificationDate>
15422
+<a:Modifier>szc</a:Modifier>
15423
+<a:Comment>门禁点UUID</a:Comment>
15424
+<a:DataType>varchar(255)</a:DataType>
15425
+<a:Length>255</a:Length>
15426
+</o:Column>
15427
+<o:Column Id="o862">
15428
+<a:ObjectID>F5670181-A362-41B6-AA66-D8360D0483EE</a:ObjectID>
15429
+<a:Name>deviceUuid</a:Name>
15430
+<a:Code>deviceUuid</a:Code>
15431
+<a:CreationDate>1557136926</a:CreationDate>
15432
+<a:Creator>szc</a:Creator>
15433
+<a:ModificationDate>1557136999</a:ModificationDate>
15434
+<a:Modifier>szc</a:Modifier>
15435
+<a:Comment>门禁设备UUID</a:Comment>
15436
+<a:DataType>varchar(255)</a:DataType>
15437
+<a:Length>255</a:Length>
15438
+</o:Column>
15439
+<o:Column Id="o863">
15416 15440
 <a:ObjectID>E23D0EF1-35C3-4551-92BD-3B247AB3717B</a:ObjectID>
15417 15441
 <a:Name>create_tiem</a:Name>
15418 15442
 <a:Code>create_tiem</a:Code>
@@ -15423,7 +15447,7 @@ LABL 0 新宋体,8,N</a:FontList>
15423 15447
 <a:Comment>创建时间</a:Comment>
15424 15448
 <a:DataType>datetime</a:DataType>
15425 15449
 </o:Column>
15426
-<o:Column Id="o862">
15450
+<o:Column Id="o864">
15427 15451
 <a:ObjectID>B3AE750D-762F-4753-924D-DB3347DE86A7</a:ObjectID>
15428 15452
 <a:Name>create_user</a:Name>
15429 15453
 <a:Code>create_user</a:Code>
@@ -15435,7 +15459,7 @@ LABL 0 新宋体,8,N</a:FontList>
15435 15459
 <a:DataType>int(11)</a:DataType>
15436 15460
 <a:Length>11</a:Length>
15437 15461
 </o:Column>
15438
-<o:Column Id="o863">
15462
+<o:Column Id="o865">
15439 15463
 <a:ObjectID>B3F61198-099D-48C7-80C9-DE04499B27D0</a:ObjectID>
15440 15464
 <a:Name>update_time</a:Name>
15441 15465
 <a:Code>update_time</a:Code>
@@ -15446,7 +15470,7 @@ LABL 0 新宋体,8,N</a:FontList>
15446 15470
 <a:Comment>修改时间</a:Comment>
15447 15471
 <a:DataType>datetime</a:DataType>
15448 15472
 </o:Column>
15449
-<o:Column Id="o864">
15473
+<o:Column Id="o866">
15450 15474
 <a:ObjectID>CD41B813-BCA8-4C12-93B4-389711926D13</a:ObjectID>
15451 15475
 <a:Name>update_user</a:Name>
15452 15476
 <a:Code>update_user</a:Code>
@@ -15458,7 +15482,7 @@ LABL 0 新宋体,8,N</a:FontList>
15458 15482
 <a:DataType>int(11)</a:DataType>
15459 15483
 <a:Length>11</a:Length>
15460 15484
 </o:Column>
15461
-<o:Column Id="o865">
15485
+<o:Column Id="o867">
15462 15486
 <a:ObjectID>8FB6D9A3-8559-4791-865A-8B918A0A20CD</a:ObjectID>
15463 15487
 <a:Name>community_id</a:Name>
15464 15488
 <a:Code>community_id</a:Code>
@@ -15472,7 +15496,7 @@ LABL 0 新宋体,8,N</a:FontList>
15472 15496
 </o:Column>
15473 15497
 </c:Columns>
15474 15498
 <c:Keys>
15475
-<o:Key Id="o866">
15499
+<o:Key Id="o868">
15476 15500
 <a:ObjectID>C583F583-C6D1-47E9-820D-9209656BD42D</a:ObjectID>
15477 15501
 <a:Name>Key_1</a:Name>
15478 15502
 <a:Code>Key_1</a:Code>
@@ -15486,7 +15510,7 @@ LABL 0 新宋体,8,N</a:FontList>
15486 15510
 </o:Key>
15487 15511
 </c:Keys>
15488 15512
 <c:PrimaryKey>
15489
-<o:Key Ref="o866"/>
15513
+<o:Key Ref="o868"/>
15490 15514
 </c:PrimaryKey>
15491 15515
 </o:Table>
15492 15516
 <o:Table Id="o222">
@@ -15500,7 +15524,7 @@ LABL 0 新宋体,8,N</a:FontList>
15500 15524
 <a:Comment>设备表</a:Comment>
15501 15525
 <a:TotalSavingCurrency/>
15502 15526
 <c:Columns>
15503
-<o:Column Id="o867">
15527
+<o:Column Id="o869">
15504 15528
 <a:ObjectID>B79A8C79-02EF-43A9-B9A9-A93C6D9FC1EA</a:ObjectID>
15505 15529
 <a:Name>id</a:Name>
15506 15530
 <a:Code>id</a:Code>
@@ -15513,7 +15537,7 @@ LABL 0 新宋体,8,N</a:FontList>
15513 15537
 <a:Identity>1</a:Identity>
15514 15538
 <a:Column.Mandatory>1</a:Column.Mandatory>
15515 15539
 </o:Column>
15516
-<o:Column Id="o868">
15540
+<o:Column Id="o870">
15517 15541
 <a:ObjectID>B9914B59-46AA-42B8-9873-DEA65BF83FBC</a:ObjectID>
15518 15542
 <a:Name>url_id</a:Name>
15519 15543
 <a:Code>url_id</a:Code>
@@ -15525,7 +15549,7 @@ LABL 0 新宋体,8,N</a:FontList>
15525 15549
 <a:DataType>int(11)</a:DataType>
15526 15550
 <a:Length>11</a:Length>
15527 15551
 </o:Column>
15528
-<o:Column Id="o869">
15552
+<o:Column Id="o871">
15529 15553
 <a:ObjectID>3CD475E0-D9BD-45EB-AF10-6F89859F5D8C</a:ObjectID>
15530 15554
 <a:Name>community_id</a:Name>
15531 15555
 <a:Code>community_id</a:Code>
@@ -15537,7 +15561,7 @@ LABL 0 新宋体,8,N</a:FontList>
15537 15561
 <a:DataType>int(11)</a:DataType>
15538 15562
 <a:Length>11</a:Length>
15539 15563
 </o:Column>
15540
-<o:Column Id="o870">
15564
+<o:Column Id="o872">
15541 15565
 <a:ObjectID>19E49FED-E525-4755-96E7-353F4FD591CA</a:ObjectID>
15542 15566
 <a:Name>security_guard_tel_id</a:Name>
15543 15567
 <a:Code>security_guard_tel_id</a:Code>
@@ -15549,7 +15573,7 @@ LABL 0 新宋体,8,N</a:FontList>
15549 15573
 <a:DataType>int(11)</a:DataType>
15550 15574
 <a:Length>11</a:Length>
15551 15575
 </o:Column>
15552
-<o:Column Id="o871">
15576
+<o:Column Id="o873">
15553 15577
 <a:ObjectID>AC2D2251-8D3A-4F23-A9E3-1945082166F4</a:ObjectID>
15554 15578
 <a:Name>security_room_tel_id</a:Name>
15555 15579
 <a:Code>security_room_tel_id</a:Code>
@@ -15561,7 +15585,7 @@ LABL 0 新宋体,8,N</a:FontList>
15561 15585
 <a:DataType>int(11)</a:DataType>
15562 15586
 <a:Length>11</a:Length>
15563 15587
 </o:Column>
15564
-<o:Column Id="o872">
15588
+<o:Column Id="o874">
15565 15589
 <a:ObjectID>686BADC7-6399-41EB-B641-CB5D8E7FD991</a:ObjectID>
15566 15590
 <a:Name>address_id</a:Name>
15567 15591
 <a:Code>address_id</a:Code>
@@ -15573,7 +15597,7 @@ LABL 0 新宋体,8,N</a:FontList>
15573 15597
 <a:DataType>int(11)</a:DataType>
15574 15598
 <a:Length>11</a:Length>
15575 15599
 </o:Column>
15576
-<o:Column Id="o873">
15600
+<o:Column Id="o875">
15577 15601
 <a:ObjectID>F535B28B-FE50-43A6-8B94-9D01C925D3E9</a:ObjectID>
15578 15602
 <a:Name>create_time</a:Name>
15579 15603
 <a:Code>create_time</a:Code>
@@ -15584,7 +15608,7 @@ LABL 0 新宋体,8,N</a:FontList>
15584 15608
 <a:Comment>创建时间</a:Comment>
15585 15609
 <a:DataType>datetime</a:DataType>
15586 15610
 </o:Column>
15587
-<o:Column Id="o874">
15611
+<o:Column Id="o876">
15588 15612
 <a:ObjectID>8B7A6A21-7B26-43CA-92A9-2B5D488B8A76</a:ObjectID>
15589 15613
 <a:Name>create_user</a:Name>
15590 15614
 <a:Code>create_user</a:Code>
@@ -15596,7 +15620,7 @@ LABL 0 新宋体,8,N</a:FontList>
15596 15620
 <a:DataType>int(11)</a:DataType>
15597 15621
 <a:Length>11</a:Length>
15598 15622
 </o:Column>
15599
-<o:Column Id="o875">
15623
+<o:Column Id="o877">
15600 15624
 <a:ObjectID>01B0CA01-2D10-42BD-B971-B822728F9A2F</a:ObjectID>
15601 15625
 <a:Name>update_time</a:Name>
15602 15626
 <a:Code>update_time</a:Code>
@@ -15607,7 +15631,7 @@ LABL 0 新宋体,8,N</a:FontList>
15607 15631
 <a:Comment>修改时间</a:Comment>
15608 15632
 <a:DataType>datetime</a:DataType>
15609 15633
 </o:Column>
15610
-<o:Column Id="o876">
15634
+<o:Column Id="o878">
15611 15635
 <a:ObjectID>1333ECC1-5F91-4756-A7B3-EF20F4CA147A</a:ObjectID>
15612 15636
 <a:Name>update_user</a:Name>
15613 15637
 <a:Code>update_user</a:Code>
@@ -15619,7 +15643,7 @@ LABL 0 新宋体,8,N</a:FontList>
15619 15643
 <a:DataType>int(11)</a:DataType>
15620 15644
 <a:Length>11</a:Length>
15621 15645
 </o:Column>
15622
-<o:Column Id="o877">
15646
+<o:Column Id="o879">
15623 15647
 <a:ObjectID>A66B2853-D3B8-4DE7-B3E9-079739954C40</a:ObjectID>
15624 15648
 <a:Name>uuid_id</a:Name>
15625 15649
 <a:Code>uuid_id</a:Code>
@@ -15631,7 +15655,7 @@ LABL 0 新宋体,8,N</a:FontList>
15631 15655
 <a:DataType>int(11)</a:DataType>
15632 15656
 <a:Length>11</a:Length>
15633 15657
 </o:Column>
15634
-<o:Column Id="o878">
15658
+<o:Column Id="o880">
15635 15659
 <a:ObjectID>DE6AE60E-BC1C-4785-9583-83B2B609F076</a:ObjectID>
15636 15660
 <a:Name>equipment_type</a:Name>
15637 15661
 <a:Code>equipment_type</a:Code>
@@ -15643,7 +15667,7 @@ LABL 0 新宋体,8,N</a:FontList>
15643 15667
 <a:DataType>varchar(255)</a:DataType>
15644 15668
 <a:Length>255</a:Length>
15645 15669
 </o:Column>
15646
-<o:Column Id="o879">
15670
+<o:Column Id="o881">
15647 15671
 <a:ObjectID>AD0B2D73-289B-46D8-9D52-4407226E9B8E</a:ObjectID>
15648 15672
 <a:Name>equipment_tree_id</a:Name>
15649 15673
 <a:Code>equipment_tree_id</a:Code>
@@ -15655,7 +15679,7 @@ LABL 0 新宋体,8,N</a:FontList>
15655 15679
 <a:DataType>int(11)</a:DataType>
15656 15680
 <a:Length>11</a:Length>
15657 15681
 </o:Column>
15658
-<o:Column Id="o880">
15682
+<o:Column Id="o882">
15659 15683
 <a:ObjectID>11E9F8ED-A779-4187-ABE1-7C33965388D2</a:ObjectID>
15660 15684
 <a:Name>appkey</a:Name>
15661 15685
 <a:Code>appkey</a:Code>
@@ -15667,7 +15691,7 @@ LABL 0 新宋体,8,N</a:FontList>
15667 15691
 <a:DataType>varchar(255)</a:DataType>
15668 15692
 <a:Length>255</a:Length>
15669 15693
 </o:Column>
15670
-<o:Column Id="o881">
15694
+<o:Column Id="o883">
15671 15695
 <a:ObjectID>70E1D948-0EF1-45C3-BC42-A45FFBA3468A</a:ObjectID>
15672 15696
 <a:Name>secret</a:Name>
15673 15697
 <a:Code>secret</a:Code>
@@ -15679,7 +15703,7 @@ LABL 0 新宋体,8,N</a:FontList>
15679 15703
 <a:DataType>varchar(255)</a:DataType>
15680 15704
 <a:Length>255</a:Length>
15681 15705
 </o:Column>
15682
-<o:Column Id="o882">
15706
+<o:Column Id="o884">
15683 15707
 <a:ObjectID>B2EF4C83-C907-42B2-8D8C-1FD98801A8E2</a:ObjectID>
15684 15708
 <a:Name>op_user_uuid</a:Name>
15685 15709
 <a:Code>op_user_uuid</a:Code>
@@ -15691,7 +15715,7 @@ LABL 0 新宋体,8,N</a:FontList>
15691 15715
 <a:DataType>varchar(255)</a:DataType>
15692 15716
 <a:Length>255</a:Length>
15693 15717
 </o:Column>
15694
-<o:Column Id="o883">
15718
+<o:Column Id="o885">
15695 15719
 <a:ObjectID>4CF46C1B-D29D-4A54-ABF7-D73C5453A041</a:ObjectID>
15696 15720
 <a:Name>http_server</a:Name>
15697 15721
 <a:Code>http_server</a:Code>
@@ -15703,7 +15727,7 @@ LABL 0 新宋体,8,N</a:FontList>
15703 15727
 <a:DataType>varchar(255)</a:DataType>
15704 15728
 <a:Length>255</a:Length>
15705 15729
 </o:Column>
15706
-<o:Column Id="o884">
15730
+<o:Column Id="o886">
15707 15731
 <a:ObjectID>4B7F55FE-FA6B-4AFD-AEE4-FB1F131F1782</a:ObjectID>
15708 15732
 <a:Name>unit_uuids</a:Name>
15709 15733
 <a:Code>unit_uuids</a:Code>
@@ -15717,7 +15741,7 @@ LABL 0 新宋体,8,N</a:FontList>
15717 15741
 </o:Column>
15718 15742
 </c:Columns>
15719 15743
 <c:Keys>
15720
-<o:Key Id="o885">
15744
+<o:Key Id="o887">
15721 15745
 <a:ObjectID>ED680613-D022-4A08-8760-9009AB4CFB52</a:ObjectID>
15722 15746
 <a:Name>Key_1</a:Name>
15723 15747
 <a:Code>Key_1</a:Code>
@@ -15726,12 +15750,12 @@ LABL 0 新宋体,8,N</a:FontList>
15726 15750
 <a:ModificationDate>1557036173</a:ModificationDate>
15727 15751
 <a:Modifier>szc</a:Modifier>
15728 15752
 <c:Key.Columns>
15729
-<o:Column Ref="o867"/>
15753
+<o:Column Ref="o869"/>
15730 15754
 </c:Key.Columns>
15731 15755
 </o:Key>
15732 15756
 </c:Keys>
15733 15757
 <c:PrimaryKey>
15734
-<o:Key Ref="o885"/>
15758
+<o:Key Ref="o887"/>
15735 15759
 </c:PrimaryKey>
15736 15760
 </o:Table>
15737 15761
 <o:Table Id="o224">
@@ -15745,7 +15769,7 @@ LABL 0 新宋体,8,N</a:FontList>
15745 15769
 <a:Comment>设备树</a:Comment>
15746 15770
 <a:TotalSavingCurrency/>
15747 15771
 <c:Columns>
15748
-<o:Column Id="o886">
15772
+<o:Column Id="o888">
15749 15773
 <a:ObjectID>48DC36DD-4FCB-4E30-84A4-A3822C08DBDF</a:ObjectID>
15750 15774
 <a:Name>id</a:Name>
15751 15775
 <a:Code>id</a:Code>
@@ -15758,7 +15782,7 @@ LABL 0 新宋体,8,N</a:FontList>
15758 15782
 <a:Identity>1</a:Identity>
15759 15783
 <a:Column.Mandatory>1</a:Column.Mandatory>
15760 15784
 </o:Column>
15761
-<o:Column Id="o887">
15785
+<o:Column Id="o889">
15762 15786
 <a:ObjectID>681D6D6F-C9D7-40AF-9E88-2C1DEEC53AEC</a:ObjectID>
15763 15787
 <a:Name>community_id</a:Name>
15764 15788
 <a:Code>community_id</a:Code>
@@ -15770,7 +15794,7 @@ LABL 0 新宋体,8,N</a:FontList>
15770 15794
 <a:DataType>int(11)</a:DataType>
15771 15795
 <a:Length>11</a:Length>
15772 15796
 </o:Column>
15773
-<o:Column Id="o888">
15797
+<o:Column Id="o890">
15774 15798
 <a:ObjectID>33DCE901-6B88-4067-B3AC-529D188A5347</a:ObjectID>
15775 15799
 <a:Name>equipment_name</a:Name>
15776 15800
 <a:Code>equipment_name</a:Code>
@@ -15782,7 +15806,7 @@ LABL 0 新宋体,8,N</a:FontList>
15782 15806
 <a:DataType>varchar(255)</a:DataType>
15783 15807
 <a:Length>255</a:Length>
15784 15808
 </o:Column>
15785
-<o:Column Id="o889">
15809
+<o:Column Id="o891">
15786 15810
 <a:ObjectID>CC9118D1-6A1C-4B13-8C11-2F8660785F1C</a:ObjectID>
15787 15811
 <a:Name>pid</a:Name>
15788 15812
 <a:Code>pid</a:Code>
@@ -15794,7 +15818,7 @@ LABL 0 新宋体,8,N</a:FontList>
15794 15818
 <a:DataType>int(11)</a:DataType>
15795 15819
 <a:Length>11</a:Length>
15796 15820
 </o:Column>
15797
-<o:Column Id="o890">
15821
+<o:Column Id="o892">
15798 15822
 <a:ObjectID>BDE3067D-6D24-4174-AC80-540E97A0B98E</a:ObjectID>
15799 15823
 <a:Name>sort</a:Name>
15800 15824
 <a:Code>sort</a:Code>
@@ -15806,7 +15830,7 @@ LABL 0 新宋体,8,N</a:FontList>
15806 15830
 <a:DataType>int(11)</a:DataType>
15807 15831
 <a:Length>11</a:Length>
15808 15832
 </o:Column>
15809
-<o:Column Id="o891">
15833
+<o:Column Id="o893">
15810 15834
 <a:ObjectID>D03D1BA6-1B0F-4801-AC6B-A9046A1AA8B0</a:ObjectID>
15811 15835
 <a:Name>create_time</a:Name>
15812 15836
 <a:Code>create_time</a:Code>
@@ -15817,7 +15841,7 @@ LABL 0 新宋体,8,N</a:FontList>
15817 15841
 <a:Comment>创建时间</a:Comment>
15818 15842
 <a:DataType>datetime</a:DataType>
15819 15843
 </o:Column>
15820
-<o:Column Id="o892">
15844
+<o:Column Id="o894">
15821 15845
 <a:ObjectID>73FE1C77-E3B2-4101-939E-D635917C5918</a:ObjectID>
15822 15846
 <a:Name>create_user</a:Name>
15823 15847
 <a:Code>create_user</a:Code>
@@ -15829,7 +15853,7 @@ LABL 0 新宋体,8,N</a:FontList>
15829 15853
 <a:DataType>int(11)</a:DataType>
15830 15854
 <a:Length>11</a:Length>
15831 15855
 </o:Column>
15832
-<o:Column Id="o893">
15856
+<o:Column Id="o895">
15833 15857
 <a:ObjectID>943B4E2F-4F94-481F-9DA7-B22B588E847D</a:ObjectID>
15834 15858
 <a:Name>update_time</a:Name>
15835 15859
 <a:Code>update_time</a:Code>
@@ -15840,7 +15864,7 @@ LABL 0 新宋体,8,N</a:FontList>
15840 15864
 <a:Comment>修改时间</a:Comment>
15841 15865
 <a:DataType>datetime</a:DataType>
15842 15866
 </o:Column>
15843
-<o:Column Id="o894">
15867
+<o:Column Id="o896">
15844 15868
 <a:ObjectID>9F637611-0FEF-4027-9693-2F825CD27F12</a:ObjectID>
15845 15869
 <a:Name>update_user</a:Name>
15846 15870
 <a:Code>update_user</a:Code>
@@ -15852,7 +15876,7 @@ LABL 0 新宋体,8,N</a:FontList>
15852 15876
 <a:DataType>int(11)</a:DataType>
15853 15877
 <a:Length>11</a:Length>
15854 15878
 </o:Column>
15855
-<o:Column Id="o895">
15879
+<o:Column Id="o897">
15856 15880
 <a:ObjectID>C9C35B8B-5F99-4B83-B021-4777AEC949BD</a:ObjectID>
15857 15881
 <a:Name>appkey</a:Name>
15858 15882
 <a:Code>appkey</a:Code>
@@ -15864,7 +15888,7 @@ LABL 0 新宋体,8,N</a:FontList>
15864 15888
 <a:DataType>varchar(255)</a:DataType>
15865 15889
 <a:Length>255</a:Length>
15866 15890
 </o:Column>
15867
-<o:Column Id="o896">
15891
+<o:Column Id="o898">
15868 15892
 <a:ObjectID>86B87DA1-C27A-4941-8522-85580E44807C</a:ObjectID>
15869 15893
 <a:Name>secret</a:Name>
15870 15894
 <a:Code>secret</a:Code>
@@ -15876,7 +15900,7 @@ LABL 0 新宋体,8,N</a:FontList>
15876 15900
 <a:DataType>varchar(255)</a:DataType>
15877 15901
 <a:Length>255</a:Length>
15878 15902
 </o:Column>
15879
-<o:Column Id="o897">
15903
+<o:Column Id="o899">
15880 15904
 <a:ObjectID>46387752-EAFB-464B-9F36-3775963EECBC</a:ObjectID>
15881 15905
 <a:Name>op_user_uuid</a:Name>
15882 15906
 <a:Code>op_user_uuid</a:Code>
@@ -15888,7 +15912,7 @@ LABL 0 新宋体,8,N</a:FontList>
15888 15912
 <a:DataType>varchar(255)</a:DataType>
15889 15913
 <a:Length>255</a:Length>
15890 15914
 </o:Column>
15891
-<o:Column Id="o898">
15915
+<o:Column Id="o900">
15892 15916
 <a:ObjectID>7F768E91-CD07-4E91-B9D8-CBC7DB3C1908</a:ObjectID>
15893 15917
 <a:Name>http_server</a:Name>
15894 15918
 <a:Code>http_server</a:Code>
@@ -15900,7 +15924,7 @@ LABL 0 新宋体,8,N</a:FontList>
15900 15924
 <a:DataType>varchar(255)</a:DataType>
15901 15925
 <a:Length>255</a:Length>
15902 15926
 </o:Column>
15903
-<o:Column Id="o899">
15927
+<o:Column Id="o901">
15904 15928
 <a:ObjectID>7BB95C72-F458-449B-9E40-49220483733E</a:ObjectID>
15905 15929
 <a:Name>unit_uuids</a:Name>
15906 15930
 <a:Code>unit_uuids</a:Code>
@@ -15914,7 +15938,7 @@ LABL 0 新宋体,8,N</a:FontList>
15914 15938
 </o:Column>
15915 15939
 </c:Columns>
15916 15940
 <c:Keys>
15917
-<o:Key Id="o900">
15941
+<o:Key Id="o902">
15918 15942
 <a:ObjectID>DCC3D4EC-C914-4B28-9116-43E014E350E2</a:ObjectID>
15919 15943
 <a:Name>Key_1</a:Name>
15920 15944
 <a:Code>Key_1</a:Code>
@@ -15923,12 +15947,12 @@ LABL 0 新宋体,8,N</a:FontList>
15923 15947
 <a:ModificationDate>1557036559</a:ModificationDate>
15924 15948
 <a:Modifier>szc</a:Modifier>
15925 15949
 <c:Key.Columns>
15926
-<o:Column Ref="o886"/>
15950
+<o:Column Ref="o888"/>
15927 15951
 </c:Key.Columns>
15928 15952
 </o:Key>
15929 15953
 </c:Keys>
15930 15954
 <c:PrimaryKey>
15931
-<o:Key Ref="o900"/>
15955
+<o:Key Ref="o902"/>
15932 15956
 </c:PrimaryKey>
15933 15957
 </o:Table>
15934 15958
 <o:Table Id="o225">
@@ -15942,7 +15966,7 @@ LABL 0 新宋体,8,N</a:FontList>
15942 15966
 <a:Comment>房屋和设备关联表</a:Comment>
15943 15967
 <a:TotalSavingCurrency/>
15944 15968
 <c:Columns>
15945
-<o:Column Id="o901">
15969
+<o:Column Id="o903">
15946 15970
 <a:ObjectID>203207B7-EF90-44B2-947C-A5C26DDA64E6</a:ObjectID>
15947 15971
 <a:Name>id</a:Name>
15948 15972
 <a:Code>id</a:Code>
@@ -15955,7 +15979,7 @@ LABL 0 新宋体,8,N</a:FontList>
15955 15979
 <a:Identity>1</a:Identity>
15956 15980
 <a:Column.Mandatory>1</a:Column.Mandatory>
15957 15981
 </o:Column>
15958
-<o:Column Id="o902">
15982
+<o:Column Id="o904">
15959 15983
 <a:ObjectID>53DF04C6-63CA-413C-A613-84BAA5992491</a:ObjectID>
15960 15984
 <a:Name>community_id</a:Name>
15961 15985
 <a:Code>community_id</a:Code>
@@ -15967,7 +15991,7 @@ LABL 0 新宋体,8,N</a:FontList>
15967 15991
 <a:DataType>int(11)</a:DataType>
15968 15992
 <a:Length>11</a:Length>
15969 15993
 </o:Column>
15970
-<o:Column Id="o903">
15994
+<o:Column Id="o905">
15971 15995
 <a:ObjectID>478ECE04-0F20-4A4E-B5BD-048B57F04E1C</a:ObjectID>
15972 15996
 <a:Name>room_no_id</a:Name>
15973 15997
 <a:Code>room_no_id</a:Code>
@@ -15979,7 +16003,7 @@ LABL 0 新宋体,8,N</a:FontList>
15979 16003
 <a:DataType>int(11)</a:DataType>
15980 16004
 <a:Length>11</a:Length>
15981 16005
 </o:Column>
15982
-<o:Column Id="o904">
16006
+<o:Column Id="o906">
15983 16007
 <a:ObjectID>0734D148-BA9E-4D34-BC15-6F58FF1C0D83</a:ObjectID>
15984 16008
 <a:Name>equipment_id</a:Name>
15985 16009
 <a:Code>equipment_id</a:Code>
@@ -15991,7 +16015,7 @@ LABL 0 新宋体,8,N</a:FontList>
15991 16015
 <a:DataType>int(11)</a:DataType>
15992 16016
 <a:Length>11</a:Length>
15993 16017
 </o:Column>
15994
-<o:Column Id="o905">
16018
+<o:Column Id="o907">
15995 16019
 <a:ObjectID>0133E599-2095-4491-99ED-E77D2E6D4BE3</a:ObjectID>
15996 16020
 <a:Name>create_date</a:Name>
15997 16021
 <a:Code>create_date</a:Code>
@@ -16004,7 +16028,7 @@ LABL 0 新宋体,8,N</a:FontList>
16004 16028
 </o:Column>
16005 16029
 </c:Columns>
16006 16030
 <c:Keys>
16007
-<o:Key Id="o906">
16031
+<o:Key Id="o908">
16008 16032
 <a:ObjectID>6B88472B-E9E6-440A-A6CD-03C4B3E0E0B8</a:ObjectID>
16009 16033
 <a:Name>Key_1</a:Name>
16010 16034
 <a:Code>Key_1</a:Code>
@@ -16013,17 +16037,17 @@ LABL 0 新宋体,8,N</a:FontList>
16013 16037
 <a:ModificationDate>1557126633</a:ModificationDate>
16014 16038
 <a:Modifier>szc</a:Modifier>
16015 16039
 <c:Key.Columns>
16016
-<o:Column Ref="o901"/>
16040
+<o:Column Ref="o903"/>
16017 16041
 </c:Key.Columns>
16018 16042
 </o:Key>
16019 16043
 </c:Keys>
16020 16044
 <c:PrimaryKey>
16021
-<o:Key Ref="o906"/>
16045
+<o:Key Ref="o908"/>
16022 16046
 </c:PrimaryKey>
16023 16047
 </o:Table>
16024 16048
 </c:Tables>
16025 16049
 <c:DefaultGroups>
16026
-<o:Group Id="o907">
16050
+<o:Group Id="o909">
16027 16051
 <a:ObjectID>9FAF56B5-A351-488F-9A3B-D4A944CD4081</a:ObjectID>
16028 16052
 <a:Name>PUBLIC</a:Name>
16029 16053
 <a:Code>PUBLIC</a:Code>
@@ -16647,7 +16671,7 @@ LABL 0 新宋体,8,N</a:FontList>
16647 16671
 </o:ExtendedDependency>
16648 16672
 </c:ChildTraceabilityLinks>
16649 16673
 <c:TargetModels>
16650
-<o:TargetModel Id="o908">
16674
+<o:TargetModel Id="o910">
16651 16675
 <a:ObjectID>B86EB932-C352-4174-86E4-2D2B1DDE4A45</a:ObjectID>
16652 16676
 <a:Name>MySQL 5.0</a:Name>
16653 16677
 <a:Code>MYSQL50</a:Code>