cacheProcUpdate.properties
65.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
_initMenuConfig=mainmenuconfig
ADD_USER2=hrmresource
AlbumPhotos_U_Size=albumsubcompany
backupwf_reqbrowextrainfo=workflow_reqbrowextrainfo_bak
bill_Approve_UpdateStatus=Bill_Approve
bill_BudgetDetail_Insert=bill_budgetdetail
bill_CptAdjustDetail_Insert=bill_CptAdjustDetail
bill_CptAdjustDetail_Update=bill_CptAdjustDetail
bill_CptApplyDetail_Insert2=bill_CptApplyDetail
bill_CptApplyDetail_Insert=bill_CptApplyDetail
bill_CptApplyDetail_Update=bill_CptApplyDetail
bill_CptFetchDetail_Insert=bill_CptFetchDetail
bill_CptFetchDetail_Update=bill_CptFetchDetail
bill_CptRequireDetail_Insert=bill_CptRequireDetail
bill_CptRequireDetail_Update=bill_CptRequireDetail
bill_Discard_Detail_Insert=bill_Discard_Detail
Bill_Discuss_Insert=bill_Discuss
Bill_Discuss_Update=bill_Discuss
bill_Discuss_UpdateStatus=bill_Discuss
Bill_Expense_UpdateStatus=Bill_Expense
Bill_ExpenseDetail_Delete=Bill_ExpenseDetail
Bill_ExpenseDetail_Insert=bill_expensedetail
bill_HireResource_UpdateStatus=bill_HireResource
bill_HotelBookDetail_Delete=bill_HotelBookDetail
bill_HotelBookDetail_Insert=bill_HotelBookDetail
bill_HrmFinance_Insert=bill_HrmFinance
bill_HrmFinance_Update=bill_HrmFinance
bill_HrmFinance_UpdateRemind=bill_hrmfinance
bill_HrmFinance_UpdateStatus=bill_hrmfinance
Bill_HrmResourceAbsense_UStat=Bill_HrmResourceAbsense
Bill_HrmResourcePlan_UStatus=Bill_HrmResourcePlan
bill_HrmTime_Insert=bill_hrmtime
bill_HrmTime_Update=bill_hrmtime
bill_HrmTime_UpdateRemind=bill_hrmtime
bill_HrmTime_UpdateStatus=bill_hrmtime
bill_itemusage_UpdateStatus=bill_itemusage
bill_LeaveJob_UpdateStatus=bill_LeaveJob
bill_MailboxApply_UpdateStatus=bill_MailboxApply
bill_monthinfodetail_DByType=bill_monthinfodetail
bill_monthinfodetail_Insert=bill_monthinfodetail
bill_monthinfodetail_UByPoint=bill_monthinfodetail
Bill_NameCardinfo_Insert=bill_namecardinfo
Bill_NameCardinfo_Update=bill_namecardinfo
Bill_SelectList_Insert=workflow_SelectItem
BILL_TOTALBUDGET_UPDATESTATUS=bill_totalbudget
bill_workinfo_UpdateMainid=bill_workinfo
bill_workinfo_UpdateStatus=bill_workinfo
bill_workinfodetail_DByType=bill_weekinfodetail
bill_workinfodetail_Insert=bill_weekinfodetail
Capital_Adjust2=CptUseLog,CptCapital
Capital_Adjust=CptUseLog,CptCapital
CarDriverBasicinfo_Insert=cardriverbasicinfo
CarDriverData_Delete=CarDriverData
CarDriverData_Insert=CarDriverData
CarDriverData_Update=CarDriverData
CarDriverDataPara_Delete=CarDriverDataPara
CarDriverDataPara_Insert=CarDriverDataPara
CarParameter_Delete=CarParameter
CarParameter_Insert=CarParameter
CarParameter_Update=CarParameter
CarType_Delete=cartype
CarType_Insert=cartype
CarType_Update=cartype
Contract_ShareInfo_Del=Contract_ShareInfo
CONTRACT_SHAREINFO_INS=Contract_ShareInfo
CONTRACTSHAREDETAIL_DBYID=contractsharedetail
ContractShareDetail_Insert=ContractShareDetail
copyrow=wsformactionset
COWORK_DISCUSS_INSERT=cowork_discuss
cowork_items_insert=cowork_items
cowork_items_update=cowork_items
cowork_log_insert=cowork_log
cowork_sys_update=cowork_read,coworkshare,cowork_important,cowork_discuss
cowork_types_delete=cowork_types
cowork_types_insert=cowork_types
cowork_types_update=cowork_types
cpt_detailselectitem_insert_new=cpt_detailselectitem
cpt_selectitem_insert_new=cpt_selectitem
CptAssortmentShare_Insert=CptAssortmentShare
CptAssortmentShareInfo_Insert=CptCapitalShareInfo
CptAstShareInfo_Insert_dft=CptCapitalShareInfo
CptBorrowBuffer_Check=CptUseLog,cptcapital,CptBorrowBuffer
CptCapital_Delete=CptCapitalAssortment,CptCapital
CptCapital_Duplicate=CptCapital
CptCapital_ForcedDelete=CptCapitalAssortment,CptCapital
CptCapital_Insert=cptcapital,cptcapitalassortment
cptcapital_update=cptcapitalassortment,cptcapital
CptCapital_UpdatePic=CptCapital,ImageFile
CptCapital_UpdatePrice=CptCapital
CptCapitalAssortment_Delete=cptcapitalassortment
CptCapitalAssortment_Insert=cptcapitalassortment
CptCapitalAssortment_Update=CptCapitalAssortment
CptCapitalGroup_Delete=CptCapitalGroup
CptCapitalGroup_Insert=CptCapitalGroup
CptCapitalGroup_Update=CptCapitalGroup
CptCapitalModify_Insert=CptCapitalModify
CptCapitalShareInfo_Delete=CptCapitalShareInfo
CptCapitalShareInfo_Insert=CptCapitalShareInfo
CptCapitalState_Delete=CptCapitalState
CptCapitalState_Insert=CptCapitalState
CptCapitalState_Update=CptCapitalState
CptCapitalType_Delete=CptCapitalType
CptCapitalType_Insert=CptCapitalType
CptCapitalType_Update=CptCapitalType
CptCheckStock_Approve=CptCheckStock
CptCheckStock_Delete=CptCheckStockList,CptCheckStock
CptCheckStock_Insert=CptCheckStock
CptCheckStock_Update=CptCheckStock
CptCheckStockList_DByCheckSto=CptCheckStockList
CptCheckStockList_Insert=CptCheckStockList
CptCheckStockList_Update=CptCheckStockList
CPTDEPREMETHOD1_DELETE=cptdepremethod1
CptDepreMethod1_Insert=CptDepreMethod1
CptDepreMethod1_Update=CptDepreMethod1
CptDepreMethod2_DByDepreID=CptDepreMethod2
CptDepreMethod2_Delete=CptDepreMethod2
CptDepreMethod2_Insert=CptDepreMethod2
CptDepreMethod2_Update=CptDepreMethod2
CptSearchMould_Delete=CptSearchMould
CptSearchMould_Insert=cptsearchmould
CptSearchMould_Update=cptsearchmould
CptShareDetail_DeleteByCptId=CptShareDetail
CptShareDetail_DeleteByUserId=CptShareDetail
CptShareDetail_Insert=CptShareDetail
CptShareInfo_Insert_dft=cptcapitalshareinfo
CptStockInDetail_Delete=CptStockInDetail
CptStockInDetail_Insert=CptStockInDetail
CptStockInDetail_Update=CptStockInDetail
CptStockInMain_Insert=CptStockInMain
CptStockInMain_Update=CptStockInMain
CptUseLogBack_Insert2=cptuselog,cptcapital
CptUseLogBack_Insert=cptuselog,cptcapital
CptUseLogCheckStock_Insert=CptUseLog,CptCapital
CptUseLogCheckStock_Update=CptUseLog,CptCapital
CptUseLogDiscard_Insert2=cptuselog,cptcapital
CptUseLogDiscard_Insert=cptuselog,cptcapital
CptUseLogHandOver_Insert=cptuselog,cptcapital
CptUseLogInStock2_Insert=cptuselog,cptcapital
CptUseLogInStock_Insert=cptuselog,cptcapital
CptUseLogLend_IBCHK=cptuselog,cptcapital
CptUseLogLend_Insert=cptuselog,cptcapital
CptUseLogLoss_Insert2=cptuselog,cptcapital
CptUseLogLoss_Insert=cptuselog,cptcapital
CptUseLogMend_Insert2=cptuselog,cptcapital
CptUseLogMend_Insert=cptuselog,cptcapital
CptUseLogMove_Insert=cptuselog,cptcapital
CptUseLogMoveOut_Insert=cptuselog,cptcapital
CptUseLogOther_Insert=cptuselog,cptcapital
CptUseLogReturn_Insert=cptuselog,cptcapital
CPTUSELOGUSE_INSERT2=cptuselog,hrmcapitaluse,cptcapital
CPTUSELOGUSE_INSERT=cptuselog,hrmcapitaluse,cptcapital
CRM_AddressType_Delete=CRM_AddressType
CRM_AddressType_Insert=CRM_AddressType
CRM_AddressType_Update=CRM_AddressType
CRM_Contacter_Unite_Update=CRM_CustomerContacter
CRM_ContacterLog_R_Insert=CRM_ContacterLog_Remind
CRM_ContacterLog_R_Update=crm_contacterlog_remind
CRM_ContacterTitle_Delete=CRM_ContacterTitle
CRM_ContacterTitle_Insert=CRM_ContacterTitle
CRM_ContacterTitle_Update=CRM_ContacterTitle
CRM_ContactLog_Insert=CRM_ContactLog
CRM_ContactLog_Process=CRM_ContactLog
CRM_ContactLog_Unite_Update=CRM_ContactLog
CRM_ContactLog_Update=CRM_ContactLog
CRM_ContactLog_WorkPlan=WorkPlan,WorkPlanShare,CRM_SellChance
CRM_ContactWay_Delete=CRM_ContactWay
CRM_ContactWay_Insert=CRM_ContactWay
CRM_ContactWay_Update=CRM_ContactWay
CRM_Contract_Insert=CRM_Contract
CRM_Contract_Update=CRM_Contract
CRM_Contract_UpdateRemind=CRM_Contract
CRM_ContractExch_Insert=CRM_Contract_Exchange
CRM_ContractPayMethod_DelAll=CRM_ContractPayMethod
CRM_ContractPayMethod_Delete=CRM_ContractPayMethod
CRM_CONTRACTPAYMETHOD_INSERT=CRM_ContractPayMethod
CRM_ContractPayMethod_Update1=CRM_ContractPayMethod
CRM_ContractPayMethod_Update=CRM_ContractPayMethod
CRM_ContractProduct_DelAll=CRM_ContractProduct
CRM_ContractProduct_Delete=CRM_ContractProduct
CRM_ContractProduct_Insert=CRM_ContractProduct
CRM_ContractProduct_Update1=CRM_ContractProduct
CRM_ContractProduct_Update=CRM_ContractProduct
CRM_ContractProInfo_Del=CRM_ContractProInfo
CRM_ContractProInfo_Insert=CRM_ContractProInfo
CRM_ContractProInfo_Update=CRM_ContractProInfo
CRM_ContractType_Delete=CRM_ContractType
CRM_ContractType_Insert=CRM_ContractType
CRM_ContractType_Update=CRM_ContractType
CRM_CreditInfo_Delete=CRM_CreditInfo
CRM_CreditInfo_Insert=CRM_CreditInfo
CRM_CreditInfo_Update=CRM_CreditInfo
CRM_CustomerAddress_Insert=CRM_CustomerAddress
CRM_CustomerAddress_UEqual=CRM_CustomerAddress
CRM_CustomerAddress_Update=CRM_CustomerAddress
CRM_CustomerContacter_Delete=CRM_CustomerContacter
CRM_CustomerContacter_Insert=CRM_CustomerContacter
CRM_CustomerContacter_UMain=CRM_CustomerContacter
CRM_CustomerContacter_Update=CRM_CustomerContacter
CRM_CustomerCredit_Insert=CRM_CustomerCredit
CRM_CustomerDesc_Delete=crm_customerdesc
CRM_CustomerDesc_Insert=CRM_CustomerDesc
CRM_CustomerDesc_Update=CRM_CustomerDesc
CRM_CustomerEvaluationUpdate=CRM_CustomerInfo
CRM_CustomerInfo_Approve=CRM_CustomerInfo
CRM_CustomerInfo_Delete=crm_customerinfo,crm_contract
CRM_CustomerInfo_Insert=CRM_CustomerInfo
CRM_CustomerInfo_InsertByCpt=CRM_CustomerInfo
CRM_CustomerInfo_Portal=CRM_CustomerInfo
CRM_CustomerInfo_PortalPasswor=CRM_CustomerInfo
CRM_CustomerInfo_Update=CRM_CustomerInfo
CRM_CustomerInfoFile_Insert=CRM_CustomerInfoFile
CRM_CustomerRating_Delete=CRM_CustomerRating
CRM_CustomerRating_Insert=CRM_CustomerRating
CRM_CustomerRating_Update=CRM_CustomerRating
CRM_CustomerSize_Delete=CRM_CustomerSize
CRM_CustomerSize_Insert=CRM_CustomerSize
CRM_CustomerSize_Update=CRM_CustomerSize
CRM_CustomerStatus_Delete=CRM_CustomerStatus
CRM_CustomerStatus_Insert=CRM_CustomerStatus
CRM_CustomerStatus_Update=CRM_CustomerStatus
CRM_CustomerType_Delete=CRM_CustomerType
CRM_CustomerType_Insert=CRM_CustomerType
CRM_CustomerType_Update=CRM_CustomerType
CRM_Customize_Insert=CRM_Customize
CRM_Customize_Update=CRM_Customize
CRM_DeliveryType_Delete=CRM_DeliveryType
CRM_DeliveryType_Insert=CRM_DeliveryType
CRM_DeliveryType_Update=CRM_DeliveryType
CRM_Evaluation_Delete=CRM_Evaluation
CRM_Evaluation_Insert=CRM_Evaluation
CRM_Evaluation_L_Delete=crm_evaluation_level
CRM_Evaluation_L_Insert=CRM_Evaluation_Level
CRM_Evaluation_L_Update=CRM_Evaluation_Level
CRM_Evaluation_Update=CRM_Evaluation
Crm_ExcelToDB=Crm_CustomerInfo
CRM_Failfactor_Delete=crm_failfactor
CRM_Failfactor_Insert=CRM_Failfactor
CRM_Failfactor_Update=CRM_Failfactor
CRM_LedgerInfo_Delete=CRM_LedgerInfo
CRM_LedgerInfo_Insert=CRM_LedgerInfo
CRM_LedgerInfo_Update=CRM_LedgerInfo
CRM_Log_Insert=CRM_Log
CRM_LoginLog_Insert=CRM_loginLog
CRM_Modify_Insert=CRM_Modify
CRM_PayInfo_del=CRM_PayInfo
CRM_PayInfo_Insert=CRM_PayInfo
CRM_PayInfo_update=CRM_PayInfo
CRM_PaymentTerm_Delete=CRM_PaymentTerm
CRM_PaymentTerm_Insert=CRM_PaymentTerm
CRM_PaymentTerm_Update=crm_paymentterm
CRM_Product_Delete=CRM_ProductTable
CRM_ProductTable_insert=CRM_ProductTable
CRM_SectorInfo_Delete=CRM_SectorInfo
CRM_SectorInfo_Insert=CRM_SectorInfo
CRM_SectorInfo_Update=CRM_SectorInfo
CRM_SellChance_Delete=CRM_SellChance
CRM_SellChance_insert=CRM_SellChance
CRM_SellChance_Update=CRM_SellChance
CRM_SELLSTATUS_DELETE=CRM_SellStatus
CRM_SELLSTATUS_INSERT=CRM_SellStatus
CRM_SELLSTATUS_UPDATE=CRM_SellStatus
CRM_SellTimespan_insert=CRM_SelltimeSpan
CRM_SellTimespan_update=CRM_SelltimeSpan
CRM_Share_WorkPlan=workplanshare
CRM_Share_WorkPlan_Del=WorkPlanShareDetail
CRM_ShareByHrm_WorkPlan=WorkPlanShareDetail
CRM_ShareByHrm_WorkPlan_new1=WorkPlanShareDetail
CRM_ShareEditToManager=CRM_ShareInfo
CRM_ShareInfo_Delete=CRM_ShareInfo
CRM_SHAREINFO_INSERT=CRM_ShareInfo
CRM_ShareInfo_Update=CRM_ShareInfo
CRM_Successfactor_Delete=CRM_Successfactor
CRM_Successfactor_Insert=CRM_Successfactor
CRM_Successfactor_Update=CRM_Successfactor
CRM_T_ShareInfo_Delete=CRM_T_ShareInfo
CRM_T_SHAREINFO_INSERT=CRM_T_ShareInfo
CRM_TradeInfo_Delete=CRM_TradeInfo
CRM_TradeInfo_Insert=CRM_TradeInfo
CRM_TradeInfo_Update=CRM_TradeInfo
CRM_ViewLog1_Insert=CRM_viewLog1
CRMRLOGDATE_UPDATE_BY_CRMID=CRM_ContacterLog_Remind
CrmShareDetail_DByCrmId=CrmShareDetail
CrmShareDetail_DByUserId=CrmShareDetail
CrmShareDetail_Insert=CrmShareDetail
deleteVotingRemark=votingremark,votingresourceremark
Doc_AddSecidToFather=DocSubCategory
Doc_DeleteSecidFromFather=DocSubCategory
Doc_DirAcl_CPermissionForDir=DirAccessControlList
DOC_DIRACL_DELETE=diraccesscontrollist
Doc_DirAcl_Insert_Type1=DirAccessControlList
Doc_DirAcl_Insert_Type2=DirAccessControlList
Doc_DirAcl_Insert_Type3=DirAccessControlList
Doc_DirAcl_Insert_Type4=DirAccessControlList
Doc_DirAcl_Insert_Type5=DirAccessControlList
Doc_DirAcl_Insert_Type6=DirAccessControlList
Doc_DirAcl_Insert_Type7=DirAccessControlList
Doc_SecCagory_Insert=docseccategory
Doc_SecCagory_Update=docseccategory
Doc_SecCategory_Delete=Docseccategory
Doc_SecCategory_Insert=docseccategory
Doc_SecCategory_Insert_New=DocMainCategory,DocSubCategory,DocSecCategory
Doc_SecCategory_Update=docseccategory
Doc_SetSecIdsFromOldTable=DocSubCategory
DocApproveRemark_Insert=docApproveRemark
DocDetail_Approve=DocDetail
DocFrontpage_Delete=DocFrontpage
DocFrontpage_Insert=DocFrontpage
DocFrontpage_Insert_New=DocFrontpage
docfrontpage_update=docfrontpage
docfrontpage_update_New=docfrontpage
DOCIMAGEFILE_DBYDOCFILEID=imagefile,docdetail,docimagefile
DOCIMAGEFILE_DBYDOCID=imagefile,docimagefile
DocImageFile_Insert=DocImageFile
DocImageFile_UpdateByDocid=DocImageFile
DocImageFile_UpdateByDocidVid=DocImageFile
DocMark_Insert=DocMark
DocMark_update=docmark
DocPicUpload_Delete=DocPicUpload
DocPicUpload_Insert=DocPicUpload
DocPicUpload_Update=DocPicUpload
docReadTag_AddByUser=docReadTag
DocSearchMould_Delete=DocSearchMould
DocSearchMould_Insert=DocSearchMould
DocSearchMould_Update=DocSearchMould
DocSecCategoryShare_Delete=DocSecCategoryShare
DocSecCategoryShare_Ins_G=DocSecCategoryShare
DocSecCategoryShare_Insert=DocSecCategoryShare
DocShare_Delete=DocShare
DocShare_DeleteByDocidUserid=DocShare
DocShare_FromDocSecCategoryI=DocShare
DocShare_FromDocSecCatI_DL=DocShare
DocShare_IFromDocSecCat_G=DocShare
DocShare_IFromDocSecCategory=DocShare
DocShare_IFromDocSecCategoryDL=DocShare
DocShareDetail_DeleteByDocId=shareinnerdoc
DocShareDetail_DeleteByUserId=DocShareDetail
DocShareDetail_Insert=DocShareDetail
DocShareDetail_SetByDoc=temptablevalue_3,docsharedetail
DocSubscribe_DeleteById=DocSubscribe
DocSubscribe_Insert=DocSubscribe
DocSubscribe_update=DocSubscribe
DocSubscribe_updateSandO=DocSubscribe
DocSubscribe_UsateByDidSid=DocSubscribe
DocSysDefault_Update=DocSysDefault
DocUserCategory_DByCategory=DocUserCategory
DocUserCategory_DeleleByUser=DocUserCategory
DOCUSERCATEGORY_IBYCATEGORY=docusercategory
DOCUSERCATEGORY_INSERTBYUSER=docusercategory
DocUserselfCategory_Delete=DocUserselfCategory
DocUserselfCategory_Insert=DocUserselfCategory
DocUserselfCategory_Update=DocUserselfCategory
DocUserView_DeletebyDocId=DocUserView
DocUserView_DeletebyUserId=DocUserView
DOCUSERVIEW_INSERTBYUSER=docuserview
Employee_BusiCardUpdate=HrmResource,HrmInfoStatus
Employee_CardUpdate=HrmResource,HrmInfoStatus
Employee_CptUpdate=HrmInfoStatus
EMPLOYEE_EMAIUPDATE=mailpassword,hrmresource,hrminfostatus
EMPLOYEE_INSERT=hrmresource
Employee_LoginUpdate=HrmResource,HrmInfoStatus
Employee_SeatUpdate=HrmResource,HrmInfoStatus
Employee_SetAll=HrmInfoStatus
Employee_TeleUpdate=HrmResource,HrmInfoStatus
ErrorMsgIndex_Insert=ErrorMsgIndex
ErrorMsgInfo_Insert=ErrorMsgInfo
Exchange_Info_Insert=Exchange_Info
ExchangeInfo_Insert=Exchange_Info
ExchangeInfo_Insert_PRJ=Exchange_Info
Favourite_Insert=favourite
Favourite_Tab_Insert=favourite_tab
FavouriteTab_Insert=favouritetab
FileBackupIndex_Update=FileBackupIndex
fix_workplan_data=WorkPlan
FnaAccountList_Process=fnaaccountlist,fnatransaction
FnaAccountLog_Insert=FnaAccountLog
FnaAccountLog_Update=FnaAccountLog
FnaBudget_Approve=FnaBudget
FnaBudget_Delete=FnaBudget,FnaBudgetDetail
FnaBudget_Insert=FnaBudget
FnaBudget_Reopen=FnaBudget
FnaBudget_Update=FnaBudget,FnaBudgetDetail
FnaBudgetCheckDetail_Delete=FnaBudgetCheckDetail
FnaBudgetCheckDetail_Insert=FnaBudgetCheckDetail
FnaBudgetDetail_Insert=FnaBudgetDetail
FNABUDGETFEETYPE_DELETE=fnabudgetfeetype
FnaBudgetfeeType_Insert=fnaBudgetfeetype
FnaBudgetfeeType_Update=fnaBudgetfeetype
FnaBudgetInfo_Insert=FnaBudgetInfo
FnaBudgetInfo_Update=FnaBudgetInfo
FnaBudgetInfo_UpdateStatus=FnaBudgetInfo
FnaBudgetInfoDetail_Delete=FnaBudgetInfoDetail
FnaBudgetInfoDetail_Insert=FnaBudgetInfoDetail
FNABUDGETLIST_PROCESS=fnabudgetlist,fnabudget
FnaBudgetModule_Delete=FnaBudgetModule
FnaBudgetModule_Insert=FnaBudgetModule
FnaBudgetModule_Update=FnaBudgetModule
FnaCurrency_Insert=FnaCurrency
FnaCurrency_Update=FnaCurrency
FNACURRENCYEXCHANGE_DELETE=fnacurrencyexchange
FNACURRENCYEXCHANGE_INSERT=fnacurrencyexchange
FNACURRENCYEXCHANGE_UPDATE=fnacurrencyexchange
FnaDptToKingdee_Delete=FnaDptToKingdee
FnaDptToKingdee_Insert=FnaDptToKingdee
FnaExpensefeeRules_DByFeeid=FnaExpensefeeRules
FnaExpensefeeRules_Delete=FnaExpensefeeRules
FnaExpensefeeRules_Insert=FnaExpensefeeRules
FnaExpensefeeRules_Update=FnaExpensefeeRules
FnaExpensefeeType_Delete=fnaexpensefeetype
FnaExpensefeeType_Insert=fnaexpensefeetype
FnaExpensefeeType_Update=fnaexpensefeetype
FnaIndicator_Delete=FnaIndicator,FnaIndicatordetail
FnaIndicator_Insert=FnaIndicator
FnaIndicator_Update=FnaIndicator
FnaIndicatordetail_Delete=FnaIndicatordetail
FnaIndicatordetail_Insert=FnaIndicatordetail
FNALEDGER_DELETE=fnaledger,fnaaccount
FNALEDGER_DELETEAUTO=fnaledger
FNALEDGER_INSERT=fnaledger
FnaLedger_InsertAuto=FnaLedger
FNALEDGER_UPDATE=fnaaccount,fnaledger
FNALEDGER_UPDATEAUTO=fnaledger
FNALEDGERCATEGORY_DELETE=fnaledgercategory
FnaLedgerCategory_Insert=FnaLedgerCategory
FnaLedgerCategory_Update=FnaLedgerCategory
FnaLoanLog_Delete=FnaLoanLog
FnaLoanLog_Insert=FnaLoanLog
FnaLoanLog_Update=FnaLoanLog
FnaTransaction_Approve=FnaTransaction
FnaTransaction_Delete=FnaTransaction,FnaTransactionDetail
FnaTransaction_Insert=FnaTransaction
FnaTransaction_Reopen=FnaTransaction
FnaTransaction_Update=FnaTransaction,FnaTransactionDetail
FnaTransactionDetail_Insert=FnaTransactionDetail
FnaYearsPeriods_Close=FnaYearsPeriods
FnaYearsPeriods_Delete=FnaYearsPeriods,FnaYearsPeriodsList
FnaYearsPeriods_Insert=FnaYearsPeriods
FnaYearsPeriods_TakeEffect=FnaYearsPeriods
FnaYearsPeriods_Update=FnaYearsPeriods
FnaYearsPeriodsList_Close=FnaAccount,FnaAccountDepartment,FnaAccountCostcenter,FnaBudgetDepartment,FnaBudgetCostcenter,TM_FnaYearsPeriodsListClose1,TM_FnaYearsPeriodsListClose2,TM_FnaYearsPeriodsListClose3,TM_FnaYearsPeriodsListClose4,FnaTransaction,FnaBudget,FnaYearsPeriodsList
FnaYearsPeriodsList_Insert=FnaYearsPeriodsList
FNAYEARSPERIODSLIST_REOPEN=fnatransaction,fnabudget,fnayearsperiodslist,fnaaccount,fnaaccountdepartment,fnaaccountcostcenter,fnaaccountlist,fnabudgetdepartment,fnabudgetcostcenter
FnaYearsPeriodsList_Update=FnaYearsPeriodsList,FnaYearsPeriods
FormLabelMaintenance=htmllabelinfo
Hplayout_eid_update=hpelement,hpLayout
HrmAbsense1_Delete=Bill_HrmResourceAbsense
HrmAbsense1_Insert=Bill_HrmResourceAbsense
HrmAbsense1_Update=Bill_HrmResourceAbsense
HrmActivitiesCompetency_Delete=HrmActivitiesCompetency
HrmActivitiesCompetency_Insert=HrmActivitiesCompetency
HrmApplyRemark_Insert=HrmApplyRemark
HrmArrangeShift_Delete=HrmArrangeShift
HrmArrangeShift_Insert=HrmArrangeShift
HrmArrangeShift_UHistory=HrmArrangeShift
HrmArrangeShift_Update=HrmArrangeShift
HrmArrangeShift_Updatehistory=HrmArrangeShift
HrmArrangeShiftInfo_Insert=HrmArrangeShiftInfo
HrmArrangeShiftInfo_Save=HrmArrangeShiftInfo
HrmArrangeShiftSet_Delete=HrmArrangeShiftSet
HrmArrangeShiftSet_Insert=HrmArrangeShiftSet
HrmAwardInfo_Delete=HrmAwardInfo
HrmAwardInfo_Insert=HrmAwardInfo
HrmAwardInfo_Update=HrmAwardInfo
HrmAwardType_Delete=HrmAwardType
HrmAwardType_Insert=HrmAwardType
HrmAwardType_Update=HrmAwardType
HrmBank_Delete=hrmbank
HrmBank_Insert=hrmbank
HrmBank_Update=HrmBank
HrmBirthdayShare_Delete=HrmBirthdayShare
HrmBirthdayShare_Insert=HrmBirthdayShare
HrmByCheckPeople_Insert=HrmByCheckPeople
HrmByCheckPeople_Update=HrmByCheckPeople
HrmCardInfo_Insert=HrmCardInfo
HrmCareerApply_Backup=HrmCareerApply
HrmCareerApply_CreateInfo=HrmCareerApply
HrmCareerApply_Delete=HrmCareerApply,HrmInterview,HrmInterviewAssess,HrmInterviewResult,HrmCareerApplyOtherInfo,HrmEducationInfo,HrmFamilyInfo,HrmLanguageAbility,HrmWorkResume,HrmTrainBeforeWork,HrmRewardBeforeWork,HrmCertification
HrmCareerApply_Inform=HrmCareerApply
HrmCareerApply_Init=HrmCareerApply
HrmCareerApply_Insert=HrmCareerApply,HrmCareerApplyOtherInfo
HrmCareerApply_InsertBasic=HrmCareerApply
HrmCareerApply_InsertPer=HrmCareerApply
HrmCareerApply_ModInfo=HrmCareerApply
HrmCareerApply_Pass=HrmCareerApply
HrmCareerApply_U=HrmCareerApply,HrmCareerApplyOtherInfo
HrmCareerApply_Update=HrmCareerApply
HRMCAREERAPPLY_UPDATEBASIC=hrmcareerapply
HRMCAREERAPPLYHIRE=hrmcareerapply,hrminterview,hrminterviewassess,hrminterviewresult,hrmcareerapplyotherinfo
HrmCareerApplyOtherIndo_In=HrmCareerApplyOtherInfo
HrmCareerApplyOtherInfo_Upd=HrmCareerApplyOtherInfo
HrmCareerInvite_Delete=HrmCareerInvite,HrmCareerInviteStep
HrmCareerInvite_Insert=HrmCareerInvite
HrmCareerInvite_Update=HrmCareerInvite
HrmCareerInviteStep_Insert=HrmCareerInviteStep
HrmCareerPlan_Delete=HrmCareerPlan,HrmCareerPlanStep
HrmCareerPlan_Finish=HrmCareerPlan
HrmCareerPlan_Insert=HrmCareerPlan
HrmCareerPlan_Update=HrmCareerPlan
HrmCareerPlanStep_Insert=HrmCareerPlanStep
HrmCareerWorkexp_DByApplyId=HrmCareerWorkexp
HrmCareerWorkexp_Insert=HrmCareerWorkexp
HrmCertification_Delete=HrmCertification
HrmCertification_Insert=HrmCertification
HRMCERTIFICATION_UPDATE=hrmcertification,hrmresource
HrmCheckActor_Insert=HrmCheckActor
HrmCheckActor_Update=HrmCheckActor
HrmCheckGrade_Insert=HrmCheckGrade
HrmCheckGrade_Update=HrmCheckGrade
HrmCheckItem_Delete=HrmCheckItem
HrmCheckItem_Insert=HrmCheckItem
HrmCheckItem_Update=HrmCheckItem
HrmCheckKind_Insert=HrmCheckKind
HrmCheckKind_Update=HrmCheckKind
HrmCheckKindItem_Insert=HrmCheckKindItem
HrmCheckKindItem_Update=HrmCheckKindItem
HrmCheckList_Insert=HrmCheckList
HrmCheckPost_Insert=HrmCheckPost
HrmCheckPost_Update=HrmCheckPost
HrmCity_Delete=HrmCity
HrmCity_Insert=HrmCity
HrmCity_Update=HrmCity
HrmCityTwo_Delete=HrmCityTwo
HrmCityTwo_Insert=HrmCityTwo
HrmCityTwo_Update=HrmCityTwo
HrmCompany_Update=HrmCompany
HrmCompetency_Delete=HrmCompetency
HrmCompetency_Insert=HrmCompetency
HrmCompetency_Update=HrmCompetency
HrmContract_UpdateByHrm=HrmContract
HrmConType_Delete=HrmContractType
HrmConType_Insert=HrmContractType
HrmConType_Update=HrmContractType
HrmCostcenter_Delete=HrmCostcenter
HrmCostcenter_Insert=HrmCostcenter
HrmCostcenter_Update=HrmCostcenter
HrmCostcenterMainCategory_U=HrmCostcenterMainCategory
HrmCostcenterSubCategory_D=HrmCostcenterSubCategory
HrmCostcenterSubCategory_I=HrmCostcenterSubCategory
HrmCostcenterSubCategory_U=HrmCostcenterSubCategory
HrmCountry_Delete=HrmCountry
HrmCountry_Insert=HrmCountry
HrmCountry_Update=HrmCountry
HrmDepartment_Delete=HrmDepartment
HrmDepartment_Insert=HrmDepartment
HrmDepartment_Update=HrmDepartment
HrmEducationInfo_Delete=HrmEducationInfo
HrmEducationInfo_Insert=HrmEducationInfo
HrmEducationInfo_Update=HrmEducationInfo
HrmEducationLevel_Delete=HrmEducationLevel
HrmEducationLevel_Insert=HrmEducationLevel
HrmEducationLevel_Update=HrmEducationLevel
HrmFamilyInfo_Delete=HrmFamilyInfo
HrmFamilyInfo_Insert=HrmFamilyInfo
HrmFamilyInfo_Update=HrmFamilyInfo
HrmInfoStatus_Finish=HrmInfoStatus
HrmInfoStatus_UpdateCapital=HrmInfoStatus
HrmInfoStatus_UpdateFinance=HrmInfoStatus
HrmInfoStatus_UpdateSystem=HrmInfoStatus
HrmInterview_Delete=HrmInterview
HrmInterview_Insert=HrmInterview
HrmInterviewAssess_Delete=HrmInterviewAssess
HrmInterviewAssess_Insert=HrmInterviewAssess
HrmInterviewResult_Insert=HrmInterviewResult,HrmInterview
HrmJobActivities_Delete=HrmJobActivities
HrmJobActivities_Insert=HrmJobActivities
HrmJobActivities_Update=HrmJobActivities
HrmJobCall_Delete=HrmJobCall
HrmJobCall_Insert=HrmJobCall
HrmJobCall_Update=HrmJobCall
HrmJobGroups_Delete=HrmJobGroups
HrmJobGroups_Insert=HrmJobGroups
HrmJobGroups_Update=HrmJobGroups
HrmJobTitles_Delete=HrmJobTitles
HrmJobTitles_Insert=HrmJobTitles
HrmJobTitles_Update=HrmJobTitles
HrmJobTitlesTemplet_Delete=HrmJobTitlesTemplet
HrmJobTitlesTemplet_Insert=HrmJobTitlesTemplet
HrmJobTitlesTemplet_Update=HrmJobTitlesTemplet
HrmJobType_Delete=HrmJobType
HrmJobType_Insert=HrmJobType
HrmJobType_Update=HrmJobType
HrmkqSystem_Insert=HrmkqSystemSet
HrmkqSystemSet_Update=HrmkqSystemSet
HrmLanguageAbility_Delete=HrmLanguageAbility
HrmLanguageAbility_Insert=HrmLanguageAbility
HrmLanguageAbility_Update=HrmLanguageAbility
HrmList_Update=HrmListValidate
HrmLocations_Delete=HrmLocations
HrmLocations_Insert=HrmLocations
HrmLocations_Update=HrmLocations
HrmnetworkSegStr_Delete=HrmnetworkSegStr
HrmnetworkSegStr_Insert=HrmnetworkSegStr
HrmnetworkSegStr_Update=HrmnetworkSegStr
HrmOtherInfoType_Delete=hrmotherinfotype
HrmOtherInfoType_Insert=hrmotherinfotype
HrmOtherInfoType_Update=hrmotherinfotype
HrmPlanColor_Update=hrmplancolor
HrmProvince_Delete=HrmProvince
HrmProvince_Insert=HrmProvince
HrmProvince_Update=HrmProvince
HrmPubHoliday_Copy=hrmpubholiday
HrmPubHoliday_Delete=hrmpubholiday
HrmPubHoliday_Insert=HrmPubHoliday
HrmPubHoliday_Update=HrmPubHoliday
HrmResource_CreateInfo=HrmResource
HrmResource_Delete=HrmResource
HrmResource_DepUpdate=HrmResource,CRM_CustomerInfo
HrmResource_Dismiss=HrmStatusHistory,HrmResource
HrmResource_Extend=HrmStatusHistory,HrmResource
HrmResource_Fire=HrmStatusHistory,HrmResource
HrmResource_Hire=HrmStatusHistory
HrmResource_ModInfo=HrmResource
HrmResource_Redeploy=HrmStatusHistory
HrmResource_Rehire=HrmStatusHistory,HrmResource
HrmResource_Retire=HrmStatusHistory,HrmResource
HrmResource_Trigger_Insert=HrmResource_Trigger
HrmResource_Try=HrmStatusHistory
HrmResource_up_AllManagerstr=HrmResource
HrmResource_UpdateByDep=HrmResource
HrmResource_UpdateLoginDate=HrmResource
HrmResource_UpdateManagerStr=HrmResource_Trigger,HrmResource
HrmResource_UpdatePassword=HrmResource,HrmResourceManager
HrmResource_UpdatePic=HrmResource,ImageFile
HrmResource_UpdateSubCom=HrmResource_Trigger,HrmResource
HrmResourceBasicInfo_Insert=HrmResource
HRMRESOURCEBASICINFO_UPDATE=hrmresource_trigger,hrmresource,crm_customerinfo
HrmResourceCompetency_Insert=HrmResourceCompetency
HrmResourceCompetency_Update=HrmResourceCompetency
HrmResourceComponent_Delete=HrmResourceComponent
HrmResourceComponent_Insert=HrmResourceComponent
HrmResourceComponent_Update=HrmResourceComponent
HrmResourceContactInfo_Update=HrmResource
HRMRESOURCEDATECHECK=hrmresource,hrmrolemembers,pluginlicenseuser
HRMRESOURCEDATECHECK=hrmrolemembers,pluginlicenseuser
HrmResourceDefine_Update=HrmResource
HrmResourceFinanceInfo_Insert=HrmResource
HrmResourceOtherInfo_Delete=HrmResourceOtherInfo
HrmResourceOtherInfo_Insert=HrmResourceOtherInfo
HrmResourceOtherInfo_Update=HrmResourceOtherInfo
HRMRESOURCEPERSONALINFO_INSERT=hrmresource
HRMRESOURCESHARE=contractsharedetail
HRMRESOURCESHARE=temptablevaluecontract,contractsharedetail,tmptablevaluewp,hrmresource_trigger,shareinnerdoc
HrmResourceSkill_Delete=HrmResourceSkill
HrmResourceSkill_Insert=HrmResourceSkill
HrmResourceSkill_Update=HrmResourceSkill
HrmResourceSystemInfo_Insert1=HrmResource,HrmResource_Trigger
HRMRESOURCESYSTEMINFO_INSERT=hrmresource
HrmResourceWorkInfo_Insert=HrmResource
HrmResRpDefine_Delete=HrmResourceRpDefine
HrmResRpDefine_Insert=HrmResourceRpDefine
HrmRewardBeforeWork_Insert=HrmRewardBeforeWork
HrmRewardsRecord_Delete=HrmRewardsRecord
HrmRewardsRecord_Insert=HrmRewardsRecord
HrmRewardsRecord_Update=HrmRewardsRecord
HrmRewardsType_Delete=HrmRewardsType
HrmRewardsType_Insert=HrmRewardsType
HrmRewardsType_Update=HrmRewardsType
HrmRightCardInfo_AddWork=HrmRightCardInfo
HrmRightCardInfo_Delete=HrmRightCardInfo
HrmRightCardInfo_Insert=HrmRightCardInfo
HrmRightTransfer_CRM=CRM_CustomerInfo
HrmRightTransfer_Doc=docdetail
HrmRightTransfer_Project=Prj_ProjectInfo
HrmRightTransfer_Resource=hrmresource
HrmRoleMembers_Delete=HrmRoleMembers
HrmRoleMembers_Insert=HrmRoleMembers
HrmRoleMembers_Tri_De=HrmRoleMembers_Tri
HrmRoleMembers_Tri_In=HrmRoleMembers_Tri
HrmRoleMembers_Tri_Up=HrmRoleMembers_Tri
HrmRoleMembers_Update=HrmRoleMembers
HRMROLEMEMBERSSHARE=contractsharedetail,temptablevaluecontract,tmptablevaluewp,workplansharedetail
HrmRoles_deleteSingle=hrmroles,SystemRightRoles,SysRoleSubcomRight
HrmRoles_insert=HrmRoles
HrmRoles_insert_name=HrmRoles
hrmroles_update=hrmroles
HrmRoleSRT_AddByNewSc=SysRoleSubcomRight
HrmRoleStrRight_Del=SysRoleSubcomRight
HrmRoleStrRight_Ins=SysRoleSubcomRight
HrmSalaryCalBench_Insert=HrmSalaryCalBench
HrmSalaryCalRate_Insert=HrmSalaryCalrate
HrmSalaryChange_Insert=HrmSalaryChange
HrmSalaryComponent_Delete=HrmSalaryComponent,HrmSalaryComponentDetail
HrmSalaryComponent_Insert=HrmSalaryComponent
HrmSalaryComponent_Update=HrmSalaryComponent
HrmSalaryComponentDetail_D=HrmSalaryComponentDetail
HrmSalaryComponentDetail_I=HrmSalaryComponentDetail
HrmSalaryComponentTypes_Delete=HrmSalaryComponentTypes
HrmSalaryComponentTypes_Insert=HrmSalaryComponentTypes
HrmSalaryComponentTypes_Update=hrmsalarycomponenttypes
HrmSalaryCreateInfo_Delete=HrmSalaryCreateInfo
HrmSalaryCreateInfo_Insert=HrmSalaryCreateInfo
HrmSalaryDiffDetail_Insert=HrmSalaryDiffDetail
HRMSALARYITEM_DELETE=hrmsalaryitem,hrmsalaryrank,hrmsalaryresourcepay,hrmsalarytaxscope,hrmsalaryschedule,hrmsalaryshiftpay,hrmsalarywelfarerate,hrmsalarytaxrate,hrmsalarytaxbench,hrmsalarycalrate,hrmsalarycalbench
HrmSalaryItem_Insert=HrmSalaryItem
HrmSalaryItem_Update=HrmSalaryItem,HrmSalaryRank,HrmSalaryResourcePay,HrmSalaryTaxscope,HrmSalaryWelfarerate,HrmSalarySchedule,HrmSalaryShiftPay,HrmSalaryTaxrate,HrmSalaryTaxbench,HrmSalaryCalRate,HrmSalaryCalBench
HrmSalaryPay_Insert=HrmSalaryPay
HrmSalaryPay_Update=HrmSalaryPay
HrmSalaryPaydetail_Insert=HrmSalaryPaydetail
HrmSalaryPaydetail_Update=HrmSalaryPaydetail
HrmSalaryPersonality_Delete=HrmSalaryPersonality
HrmSalaryPersonality_Insert=hrmsalarypersonality,hrmsalaryhistory
HRMSALARYPERSONALITY_UPDATE=hrmsalaryhistory,hrmsalarypersonality
HrmSalaryRank_Delete=HrmSalaryRank
HrmSalaryRank_Insert=HrmSalaryRank
HrmSalaryRank_Update=hrmsalaryrank
HrmSalaryRate_Delete=HrmSalaryRate
HrmSalaryRate_Insert=HrmSalaryRate
HrmSalaryRate_Update=HrmSalaryRate
HrmSalaryRateBase_Delete=HrmSalaryRateBase
HrmSalaryRateBase_Insert=HrmSalaryRateBase
HrmSalaryRateBase_Update=HrmSalaryRateBase
HrmSalaryResourcePay_Delete=HrmSalaryResourcePay
HrmSalaryResourcePay_Insert=HrmSalaryResourcePay
HrmSalaryResult_delete=HrmSalaryResult
HrmSalaryResult_Insert=HrmSalaryResult
HrmSalaryResult_send=HrmSalaryResult
HrmSalaryResult_Update=HrmSalaryResult
HrmSalaryScheduleAdd_Insert=HrmSalarySchedule
HrmSalaryScheduleDec_Insert=HrmSalarySchedule
HrmSalaryShiftPay_Delete=HrmSalaryShiftPay
HrmSalaryShiftPay_Insert=HrmSalaryShiftPay
HrmSalaryTaxbench_Insert=HrmSalaryTaxbench
HrmSalaryTaxrate_Insert=HrmSalaryTaxrate
HrmSalaryWelfarerate_Delete=HrmSalaryWelfarerate
HrmSalaryWelfarerate_Insert=HrmSalaryWelfarerate
HrmSchedule_Delete=HrmSchedule
HrmSchedule_Insert=HrmSchedule
HrmSchedule_Update=HrmSchedule
HrmScheduleDiff_Delete=HrmScheduleDiff
HrmScheduleDiff_Insert=HrmScheduleDiff
HrmScheduleDiff_Update=HrmScheduleDiff
HrmScheduleMain_Delete=HrmScheduleMaintance
HrmScheduleMain_Insert=HrmScheduleMaintance
HrmScheduleMain_Update=HrmScheduleMaintance
HrmScheduleTotalDay=HrmScheduleMaintance
HrmScheduleTotalTime=HrmScheduleMaintance
HrmSearchMould_Delete=HrmSearchMould
HrmSearchMould_Insert=HrmSearchMould
HrmSearchMould_Update=HrmSearchMould
HrmSearchMouldDefine_Update=HrmSearchMould
HrmShare_Delete=HrmShare
HrmShare_Insert=HrmShare
HrmSpeciality_Delete=HrmSpeciality
HrmSpeciality_Insert=HrmSpeciality
HrmSpeciality_Update=HrmSpeciality
HrmSubCompany_Delete=HrmSubCompany
HrmSubCompany_Insert=HrmSubCompany
HrmSubCompany_Update=HrmSubCompany
HrmTimecardInfo_Update=HrmTimecardinfo
HrmTimecardUser_Update=HrmTimecardUser
HrmTrain_Delete=HrmTrain,HrmTrainActor,HrmTrainDay,HrmTrainAssess,HrmTrainTest
HrmTrain_Finish=HrmTrain
HrmTrain_Insert=HrmTrain
HrmTrain_Update=HrmTrain
HrmTrainActor_Insert=HrmTrainActor
HrmTrainActor_Update=HrmTrainActor
HrmTrainActor_UpdateReset=HrmTrainActor
HrmTrainAssess_Insert=HrmTrainAssess
HrmTrainAssess_Update=HrmTrainAssess
HrmTrainBeforeWork_Insert=HrmTrainBeforeWork
HRMTRAINDAY_DELETE=hrmtrainday,hrmtrainactor
HrmTrainDay_Insert=hrmtrainday
HrmTrainDay_Update=hrmtrainday
HrmTrainLayout_Delete=HrmTrainLayout
HrmTrainLayout_Insert=HrmTrainLayout
HrmTrainLayout_Update=HrmTrainLayout
HrmTrainPlan_Delete=HrmTrainPlan
HrmTrainPlan_Insert=HrmTrainPlan
HrmTrainPlan_Update=HrmTrainPlan
HrmTrainPlanRange_Delete=HrmTrainPlanRange
HrmTrainPlanRange_Insert=HrmTrainPlanRange,HrmTrainPlan
HrmTrainRecord_Delete=HrmTrainRecord
HrmTrainRecord_Insert=HrmTrainRecord
HrmTrainRecord_Update=HrmTrainRecord
HrmTrainRes_Delete=HrmTrainResource
HrmTrainRes_Insert=HrmTrainResource
HrmTrainRes_Update=HrmTrainResource
HrmTrainTest_Insert=HrmTrainTest
HrmTrainTest_Update=HrmTrainTest
HrmTrainType_Delete=HrmTrainType
HrmTrainType_Insert=HrmTrainType
HrmTrainType_Update=HrmTrainType
HrmUseDemand_Close=HrmUseDemand
HrmUseDemand_Delete=HrmUseDemand
HrmUseDemand_Insert=HrmUseDemand
HrmUseDemand_Update=HrmUseDemand
HrmUseKind_Delete=HrmUseKind
HrmUseKind_Insert=HrmUseKind
HrmUseKind_Update=HrmUseKind
HrmUserDefine_Insert=HrmUserDefine
HrmUserDefine_Update=HrmUserDefine
HrmValidateCardInfo_Insert=HrmValidateCardInfo
HrmWelfare_Delete=HrmWelfare
HrmWelfare_Insert=HrmWelfare
HrmWelfare_Update=HrmWelfare
HrmWorkResume_Delete=HrmWorkResume
HrmWorkResume_Insert=HrmWorkResume
HrmWorkResume_Update=HrmWorkResume
HrmWorkResumeIn_Delete=HrmWorkResumeIn
HrmWorkResumeIn_Insert=HrmWorkResumeIn
HrmWorkResumeIn_Update=HrmWorkResumeIn
HrmWorkTimeCount_Insert=HrmWorkTimeCount
HrmWorkTimeWarp_Insert=HrmWorkTimeWarp
HtmlLabelIndex_Insert=HtmlLabelIndex
HtmlLabelInfo_Insert=HtmlLabelInfo
HtmlNoteIndex_Insert=HtmlNoteIndex
HtmlNoteInfo_Insert=HtmlNoteInfo
IDirAccessControlDetailP=DirAccessControlDetail
imagefile_AddByDoc=imagefile
imagefile_DeleteByDoc=imagefile
ImageFile_DeleteByImagefileID=ImageFile
ImageFile_Insert=ImageFile
ImageFile_Insert_New=ImageFile
importexpense=fnaexpenseinfo
importloan=fnaloaninfo
Init_cowork_discussant=cowork_items
Init_CRM_SellChance=CRM_SellChance
init_monitor=workflow_monitor_info,workflow_monitor_detail,workflow_monitor_bound
InitBrowserUrl=workflow_browserurl
initDocDetail_docExtendName=docdetail
initDocdetailMarkRead=docdetail
initjobtitle2=HrmJobTitles
initjobtitle=HrmJobTitles
INITMENUCONFIG=mainmenuconfig
int_authorizeRight_Insert=int_authorizeRight
int_authorizeRight_update=int_authorizeRight
int_browermark_Insert=int_browermark
int_BrowserbaseInfo_insert=int_BrowserbaseInfo
IWorkflowCenterSettingDetailP=workflowcentersettingdetail
LeftMenuConfig_Insert_All=LeftMenuConfig
LEFTMENUCONFIG_SYS_INIT=leftmenuconfig
LeftMenuConfig_U_ByInfoInsert=LeftMenuConfig
LeftMenuInfo_DeleteById=LeftMenuInfo
LeftMenuInfo_Insert=LeftMenuInfo
LeftMenuInfo_Update=LeftMenuInfo
LGCASSET_DELETE=lgcassetassortment,lgcasset,lgcassetcountry
LGCASSET_INSERT=lgcasset,lgcassetcountry,lgcassetassortment
LGCASSET_UPDATE=lgcasset,lgcassetcountry
LGCASSET_UPDATE=lgcassetcountry
LGCASSET_UPDATEPIC=lgcasset,imagefile
LgcAssetAssortment_Delete=LgcAssetAssortment
LgcAssetAssortment_Insert=LgcAssetAssortment
LgcAssetAssortment_Update=LgcAssetAssortment
LgcAssetAssortment_UpdatePic=LgcAssetAssortment,ImageFile
LgcAssetCountry_Insert=LgcAssetCountry
LgcAssetCrm_Delete=LgcAssetCrm
LgcAssetCrm_Insert=LgcAssetCrm
LgcAssetCrm_Update=LgcAssetCrm
LgcAssetmark_Change=LgcAsset
LgcAssetPrice_Delete=LgcAssetPrice
LgcAssetPrice_Insert=LgcAssetPrice
LgcAssetPrice_Update=LgcAssetPrice
LgcAssetRelationType_Delete=LgcAssetRelationType
LgcAssetRelationType_Insert=LgcAssetRelationType
LgcAssetRelationType_Update=LgcAssetRelationType
LGCASSETSTOCK_DELETE=lgcassetstock,lgcstockinout,lgcstockinoutdetail
LGCASSETSTOCK_INSERT=lgcassetstock,lgcstockinout,lgcstockinoutdetail
LGCASSETSTOCK_UPDATE=lgcassetstock,lgcstockinout,lgcstockinoutdetail
LgcAssetType_Delete=LgcAssetType
LgcAssetType_Insert=LgcAssetType
LgcAssetType_Update=LgcAssetType
LgcAssetUnit_Delete=LgcAssetUnit
LgcAssetUnit_Insert=LgcAssetUnit
LgcAssetUnit_Update=LgcAssetUnit
LgcAssortmentMove_ChgCount=LgcAssetAssortment
LgcAssortmentMove_Move=LgcAsset
LgcAttributeMove_Add=LgcAsset
LgcAttributeMove_Remove=LgcAsset
LgcCatalogs_Delete=LgcCatalogs
LgcCatalogs_Insert=LgcCatalogs
LgcCatalogs_Update=LgcCatalogs
LgcConfiguration_Delete=LgcConfiguration
LgcConfiguration_Insert=LgcConfiguration
LgcConfiguration_Update=LgcConfiguration
LgcCountType_Delete=LgcCountType
LgcCountType_Insert=LgcCountType
LgcCountType_Update=LgcCountType
LgcPaymentType_Delete=LgcPaymentType
LgcPaymentType_Insert=LgcPaymentType
LgcPaymentType_Update=LgcPaymentType
LgcSearchDefine_Insert=LgcSearchDefine
LgcSearchMould_Delete=LgcSearchMould
LgcSearchMould_Insert=LgcSearchMould
LgcSearchMould_Update=LgcSearchMould
LgcStockInOutDetail_Insert1=LgcStockInOutDetail
LgcStockInOutDetail_Insert=LgcStockInOutDetail
LgcStockInOutDetail_Update1=LgcStockInOutDetail
LgcStockInOutDetail_Update=LgcStockInOutDetail
LgcStockMode_Delete=LgcStockMode
LgcStockMode_Insert=LgcStockMode
LgcStockMode_Update=LgcStockMode
LgcWarehouse_Delete=LgcWarehouse
LgcWarehouse_Insert=LgcWarehouse
LgcWarehouse_Update=LgcWarehouse
LGCWEBSHOP_DELETE=lgcwebshop,lgcwebshopdetail
LgcWebShop_Insert=LgcWebShop
LgcWebShop_Update=LgcWebShop
LgcWebShopDetail_Insert=LgcWebShopDetail
LMConfig_U_ByInfoInsert=LeftMenuConfig
LMInfo_Insert=LeftMenuInfo
Mail2CRMContact=WorkPlan
MailPassword_IByResourceid=mailpassword
MAILRESOURCE_DELETE=mailresourcefile,mailresource
MAILRESOURCE_DELETE=mailresourcefile,mailresource,mailcontent
MailResource_Insert=MailResource
MailResource_Update=MailResource
MailResource_UpdateMailtype=MailResource
MailResourceContentUpdate=MailResource
MailResourceFile_Insert=MailResourceFile
MailSendMain_Insert=MailSendMain
MailSendRecord_Insert=MailSendRecord
MailShare_Delete=MailShare
MailShare_Insert=MailShare
MailShare_InsertByUser=MailUserShare
MailUser_DeleteById=MailUser
MailUser_Insert=MailUser
MailUserAddress_Delete=MailUserAddress
MailUserGroup_DeleteById=MailUserGroup
MailUserGroup_Insert=MailUserGroup
MailUserGroup_UpdateById=MailUserGroup
MailUserShare_DbyMailgroupId=MailUserShare
MailUserShare_DeletebyUserId=MailUserShare
MainMenuConfig_U_ByInfoInsert=MainMenuConfig
MainMenuInfo_DeleteById=MainMenuInfo
MainMenuInfo_Insert=MainMenuInfo
MainMenuInfo_Update=MainMenuInfo
Meeting_Address_Delete=Meeting_Address
Meeting_Address_Insert=Meeting_Address
Meeting_Approve=Meeting
Meeting_Decision_Delete=Meeting_Decision
Meeting_Decision_Insert=Meeting_Decision
Meeting_Delete=Meeting
Meeting_Insert=Meeting
Meeting_Member2_Delete=Meeting_Member2
Meeting_Member2_Insert=Meeting_Member2
Meeting_Member2_Update=Meeting_Member2
Meeting_Member_Delete=Meeting_Member
Meeting_Member_Insert=Meeting_Member
Meeting_MemberCrm_Delete=Meeting_MemberCrm
Meeting_MemberCrm_Insert=Meeting_MemberCrm
Meeting_Schedule=Meeting
Meeting_Service2_Delete=Meeting_Service2
Meeting_Service2_Insert=Meeting_Service2
Meeting_Service_Delete=Meeting_Service
Meeting_Service_Insert=Meeting_Service
Meeting_Submit=Meeting
Meeting_Topic_Delete=Meeting_Topic
Meeting_Topic_Insert=Meeting_Topic
Meeting_Topic_Update=Meeting_Topic
Meeting_TopicDate_Delete=Meeting_TopicDate
Meeting_TopicDate_Insert=Meeting_TopicDate
Meeting_TopicDoc_Delete=Meeting_TopicDoc
Meeting_TopicDoc_Insert=Meeting_TopicDoc
Meeting_Type_Delete=Meeting_Type
Meeting_Type_Insert=Meeting_Type
Meeting_Type_Update=Meeting_Type
Meeting_Update=Meeting
Meeting_UpdateDecision=Meeting
MeetingCaller_Delete=MeetingCaller
MeetingCaller_Insert=MeetingCaller
MeetingRoom_DeleById=MeetingRoom
MeetingRoom_Insert=MeetingRoom
MeetingRoom_Update=MeetingRoom
MeetingShareDetail_DById=Meeting_ShareDetail
MeetingShareDetail_Insert=Meeting_ShareDetail
MMConfig_U_ByInfoInsert=MainMenuConfig
MMInfo_Insert=MainMenuInfo
mode_addshare_c=modeDataShare_8_set,modeDataShare_8
mode_C_BrowserDspField_Init=mode_CustomBrowserDspField
mode_C_BrowserDspField_Insert=mode_CustomBrowserDspField
mode_CustomDspField_Init=mode_CustomDspField
mode_CustomDspField_Insert=mode_CustomDspField
mode_pageexpand_historydata2=mode_pageexpand
mode_pageexpand_historydata=mode_pageexpand
NewDocFrontpage_DeleteByDocId=NewDocFrontpage
NewDocFrontpage_DeleteByUser=NewDocFrontpage
NewDocFrontpage_Insert=NewDocFrontpage
outter_encryptclassIni=outter_encryptclass,outter_sys
p_synchrmenu_top=mainmenuconfig
p_updateReportSqlWHere=hpNewsTabInfo
p_upgrade_newnotice=hpElement_notice
PDocShare_SetById=shareinnerdoc
PersonalHPDesign_Duplicate=PersonalHomePageDesign
PersonalHPDesign_Update1=PersonalHomePageDesign
PersonalHPDesign_Update2=PersonalHomePageDesign
Prj_Cpt_Insert=Prj_Cpt
Prj_Customer_DeleteByID=Prj_Customer
Prj_Customer_Insert=Prj_Customer
Prj_Customer_Update=Prj_Customer
Prj_Doc_Insert=Prj_Doc
Prj_Jianbao_Insert=Prj_Jianbao
Prj_Log_Insert=Prj_Log
Prj_Material_Delete=Prj_Material
Prj_Material_Insert=Prj_Material,Prj_MaterialProcess
Prj_Material_Update=Prj_Material
Prj_MaterialProcess_Delete=Prj_MaterialProcess
Prj_MaterialProcess_Insert=Prj_MaterialProcess
Prj_MaterialProcess_Update=Prj_MaterialProcess
Prj_Member_Delete=Prj_Member
Prj_Member_Insert=Prj_Member,Prj_MemberProcess
Prj_Member_Update=Prj_Member
Prj_MemberProcess_Delete=Prj_MemberProcess
Prj_MemberProcess_Insert=Prj_MemberProcess
Prj_MemberProcess_Update=Prj_MemberProcess
Prj_Modify_Insert=Prj_Modify
Prj_Plan_Approve=Prj_TaskInfo
Prj_Plan_SaveFromProcess=Prj_TaskInfo
Prj_Plan_Submit=Prj_TaskProcess
Prj_PlanInfo_Delete=Prj_PlanInfo
Prj_PlanInfo_Insert=Prj_PlanInfo
Prj_PlanInfo_Update=Prj_PlanInfo
Prj_PlanInfo_Validate=Prj_PlanInfo
Prj_PlanSort_Delete=Prj_PlanSort
Prj_PlanSort_Insert=Prj_PlanSort
Prj_PlanSort_Update=Prj_PlanSort
Prj_PlanType_Delete=Prj_PlanType
Prj_PlanType_Insert=Prj_PlanType
Prj_PlanType_Update=Prj_PlanType
Prj_Processing_Archive=Prj_Processing
Prj_Processing_Insert=Prj_Processing
Prj_Processing_Update=Prj_Processing
Prj_ProcessingType_Delete=Prj_ProcessingType
Prj_ProcessingType_Insert=Prj_ProcessingType
Prj_ProcessingType_Update=Prj_ProcessingType
Prj_ProjectInfo_Insert=Prj_ProjectInfo
Prj_ProjectInfo_UConids=Prj_ProjectInfo
Prj_ProjectInfo_Update=Prj_ProjectInfo
Prj_ProjectInfo_UpdateForMoney=Prj_ProjectInfo
Prj_ProjectStatus_Delete=Prj_ProjectStatus
Prj_ProjectStatus_Insert=Prj_ProjectStatus
Prj_ProjectStatus_Update=Prj_ProjectStatus
Prj_ProjectType_Delete=Prj_ProjectType
Prj_ProjectType_Insert=Prj_ProjectType
Prj_ProjectType_Update=Prj_ProjectType
Prj_Request_Insert=Prj_Request
PRJ_SAVEASTEMPLET=prj_template
Prj_SearchMould_Delete=Prj_SearchMould
Prj_SearchMould_Insert=Prj_SearchMould
Prj_SearchMould_Update=Prj_SearchMould
prj_selectitem_insert_new=prj_selectitem
Prj_ShareInfo_Delete=Prj_ShareInfo
PRJ_SHAREINFO_INSERT=prj_shareinfo
PRJ_SHAREINFO_UPDATE=prj_shareinfo
Prj_T_ShareInfo_Delete=Prj_T_ShareInfo
Prj_T_ShareInfo_Insert=Prj_T_ShareInfo
Prj_Task_UpdateParent=Prj_TaskProcess
Prj_TaskInfo_Approve=Prj_TaskInfo,Prj_TaskProcess,Prj_MemberProcess,Prj_ToolProcess,Prj_MaterialProcess
PRJ_TASKINFO_DELETEBYID=prj_taskprocess,prj_member,prj_tool,prj_material,prj_memberprocess,prj_toolprocess,prj_materialprocess,prj_taskinfo
PRJ_TASKINFO_DELETEBYVESION=prj_taskprocess,prj_member,prj_tool,prj_material,prj_memberprocess,prj_toolprocess,prj_materialprocess,prj_taskinfo
Prj_TaskInfo_Insert=Prj_TaskInfo,Prj_TaskProcess
Prj_TaskInfo_NewPlan=prj_taskinfo,Prj_Member,Prj_Tool,Prj_Material
Prj_TaskInfo_Update=Prj_TaskInfo
Prj_TaskLog_Insert=Task_Log
Prj_TaskModify_Insert=Task_Modify
Prj_TaskModifyLog_Insert=Prj_TaskModifyLog
Prj_TaskProcess_DeleteByID=Prj_TaskProcess
Prj_TaskProcess_Insert=Prj_TaskProcess
Prj_TaskProcess_UParentHrmIds=Prj_TaskProcess
Prj_TaskProcess_Update=Prj_TaskProcess
Prj_TaskProcess_UpdateParent=Prj_TaskProcess
Prj_TaskShareDtl_DeleteByTaskId=Prj_TaskShareDtl
Prj_TaskShareDtl_Insert=Prj_TaskShareDtl
Prj_TaskShareInfo_Delete=Prj_TaskShareInfo
Prj_TaskShareInfo_Insert=Prj_TaskShareInfo
Prj_Tool_Delete=Prj_Tool
Prj_Tool_Insert=Prj_Tool,Prj_ToolProcess
Prj_Tool_Update=Prj_Tool
Prj_ToolProcess_Delete=Prj_ToolProcess
Prj_ToolProcess_Insert=Prj_ToolProcess
Prj_ToolProcess_Update=Prj_ToolProcess
Prj_ViewedLog_Insert=Prj_ViewedLog
Prj_ViewLog1_Insert=Prj_viewLog1
Prj_WorkType_Delete=Prj_WorkType
Prj_WorkType_Insert=Prj_WorkType
Prj_WorkType_Update=Prj_WorkType
PrjShareDetail_DByPrjId=PrjShareDetail
PrjShareDetail_DByUserId=PrjShareDetail
PrjShareDetail_Insert=PrjShareDetail
PrjTaskProcess_UOrder=Prj_TaskProcess
prjtsk_selectitem_insert_new=prjtsk_selectitem
proc_count_addonline=T_CountUserOnLine
proc_count_reduceonline=T_CountUserOnLine
proc_count_restart=T_CountUserOnLine
ProcedureInfo_Delete=ProcedureInfo
ProcedureInfo_Insert=ProcedureInfo
ProcedureInfo_Update=ProcedureInfo
Proj_Members_update=Prj_ProjectInfo
reset_CoworkRemind=SysPoppupRemindInfo
resetMeetingRoomAndType=meetingtype_share,MeetingRoom_share
sap_complexname_Insert=sap_complexname
sap_inParameter_Insert=sap_inParameter
sap_inStructure_Insert=sap_inStructure
sap_inTable_Insert=sap_inTable
sap_outParameter_Insert=sap_outParameter
sap_outparaprocess_Insert=sap_outparaprocess
sap_outStructure_Insert=sap_outStructure
Share_forcrm_init=CRM_ShareInfo
Share_forDoc=shareinnerdoc,shareouterdoc
Share_forDoc_init=ShareinnerDoc,ShareouterDoc
ShareForWorkflow=ShareInnerWfCreate
SMS_Message_Insert=SMS_Message
Sys_Slogan_Update=Sys_Slogan
SysFavourite_DeleteByID=sysfavourite
SysFavourite_Insert=sysfavourite
SysFavourite_Update=sysfavourite
SysMaintenanceLog_proc=SysMaintenanceLog
sysPhrase_deleteById=sysPhrase
sysPhrase_insert=sysPhrase
sysPhrase_update=sysPhrase
SysRemindInfo_DeleteHasendwf=SysRemindInfo,SysPopRemindInfo
SysRemindInfo_DeleteHasnewwf=SysRemindInfo,SysPopRemindInfo
SysRemindInfo_InserCrmcontact=SysPopRemindInfo
SYSREMINDINFO_INSERDEALWF=sysremindinfo
SysRemindInfo_InserHasendwf=SysRemindInfo,SysPopRemindInfo
SysRemindInfo_InserHasnewwf=SysRemindInfo,SysPopRemindInfo
SysRemindInfo_IPasstimeNode=SysPopRemindInfo
SystemDMSet_Update=SystemSet
SystemLog_Delete=SystemLog
SystemLog_Insert=SystemLog
SystemLogItem_Delete=SystemLogItem
SystemLogItem_Insert=SystemLogItem
SystemLogItem_Update=SystemLogItem
SystemModule_Delete=SystemModule
SystemModule_Insert=SystemModule
SystemModule_UPDATE=SystemModule
SystemRight_selectRightGroup=temp_table_01
SystemRightDetail_Delete=SystemRightDetail
SystemRightDetail_Insert=SystemRightDetail
SystemRightDetail_Update=SystemRightDetail
SystemRightGroup_Delete=SystemRightGroups,SystemRightToGroup
SystemRightGroup_Update=SystemRightGroups
SystemRightGroups_Insert=systemrightgroups
SystemRightRoles_Delete=SystemRightRoles
SystemRightRoles_Insert=SystemRightRoles
SystemRightRoles_Update=SystemRightRoles
SystemRights_Delete=SystemRights,SystemRightsLanguage,SystemRightToGroup
SystemRights_Insert=SystemRights
SystemRights_Update=SystemRights
SystemRightsLanguage_Insert=SystemRightsLanguage
SystemRightsLanguage_Update=SystemRightsLanguage
SystemRightToGroup_Delete=SystemRightToGroup
SystemRightToGroup_Insert=SystemRightToGroup
SystemSet_DftSCUpdate=HrmRoles,HrmCareerApply,HrmContractTemplet,HrmContractType,workflow_formdict,workflow_formdictdetail,workflow_formbase,workflow_base,cptcapital,MeetingRoom,Meeting_Type
SystemSet_Update=SystemSet
T_Condition_Delete=T_Condition
T_Condition_Insert=T_Condition
T_Condition_Update=T_Condition
T_ConditionDetail_Delete=T_ConditionDetail
T_ConditionDetail_Insert=T_ConditionDetail
T_DatacenterUser_Delete=T_DatacenterUser
T_DatacenterUser_Insert=T_DatacenterUser
T_FadeBespeak_Insert=T_FadeBespeak
T_fieldItem_Delete=T_fieldItem
T_fieldItem_Insert=T_fieldItem
T_fieldItem_Update=T_fieldItem
T_fieldItemDetail_Delete=T_fieldItemDetail
T_fieldItemDetail_Insert=T_fieldItemDetail
T_InputReport_Delete=T_InputReport
T_InputReport_Insert=T_InputReport
T_InputReport_Update=T_InputReport
T_InputReportConfirm_Delete=T_InputReportConfirm
T_InputReportConfirm_Insert=T_InputReportConfirm
T_InputReportCrm_Delete=T_InputReportCrm
T_InputReportCrm_Insert=T_InputReportCrm
T_InputReportItem_Delete=T_InputReportItem
T_InputReportItem_Insert=T_InputReportItem
T_InputReportItem_Update=T_InputReportItem
T_InputReportItemClose_Delete=T_InputReportItemClose
T_InputReportItemClose_Insert=T_InputReportItemClose
T_InputReportItemDetail_Delete=T_InputReportItemDetail
T_InputReportItemDetail_Insert=T_InputReportItemDetail
T_InputReportItemtype_Delete=T_InputReportItemtype
T_InputReportItemtype_Insert=T_InputReportItemtype
T_InputReportItemtype_Update=T_InputReportItemtype
T_modulecondition_Delete=modulecondition
T_modulecondition_Insert=modulecondition
T_outrepmodule_Delete=outrepmodule
T_outrepmodule_Insert=outrepmodule
T_outrepmodule_Update=outrepmodule
T_OUTREPORT_COPY=t_outreport,t_outreportcondition,t_outreportshare,outrepmodule,modulecondition,t_outreportitemrow,t_outreportitem,t_outreportitemtable,t_outreportitemcondition,t_outreportitemcoordinate,t_outreportstatitem
T_OutReport_Delete=T_OutReport,T_OutReportCondition,T_OutReportShare,T_OutReportItem,T_ReportStatitemTable,T_OutReportStatitem
T_OutReport_Insert=T_OutReport
T_OutReport_Update=T_OutReport
T_OutReportCondition_Delete=T_OutReportCondition
T_OutReportCondition_Insert=T_OutReportCondition
T_OutReportICoordinate_Insert=T_OutReportItemCoordinate
T_OUTREPORTITEM_COPY=t_outreportitem,t_outreportitemtable,t_outreportitemcondition,t_outreportitemcoordinate
T_OutReportItem_Delete=T_OutReportItem,T_OutReportItemTable,T_OutReportItemCondition,T_OutReportItemCoordinate
T_OutReportItem_DeleteByCol=T_OutReportItem,T_OutReportItemTable,T_OutReportItemCondition,T_OutReportItemCoordinate
T_OutReportItem_DeleteByRow=T_OutReportItem,T_OutReportItemTable,T_OutReportItemCondition,T_OutReportItemCoordinate
T_OutReportItem_DeleteByRowCol=T_OutReportItem,T_OutReportItemTable,T_OutReportItemCondition,T_OutReportItemCoordinate
T_OutReportItem_Insert=T_OutReportItem,T_OutReportItemTable,T_OutReportItemCondition,T_OutReportItemCoordinate
T_OutReportItemTable_Delete=T_OutReportItemTable
T_OutReportItemTable_Insert=T_OutReportItemTable
T_OutReportShare_Delete=T_OutReportShare
T_OutReportShare_Insert=T_OutReportShare
T_OutReportStatitem_Delete=T_OutReportStatitem
T_OutReportStatitem_Insert=T_OutReportStatitem
T_OutReportStatitem_Uorder=T_OutReportStatitem
T_OutRItemCondition_Delete=T_OutReportItemCondition
T_OutRItemCondition_Insert=T_OutReportItemCondition
T_OutRItemCoordinate_Delete=T_OutReportItemCoordinate
T_ReportStatitemTable_Delete=T_ReportStatitemTable
T_ReportStatitemTable_Insert=T_ReportStatitemTable
T_Statitem_Delete=T_Statitem
T_Statitem_Insert=T_Statitem
T_Statitem_Update=T_Statitem
T_SurveyItem_Delete=T_SurveyItem
T_SurveyItem_Insert=T_SurveyItem
T_SurveyItem_Update=T_SurveyItem
TrainLayoutAssess_Insert=HrmTrainLayoutAssess
TrainPlanDay_Delete=HrmTrainPlanDay
TrainPlanDay_Insert=HrmTrainPlanDay
UPMENUCUSTOMMENUINDEX=menucustom
Voting_Delete=voting
Voting_Insert=voting
Voting_Insertxx=voting
Voting_Update=voting
Voting_UpdateCount=voting
Voting_UpdateStatus=voting
Voting_Updatexx=voting
VotingMaintDetail_Delete=votingmaintdetail
VotingMaintDetail_Insert=votingmaintdetail
VotingOption_Delete=votingoption
VotingOption_Insert=votingoption
VotingOption_Update=votingoption
VotingOption_UpdateCount=votingoption
VotingQuestion_Delete=votingoption,votingquestion
VotingQuestion_Insert=votingquestion
VotingQuestion_Update=votingquestion
VotingQuestion_UpdateCount=votingquestion
VotingRemark_Insert=votingremark
VotingResource_Insert=votingresource
VotingResourceRemark_Insert=votingresourceremark
VotingShare_Delete=votingshare
VotingShare_Insert=votingshare
VotingShareDetail_Update=votingsharedetail
VotingViewerDetail_Update=votingviewerdetail
w=Bill_Approve
Weather_Delete=Weather
Weather_Insert=Weather
Weather_Update=Weather
WF_CptCapitalShareInfo_Add=CptCapitalShareInfo
WF_CRM_ShareInfo_Add=CRM_ShareInfo
WF_DocShare_Add=DocShare
WF_DocShare_AddSharesource=DocShare
WF_Prj_ShareInfo_Add=Prj_ShareInfo
Wf_Right_delete=wfAccessControlList
Wf_Right_insert_type1=wfAccessControlList
Wf_Right_insert_type2=wfAccessControlList
Wf_Right_insert_type3=wfAccessControlList
Wf_Right_insert_type4=wfAccessControlList
Wf_Right_insert_type5=wfAccessControlList
Wf_Right_insert_type6=wfAccessControlList
WFDocShareInfo_Delete=Workflow_DocShareInfo
WFNodeCustomNewMenu_init=workflow_nodeCustomNewMenu
WFNodeLinkToOverTime=workflow_nodelinkOverTime
WkfReportShareDetail_DBId=WorkflowReportShareDetail
WkfReportShareDetail_DByUId=WorkflowReportShareDetail
WkfReportShareDetail_Insert=WorkflowReportShareDetail
workflow_addinoperate_Delete=workflow_addinoperate
workflow_addinoperate_Insert=workflow_addinoperate
Workflow_Agent_Insert=Workflow_Agent
WorkFlow_Bill_Delete=workflow_bill
WorkFlow_Bill_Insert=workflow_bill
WorkFlow_Bill_Update=workflow_bill
WorkFlow_BillField_DelByBill=workflow_billfield
WorkFlow_BillField_Delete=workflow_billfield
WorkFlow_BillField_Insert=workflow_billfield
WorkFlow_BillField_Update=workflow_billfield
WorkFlow_BrowserUrl_Delete=workflow_browserurl
WorkFlow_BrowserUrl_Insert=workflow_browserurl
WorkFlow_BrowserUrl_Update=workflow_browserurl
workflow_CurOpe_UbyForward=workflow_currentoperator
workflow_CurOpe_UbyForwardNB=workflow_currentoperator
workflow_CurOpe_UbySend=workflow_currentoperator
workflow_CurOpe_UbySendNB=workflow_currentoperator
workflow_CurOpe_UbySubmitNB=workflow_currentoperator
workflow_CurOpe_UpdatebyPass=workflow_currentoperator
workflow_CurOpe_UpdatebyPassNB=workflow_currentoperator
workflow_CurOpe_UpdatebyReject=workflow_currentoperator
workflow_CurOpe_UpdatebySubmit=workflow_currentoperator
workflow_CurOpe_UpdatebyView=workflow_currentoperator
workflow_currentoperator_copy=workflow_currentoperator
workflow_CurrentOperator_I2=workflow_currentoperator
workflow_CurrentOperator_I=workflow_currentoperator
Workflow_CustomDspField_Init=Workflow_CustomDspField
Workflow_CustomDspField_Insert=Workflow_CustomDspField
Workflow_DocShareInfo_I=Workflow_DocShareInfo
Workflow_DocSource_Insert=Workflow_DocSource
workflow_groupdetail_DbyGroup=workflow_groupdetail
workflow_groupdetail_Delete=workflow_groupdetail
workflow_groupdetail_Insert=workflow_groupdetail
workflow_layoutsetactive=workflow_nodehtmllayout
Workflow_MonitorType_DELETE=Workflow_MonitorType
Workflow_MonitorType_INSERT=Workflow_MonitorType
Workflow_MonitorType_UPDATE=Workflow_MonitorType
workflow_nodebase_FFOptIst=workflow_nodebase
workflow_nodegroup_Delete=workflow_nodegroup
Workflow_QueryType_Delete=workflow_customQuerytype
Workflow_QueryType_Insert=workflow_customQuerytype
Workflow_QueryType_Update=workflow_customQuerytype
workflow_Rbase_UpdateLevel=workflow_requestbase
Workflow_RepDspFld_Insert_New=Workflow_ReportDspField
Workflow_Report_Delete=Workflow_Report
Workflow_Report_Insert=Workflow_Report
Workflow_Report_Update=Workflow_Report
Workflow_ReportDspField_Delete=Workflow_ReportDspField
Workflow_ReportDspField_INSERT=Workflow_ReportDspField
Workflow_ReportType_Delete=Workflow_ReportType
Workflow_ReportType_Insert=Workflow_ReportType
Workflow_ReportType_Update=Workflow_ReportType
workflow_Requestbase_Delete=workflow_requestbase
workflow_Requestbase_Insert=workflow_requestbase
workflow_Requestbase_InsertNew=workflow_requestbase
workflow_Requestbase_Update=workflow_requestbase
workflow_RequestID_Update=workflow_requestsequence
workflow_RequestLog_Insert=workflow_requestlog
workflow_RequestLog_Insert_New=workflow_requestlog
workflow_RequestLog_Op=workflow_requestlog
WORKFLOW_REQUESTLOG_ProTemp=WORKFLOW_REQUESTLOG
workflow_RequestLogCurDate_I=workflow_requestlog
workflow_RequestLogCurDate_New=workflow_requestlog
workflow_RequestLogID_Update=workflow_requestlogsequence
workflow_RequestRemark_Delete=workflow_currentoperator
workflow_RequestRemark_Insert=workflow_currentoperator
workflow_RequestViewLog_Insert=workflow_requestviewlog
workflow_RUserDefault_Insert=workflow_requestUserdefault
workflow_RUserDefault_Update=workflow_requestUserdefault
workflow_SelectItem_DByFieldid=workflow_selectitem
workflow_selectitem_insert=workflow_selectitem
workflow_selectitem_insert_new=workflow_selectitem
Workflow_StaticReport_Delete=workflow_StaticRpbase
Workflow_StaticReport_Insert=workflow_StaticRpbase
Workflow_StaticReport_Update=workflow_StaticRpbase
workflow_wftype_Insert=workflow_type
workflow_wftype_Update=workflow_type
WorkflowReportShare_Delete=WorkflowReportShare
WorkflowReportShare_Insert=WorkflowReportShare
WorkPlan_Insert=WorkPlan
workplan_insertplus=workplan
WorkPlan_Update=WorkPlan
WorkPlanEditLog_Insert=WorkPlanEditLog
WORKPLANEXCHANGE_ADD=workplanexchange
WorkPlanExchange_Insert=workplanexchange
WorkPlanExchange_WP_Add=workplanexchange
WorkPlanSetup_SetRecCount=WorkPlanSetup
WorkPlanShare_DelById=WorkPlanShareDetail
WorkPlanShare_Ins=WorkPlanShare
WorkPlanShare_Insert=WorkPlanShareDetail
WorkPlanShareSet_Insert=WorkPlanShareSet
WorkPlanValuate_ValCreater=WorkPlanValuate
WorkPlanValuate_ValManager=WorkPlanValuate
WorkPlanViewLog_Insert=WorkPlanViewLog
WorkSpaceStyle_Set=WorkSpaceStyle
worktask_RequestID_Update=worktask_requestsequence
WorkTaskCreateShare_Delete=WorkTaskCreateShare
WorkTaskCreateShare_Insert=WorkTaskCreateShare
WorkTaskShareSet_Insert=WorkTaskShareSet
wrkcrt_mutidel=workflow_requestViewLog
XmlReport_ShareInfo_Delete=XmlReport_ShareInfo
XmlReport_ShareInfo_Insert=XmlReport_ShareInfo
Ycuser_Delete=ycuser
Ycuser_Insert=ycuser
Ycuser_Update=ycuser
CS_CustomerAccessMode_Insert=CS_CustomerAccessMode
CS_CustomerAccessMode_Update=CS_CustomerAccessMode
CS_CustomerContactContent_Delete=CS_CustomerContactContent
CS_CustomerContactContent_Insert=CS_CustomerContactContent
CS_CustomerContactContent_Update=CS_CustomerContactContent
CS_CustomerContactMode_Delete=CS_CustomerContactMode
CS_CustomerContactMode_Insert=CS_CustomerContactMode
CS_CustomerContactMode_Update=CS_CustomerContactMode
CS_CustomerContactPlan_DeleteById=CS_CustomerContactPlan
CS_CustomerContactPlan_Insert=CS_CustomerContactPlan
CS_CustomerContactPlan_Update=CS_CustomerContactPlan
CS_CustomerContactRecord_DeleteById=CS_CustomerContactRecord
CS_CustomerContactRecord_Insert=CS_CustomerContactRecord
CS_CustomerContactRecord_Update=CS_CustomerContactRecord
CS_CustomerContactRecordLog_Insert=CS_CustomerContactRecordLog
CS_CustomerContactRelate_DeleteByRecordId=CS_CustomerContactRelate
CS_CustomerContactRelate_Insert=CS_CustomerContactRelate
CS_CustomerEinzug_DeleteById=CS_CustomerEinzug
CS_CustomerEinzug_Insert=CS_CustomerEinzug
CS_CustomerEinzug_Update=CS_CustomerEinzug
CS_CustomerEinzugLog_Insert=CS_CustomerEinzugLog
CS_CustomerGoldAdmin_DeleteByCustomerId=CS_CustomerGoldAdmin
CS_CustomerGoldAdmin_Insert=CS_CustomerGoldAdmin
CS_CustomerGoldMedal_DeleteByCustomerId=CS_CustomerGoldMedal
CS_CustomerGoldMedal_Insert=CS_CustomerGoldMedal
CS_CustomerInvestigate_Insert=CS_CustomerInvestigate
CS_CustomerInvestigate_Update=CS_CustomerInvestigate
CS_CustomerInvoiceInfo_Insert=CS_CustomerInvoiceInfo
CS_CustomerInvoiceInfo_Update=CS_CustomerInvoiceInfo
CS_CustomerOtherRemark_Insert=CS_CustomerOtherRemark
CS_CustomerOtherRemark_Update=CS_CustomerOtherRemark
CS_CustomerProductUserInfo_Insert=CS_CustomerProductUserInfo
CS_CustomerProductUserInfo_Update=CS_CustomerProductUserInfo
CS_CustomerSellChance_DeleteById=CS_CustomerSellChance
CS_CustomerSellChance_Insert=CS_CustomerSellChance
CS_CustomerSellChance_Update=CS_CustomerSellChance
CS_CustomerSellChanceLog_Insert=CS_CustomerSellChanceLog
CS_CustomerSubCompany_Update=CS_CustomerServiceInfo
CS_CustomerTrainRecord_DeleteByCustomerId=CS_CustomerTrainRecord
CS_CustomerTrainRecord_Insert=CS_CustomerTrainRecord
CS_CustomerUnitInfo_Insert=CS_CustomerUnitInfo
CS_CustomerUnitInfo_Update=CS_CustomerUnitInfo
CS_EcologyMatter_Delete=CS_EcologyMatter
CS_EcologyMatter_Insert=CS_EcologyMatter
CS_EcologyMatter_Update=CS_EcologyMatter
CS_ProductType_Delete=CS_ProductType
CS_ProductType_Insert=CS_ProductType
CS_ProductType_Update=CS_ProductType
CS_SellItemEcology_Insert=CS_SellItemEcology
CS_SellItemEcology_Update=CS_SellItemEcology
CS_SellItemSoftHardware_Insert=CS_SellItemSoftHardware
CS_SellItemSoftHardware_Update=CS_SellItemSoftHardware
CS_SubCompany_Update=CS_SubCompany
CS_SystemModule_Delete=CS_SystemModule
CS_SystemModule_Insert=CS_SystemModule
CS_SystemModule_Update=CS_SystemModule
delinfo=workflow_requestLog,workflow_currentoperator,workflow_requestbase,workflow_form,cowork_discuss,workplan,blog_discuss,Bill_ExpenseDetail,bill_hrmfinance
disableuser=hrmresource
DocSubscribe_SandOByDidSidAdate=DocSubscribe
FnaExpensefeeRules_DByFeeid=FnaExpensefeeRules
FnaBudgetCheck_Insert=FnaBudgetCheck
FnaExpensefeeRules_Update=FnaExpensefeeRules
getmanagerprj=formtable_main_36
HrmCityTow_Insert=HrmCityTwo
HrmJobType_Delete=HrmJobType
HrmResourceShare_test=shareinnerdoc
IC_CommunicateRecord_DeleteById=IC_CommunicateRecord
IC_CommunicateRecord_Insert=IC_CommunicateRecord
IC_CommunicateRecord_Update=IC_CommunicateRecord
IC_CommunicationType_Delete=IC_CommunicationType
IC_CommunicationType_Insert=IC_CommunicationType
IC_CommunicationType_Update=IC_CommunicationType
IC_Record_PrincipalOne_DeleteByRecordId=IC_Record_PrincipalOne
IC_Record_PrincipalOne_Insert=IC_Record_PrincipalOne
IC_Record_PrincipalTwo_DeleteByRecordId=IC_Record_PrincipalTwo
IC_Record_PrincipalTwo_Insert=IC_Record_PrincipalTwo
initDocDetail_docyear=docdetail
initjobtitle=HrmJobTitles
LeftMenuConfig_InsertByUserId=LeftMenuConfig
MeetingShareDetail_DByMeetingId=Meeting_ShareDetail
OP_OrganPortalSetting_Insert=OP_OrganPortalSetting
OP_OrganPortalSetting_Update=OP_OrganPortalSetting
proj_UpdateRemindReadLog_Update=proj_UpdateRemindReadLog
RS_Talent_Insert=RS_Talent
RS_Talent_Update=RS_Talent
Share_forworkplan_init=WorkPlanShare
shareinner_buildInfo=shareinner
updateRWFinishDate=proj_CardBaseInfoExecDtl
WorkFlow_BillField_Delete_ByBill=workflow_billfield
wrkcrt_mutidelxx=workflow_requestViewLog,DocShareDetail,workflow_currentoperator
Applyuser_Insert=applyuser
bill_Approve_UpdateStatus=Bill_Approve
bill_CptCarFee_Insert=bill_CptCarFee
bill_CptCarFee_Update=bill_CptCarFee
bill_CptCarFix_Insert=bill_CptCarFix
bill_CptCarFix_Update=bill_CptCarFix
bill_CptCarMantant_Insert=bill_CptCarMantant
bill_CptCarMantant_Update=bill_CptCarMantant
bill_CptCarOut_Delete=bill_CptCarOut
bill_CptCarOut_Insert=bill_CptCarOut
bill_CptCarOut_Update=bill_CptCarOut
bill_CptCheckDetail_Insert=bill_CptCheckDetail
bill_CptPlanDetail_Insert=bill_CptPlanDetail
bill_CptPlanDetail_Update=bill_CptPlanDetail
bill_CptStockInDetail_Insert=bill_CptStockInDetail
bill_CptStockInDetail_Update=bill_CptStockInDetail
bill_CptStockInDetail_Update2=bill_CptStockInDetail
CE_CustomerDemoRecord_Insert=CE_CustomerDemoRecord
CE_CustomerDemoRecord_Update=CE_CustomerDemoRecord
CE_CustomerDemoRecordLog_Insert=CE_CustomerDemoRecordLog
CE_CustomerSystemRecord_Edit_Base=CE_CustomerSystemRecord
CE_CustomerSystemRecord_Edit_Other=CE_CustomerSystemRecord
CE_CustomerSystemRecord_Edit_Update=CE_CustomerSystemRecord
CE_CustomerSystemRecord_Insert=CE_CustomerSystemRecord
CE_CustomerSystemRecordLog_Insert=CE_CustomerSystemRecordLog
CE_CustomerUpdateDiscuss_Insert=CE_CustomerUpdateDiscuss
CE_CustomerUpdateRecord_Edit=CE_CustomerUpdateRecord
CE_CustomerUpdateRecord_Insert=CE_CustomerUpdateRecord
CE_CustomerUpdateRecordLog_Insert=CE_CustomerUpdateRecordLog
CE_DBVersion_Delete=CE_DBVersion
CE_DBVersion_Insert=CE_DBVersion
CE_DBVersion_Update=CE_DBVersion
CE_OSVersion_Delete=CE_OSVersion
CE_OSVersion_Insert=CE_OSVersion
CE_OSVersion_Update=CE_OSVersion
CE_PatchVersion_Delete=CE_PatchVersion
CE_PatchVersion_Insert=CE_PatchVersion
CE_PatchVersion_Update=CE_PatchVersion
CE_ServerIP_Delete=CE_ServerIP
CE_ServerIP_Insert=CE_ServerIP
CE_ServerIP_Update=CE_ServerIP
CE_SysPath_Delete=CE_SysPath
CE_SysPath_Insert=CE_SysPath
CE_SysPath_Update=CE_SysPath
CE_SysVersion__Insert=CE_SysVersion
CE_SysVersion_Delete=CE_SysVersion
CE_SysVersion_Update=CE_SysVersion
CM_BillDetail_Insert=CM_BillDetail
CM_BillDetail_UpdateFile=CM_BillDetail
CM_BillTemplate_Delete=CM_BillTemplate
CM_BillTemplate_Insert=CM_BillTemplate
CM_BillTemplate_Update=CM_BillTemplate
CM_ContractBill_DeleteByContractId=CM_ContractBill
CM_ContractBill_Insert=CM_ContractBill
CM_ContractCm_Insert=CM_ContractCm
CM_ContractInfo_BaseUpdate_admin=CM_ContractInfo
CM_ContractInfo_BaseUpdate_executive=CM_ContractInfo
CM_ContractInfo_BaseUpdate_finance=CM_ContractInfo
CM_ContractInfo_BillUpdate_Project=CM_ContractInfo
CM_ContractInfo_EinzugUpdate_Admin=CM_ContractInfo
CM_ContractInfo_EinzugUpdate_Executive=CM_ContractInfo
CM_ContractInfo_EinzugUpdate_Finance=CM_ContractInfo
CM_ContractInfo_Import_Insert=CM_ContractInfo
CM_ContractInfo_Insert=CM_ContractInfo
CM_ContractSubCompany_Insert=CM_ContractSubCompany
CM_ContractType_Delete=CM_ContractType
CM_ContractType_Insert=CM_ContractType
CM_ContractType_Update=CM_ContractType
CM_EinzugDetail_Insert_Admin=CM_EinzugDetail
CM_EinzugDetail_Insert_Finance=CM_EinzugDetail
CM_EinzugDetail_Update_Admin=CM_EinzugDetail
CM_EinzugDetail_Update_Finance=CM_EinzugDetail
CM_EinzugDetail_Update_Project=CM_EinzugDetail
CM_EinzugPersonDetail_Insert=CM_EinzugPersonDetail
CM_EstimateCostDetail_Insert=CM_EstimateCostDetail
CM_InvoiceDetail_Insert=CM_InvoiceDetail
CM_InvoiceDetail_Update=CM_InvoiceDetail
CM_Kpwsk_Proc=formtable_main_399
CM_PaymentDetail_Import_Insert=CM_PaymentDetail
CM_PaymentDetail_Import_Insert2=CM_PaymentDetail
CM_PaymentDetail_Insert=CM_PaymentDetail
CM_PaymentDetail_Update=CM_PaymentDetail
CM_PaymentDetail_Update_Admin2=CM_PaymentDetail
CM_PaymentDetail_Update_Finance=CM_PaymentDetail
CM_PaymentDetail_Update_Project1=CM_PaymentDetail
CM_PaymentDetail_Update_Project2=CM_PaymentDetail
CM_PaymentType_Insert=CM_PaymentType
CM_PaymentType_Update=CM_PaymentType
CM_PROC_SW_ZXHT_GMLX=formtable_main_314
CM_ProcurementCostDetail_Insert=CM_ProcurementCostDetail
CM_ProductType_Delete=CM_ProductType
CM_ProductType_Insert=CM_ProductType
CM_ProductType_Update=CM_ProductType
CM_ProductTypeDetail_Insert=CM_ProductTypeDetail
CM_ProductTypeDetail_Update=CM_ProductTypeDetail
CM_Progress_Delete=CM_Progress
CM_Progress_Insert=CM_Progress
CM_Progress_Update=CM_Progress
CM_ReceiveStatus_Delete=CM_ReceiveStatus
CM_ReceiveStatus_Insert=CM_ReceiveStatus
CM_ReceiveStatus_Update=CM_ReceiveStatus
CM_TradeKind_Delete=CM_TradeKind
CM_TradeKind_Insert=CM_TradeKind
CM_TradeKind_Update=CM_TradeKind
CM_TradeType_Delete=CM_TradeType
CM_TradeType_Insert=CM_TradeType
CM_TradeType_Update=CM_TradeType
CMC_AgreementInfo_Insert=CMC_AgreementInfo
CMC_AgreementInfo_Update=CMC_AgreementInfo
CMC_OrderInfo_Insert=CMC_OrderInfo
CMC_OrderInfo_Update=CMC_OrderInfo
CptBorrowBuffer_Insert=CptBorrowBuffer
CRM_RemindContactDate=CRM_ContacterLog_Remind
CRM_Share_WorkPlan_AllCheck=WorkPlanShareDetail
CRM_ShareByHrm_WorkPlan_init=WorkPlanShareDetail
CRM_ShareByHrm_WorkPlan_init1=WorkPlanShareDetail
CRM_ShareByHrm_WorkPlan_init12=WorkPlanShareDetail
CRM_ShareByHrm_WorkPlan_init2=WorkPlanShareDetail
CRM_ShareByHrm_WorkPlan_init_1=CRM_ShareInfo
CRM_ShareByHrm_WorkPlan_init_all=WorkPlanShareDetail
CRM_ShareByHrm_WorkPlan_new=WorkPlanShareDetail
CRM_ShareByHrm_WorkPlan_new1=WorkPlanShareDetail
CRMShareWorkPlan_init=WorkPlanShare
CS_ContactRecordContent_DeleteByRecordId=CS_ContactRecordContent
CS_ContactRecordContent_Insert=CS_ContactRecordContent
CS_ContactRecordDoc_DeleteByRecordId=CS_CustomerAccessMode
CS_ContactRecordDoc_Insert=CS_CustomerAccessMode
CS_ContactRecordRequest_DeleteByRecordId=CS_ContactRecordRequest
CS_ContactRecordRequest_Insert=CS_ContactRecordRequest
Doc_Sec_Insert_for_safe=DocSecCategory