zhangzengfei
2023-01-13 e783dc858cbf3370c80a46b6bfef6d14580b6764
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
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: rule.proto
 
#ifndef GOOGLE_PROTOBUF_INCLUDED_rule_2eproto
#define GOOGLE_PROTOBUF_INCLUDED_rule_2eproto
 
#include <limits>
#include <string>
 
#include <google/protobuf/port_def.inc>
#if PROTOBUF_VERSION < 3017000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 3017003 < PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
 
#include <google/protobuf/port_undef.inc>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_table_driven.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/metadata_lite.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h>  // IWYU pragma: export
#include <google/protobuf/extension_set.h>  // IWYU pragma: export
#include <google/protobuf/unknown_field_set.h>
#include "sdk.pb.h"
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
#define PROTOBUF_INTERNAL_EXPORT_rule_2eproto
PROTOBUF_NAMESPACE_OPEN
namespace internal {
class AnyMetadata;
}  // namespace internal
PROTOBUF_NAMESPACE_CLOSE
 
// Internal implementation detail -- do not use these members.
struct TableStruct_rule_2eproto {
  static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTableField entries[]
    PROTOBUF_SECTION_VARIABLE(protodesc_cold);
  static const ::PROTOBUF_NAMESPACE_ID::internal::AuxiliaryParseTableField aux[]
    PROTOBUF_SECTION_VARIABLE(protodesc_cold);
  static const ::PROTOBUF_NAMESPACE_ID::internal::ParseTable schema[4]
    PROTOBUF_SECTION_VARIABLE(protodesc_cold);
  static const ::PROTOBUF_NAMESPACE_ID::internal::FieldMetadata field_metadata[];
  static const ::PROTOBUF_NAMESPACE_ID::internal::SerializationTable serialization_table[];
  static const ::PROTOBUF_NAMESPACE_ID::uint32 offsets[];
};
extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_rule_2eproto;
namespace protomsg {
class RuleBaseCompareInfo;
struct RuleBaseCompareInfoDefaultTypeInternal;
extern RuleBaseCompareInfoDefaultTypeInternal _RuleBaseCompareInfo_default_instance_;
class RuleSOResult;
struct RuleSOResultDefaultTypeInternal;
extern RuleSOResultDefaultTypeInternal _RuleSOResult_default_instance_;
class RuleSoTarget;
struct RuleSoTargetDefaultTypeInternal;
extern RuleSoTargetDefaultTypeInternal _RuleSoTarget_default_instance_;
class RuleTargets;
struct RuleTargetsDefaultTypeInternal;
extern RuleTargetsDefaultTypeInternal _RuleTargets_default_instance_;
}  // namespace protomsg
PROTOBUF_NAMESPACE_OPEN
template<> ::protomsg::RuleBaseCompareInfo* Arena::CreateMaybeMessage<::protomsg::RuleBaseCompareInfo>(Arena*);
template<> ::protomsg::RuleSOResult* Arena::CreateMaybeMessage<::protomsg::RuleSOResult>(Arena*);
template<> ::protomsg::RuleSoTarget* Arena::CreateMaybeMessage<::protomsg::RuleSoTarget>(Arena*);
template<> ::protomsg::RuleTargets* Arena::CreateMaybeMessage<::protomsg::RuleTargets>(Arena*);
PROTOBUF_NAMESPACE_CLOSE
namespace protomsg {
 
// ===================================================================
 
class RuleTargets final :
    public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protomsg.RuleTargets) */ {
 public:
  inline RuleTargets() : RuleTargets(nullptr) {}
  ~RuleTargets() override;
  explicit constexpr RuleTargets(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
 
  RuleTargets(const RuleTargets& from);
  RuleTargets(RuleTargets&& from) noexcept
    : RuleTargets() {
    *this = ::std::move(from);
  }
 
  inline RuleTargets& operator=(const RuleTargets& from) {
    CopyFrom(from);
    return *this;
  }
  inline RuleTargets& operator=(RuleTargets&& from) noexcept {
    if (this == &from) return *this;
    if (GetOwningArena() == from.GetOwningArena()) {
      InternalSwap(&from);
    } else {
      CopyFrom(from);
    }
    return *this;
  }
 
  static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
    return GetDescriptor();
  }
  static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
    return default_instance().GetMetadata().descriptor;
  }
  static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
    return default_instance().GetMetadata().reflection;
  }
  static const RuleTargets& default_instance() {
    return *internal_default_instance();
  }
  static inline const RuleTargets* internal_default_instance() {
    return reinterpret_cast<const RuleTargets*>(
               &_RuleTargets_default_instance_);
  }
  static constexpr int kIndexInFileMessages =
    0;
 
  friend void swap(RuleTargets& a, RuleTargets& b) {
    a.Swap(&b);
  }
  inline void Swap(RuleTargets* other) {
    if (other == this) return;
    if (GetOwningArena() == other->GetOwningArena()) {
      InternalSwap(other);
    } else {
      ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
    }
  }
  void UnsafeArenaSwap(RuleTargets* other) {
    if (other == this) return;
    GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
    InternalSwap(other);
  }
 
  // implements Message ----------------------------------------------
 
  inline RuleTargets* New() const final {
    return new RuleTargets();
  }
 
  RuleTargets* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
    return CreateMaybeMessage<RuleTargets>(arena);
  }
  using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  void CopyFrom(const RuleTargets& from);
  using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  void MergeFrom(const RuleTargets& from);
  private:
  static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message*to, const ::PROTOBUF_NAMESPACE_ID::Message&from);
  public:
  PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  bool IsInitialized() const final;
 
  size_t ByteSizeLong() const final;
  const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
      ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  int GetCachedSize() const final { return _cached_size_.Get(); }
 
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const final;
  void InternalSwap(RuleTargets* other);
  friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
    return "protomsg.RuleTargets";
  }
  protected:
  explicit RuleTargets(::PROTOBUF_NAMESPACE_ID::Arena* arena,
                       bool is_message_owned = false);
  private:
  static void ArenaDtor(void* object);
  inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  public:
 
  static const ClassData _class_data_;
  const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
 
  ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
 
  // nested types ----------------------------------------------------
 
  // accessors -------------------------------------------------------
 
  enum : int {
    kTargetFieldNumber = 1,
  };
  // repeated .protomsg.Target target = 1;
  int target_size() const;
  private:
  int _internal_target_size() const;
  public:
  void clear_target();
  ::protomsg::Target* mutable_target(int index);
  ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::Target >*
      mutable_target();
  private:
  const ::protomsg::Target& _internal_target(int index) const;
  ::protomsg::Target* _internal_add_target();
  public:
  const ::protomsg::Target& target(int index) const;
  ::protomsg::Target* add_target();
  const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::Target >&
      target() const;
 
  // @@protoc_insertion_point(class_scope:protomsg.RuleTargets)
 private:
  class _Internal;
 
  template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  typedef void InternalArenaConstructable_;
  typedef void DestructorSkippable_;
  ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::Target > target_;
  mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  friend struct ::TableStruct_rule_2eproto;
};
// -------------------------------------------------------------------
 
class RuleSOResult final :
    public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protomsg.RuleSOResult) */ {
 public:
  inline RuleSOResult() : RuleSOResult(nullptr) {}
  ~RuleSOResult() override;
  explicit constexpr RuleSOResult(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
 
  RuleSOResult(const RuleSOResult& from);
  RuleSOResult(RuleSOResult&& from) noexcept
    : RuleSOResult() {
    *this = ::std::move(from);
  }
 
  inline RuleSOResult& operator=(const RuleSOResult& from) {
    CopyFrom(from);
    return *this;
  }
  inline RuleSOResult& operator=(RuleSOResult&& from) noexcept {
    if (this == &from) return *this;
    if (GetOwningArena() == from.GetOwningArena()) {
      InternalSwap(&from);
    } else {
      CopyFrom(from);
    }
    return *this;
  }
 
  static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
    return GetDescriptor();
  }
  static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
    return default_instance().GetMetadata().descriptor;
  }
  static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
    return default_instance().GetMetadata().reflection;
  }
  static const RuleSOResult& default_instance() {
    return *internal_default_instance();
  }
  static inline const RuleSOResult* internal_default_instance() {
    return reinterpret_cast<const RuleSOResult*>(
               &_RuleSOResult_default_instance_);
  }
  static constexpr int kIndexInFileMessages =
    1;
 
  friend void swap(RuleSOResult& a, RuleSOResult& b) {
    a.Swap(&b);
  }
  inline void Swap(RuleSOResult* other) {
    if (other == this) return;
    if (GetOwningArena() == other->GetOwningArena()) {
      InternalSwap(other);
    } else {
      ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
    }
  }
  void UnsafeArenaSwap(RuleSOResult* other) {
    if (other == this) return;
    GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
    InternalSwap(other);
  }
 
  // implements Message ----------------------------------------------
 
  inline RuleSOResult* New() const final {
    return new RuleSOResult();
  }
 
  RuleSOResult* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
    return CreateMaybeMessage<RuleSOResult>(arena);
  }
  using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  void CopyFrom(const RuleSOResult& from);
  using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  void MergeFrom(const RuleSOResult& from);
  private:
  static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message*to, const ::PROTOBUF_NAMESPACE_ID::Message&from);
  public:
  PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  bool IsInitialized() const final;
 
  size_t ByteSizeLong() const final;
  const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
      ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  int GetCachedSize() const final { return _cached_size_.Get(); }
 
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const final;
  void InternalSwap(RuleSOResult* other);
  friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
    return "protomsg.RuleSOResult";
  }
  protected:
  explicit RuleSOResult(::PROTOBUF_NAMESPACE_ID::Arena* arena,
                       bool is_message_owned = false);
  private:
  static void ArenaDtor(void* object);
  inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  public:
 
  static const ClassData _class_data_;
  const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
 
  ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
 
  // nested types ----------------------------------------------------
 
  // accessors -------------------------------------------------------
 
  enum : int {
    kTargetsFieldNumber = 3,
    kSoTypeFieldNumber = 5,
    kCacheImageFieldNumber = 4,
    kIsEventFieldNumber = 1,
    kIsEndRecordFieldNumber = 2,
  };
  // repeated .protomsg.RuleSoTarget targets = 3;
  int targets_size() const;
  private:
  int _internal_targets_size() const;
  public:
  void clear_targets();
  ::protomsg::RuleSoTarget* mutable_targets(int index);
  ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleSoTarget >*
      mutable_targets();
  private:
  const ::protomsg::RuleSoTarget& _internal_targets(int index) const;
  ::protomsg::RuleSoTarget* _internal_add_targets();
  public:
  const ::protomsg::RuleSoTarget& targets(int index) const;
  ::protomsg::RuleSoTarget* add_targets();
  const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleSoTarget >&
      targets() const;
 
  // string soType = 5;
  void clear_sotype();
  const std::string& sotype() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_sotype(ArgT0&& arg0, ArgT... args);
  std::string* mutable_sotype();
  PROTOBUF_MUST_USE_RESULT std::string* release_sotype();
  void set_allocated_sotype(std::string* sotype);
  private:
  const std::string& _internal_sotype() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_sotype(const std::string& value);
  std::string* _internal_mutable_sotype();
  public:
 
  // .protomsg.Image cacheImage = 4;
  bool has_cacheimage() const;
  private:
  bool _internal_has_cacheimage() const;
  public:
  void clear_cacheimage();
  const ::protomsg::Image& cacheimage() const;
  PROTOBUF_MUST_USE_RESULT ::protomsg::Image* release_cacheimage();
  ::protomsg::Image* mutable_cacheimage();
  void set_allocated_cacheimage(::protomsg::Image* cacheimage);
  private:
  const ::protomsg::Image& _internal_cacheimage() const;
  ::protomsg::Image* _internal_mutable_cacheimage();
  public:
  void unsafe_arena_set_allocated_cacheimage(
      ::protomsg::Image* cacheimage);
  ::protomsg::Image* unsafe_arena_release_cacheimage();
 
  // bool IsEvent = 1;
  void clear_isevent();
  bool isevent() const;
  void set_isevent(bool value);
  private:
  bool _internal_isevent() const;
  void _internal_set_isevent(bool value);
  public:
 
  // bool IsEndRecord = 2;
  void clear_isendrecord();
  bool isendrecord() const;
  void set_isendrecord(bool value);
  private:
  bool _internal_isendrecord() const;
  void _internal_set_isendrecord(bool value);
  public:
 
  // @@protoc_insertion_point(class_scope:protomsg.RuleSOResult)
 private:
  class _Internal;
 
  template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  typedef void InternalArenaConstructable_;
  typedef void DestructorSkippable_;
  ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleSoTarget > targets_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr sotype_;
  ::protomsg::Image* cacheimage_;
  bool isevent_;
  bool isendrecord_;
  mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  friend struct ::TableStruct_rule_2eproto;
};
// -------------------------------------------------------------------
 
class RuleSoTarget final :
    public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protomsg.RuleSoTarget) */ {
 public:
  inline RuleSoTarget() : RuleSoTarget(nullptr) {}
  ~RuleSoTarget() override;
  explicit constexpr RuleSoTarget(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
 
  RuleSoTarget(const RuleSoTarget& from);
  RuleSoTarget(RuleSoTarget&& from) noexcept
    : RuleSoTarget() {
    *this = ::std::move(from);
  }
 
  inline RuleSoTarget& operator=(const RuleSoTarget& from) {
    CopyFrom(from);
    return *this;
  }
  inline RuleSoTarget& operator=(RuleSoTarget&& from) noexcept {
    if (this == &from) return *this;
    if (GetOwningArena() == from.GetOwningArena()) {
      InternalSwap(&from);
    } else {
      CopyFrom(from);
    }
    return *this;
  }
 
  static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
    return GetDescriptor();
  }
  static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
    return default_instance().GetMetadata().descriptor;
  }
  static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
    return default_instance().GetMetadata().reflection;
  }
  static const RuleSoTarget& default_instance() {
    return *internal_default_instance();
  }
  static inline const RuleSoTarget* internal_default_instance() {
    return reinterpret_cast<const RuleSoTarget*>(
               &_RuleSoTarget_default_instance_);
  }
  static constexpr int kIndexInFileMessages =
    2;
 
  friend void swap(RuleSoTarget& a, RuleSoTarget& b) {
    a.Swap(&b);
  }
  inline void Swap(RuleSoTarget* other) {
    if (other == this) return;
    if (GetOwningArena() == other->GetOwningArena()) {
      InternalSwap(other);
    } else {
      ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
    }
  }
  void UnsafeArenaSwap(RuleSoTarget* other) {
    if (other == this) return;
    GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
    InternalSwap(other);
  }
 
  // implements Message ----------------------------------------------
 
  inline RuleSoTarget* New() const final {
    return new RuleSoTarget();
  }
 
  RuleSoTarget* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
    return CreateMaybeMessage<RuleSoTarget>(arena);
  }
  using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  void CopyFrom(const RuleSoTarget& from);
  using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  void MergeFrom(const RuleSoTarget& from);
  private:
  static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message*to, const ::PROTOBUF_NAMESPACE_ID::Message&from);
  public:
  PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  bool IsInitialized() const final;
 
  size_t ByteSizeLong() const final;
  const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
      ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  int GetCachedSize() const final { return _cached_size_.Get(); }
 
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const final;
  void InternalSwap(RuleSoTarget* other);
  friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
    return "protomsg.RuleSoTarget";
  }
  protected:
  explicit RuleSoTarget(::PROTOBUF_NAMESPACE_ID::Arena* arena,
                       bool is_message_owned = false);
  private:
  static void ArenaDtor(void* object);
  inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  public:
 
  static const ClassData _class_data_;
  const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
 
  ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
 
  // nested types ----------------------------------------------------
 
  // accessors -------------------------------------------------------
 
  enum : int {
    kCompDbInfoFieldNumber = 5,
    kAreaIdFieldNumber = 2,
    kAreaNameFieldNumber = 3,
    kBelongsTargetIDFieldNumber = 4,
    kSrcTargetFieldNumber = 1,
    kImageIdFieldNumber = 6,
  };
  // repeated .protomsg.RuleBaseCompareInfo compDbInfo = 5;
  int compdbinfo_size() const;
  private:
  int _internal_compdbinfo_size() const;
  public:
  void clear_compdbinfo();
  ::protomsg::RuleBaseCompareInfo* mutable_compdbinfo(int index);
  ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleBaseCompareInfo >*
      mutable_compdbinfo();
  private:
  const ::protomsg::RuleBaseCompareInfo& _internal_compdbinfo(int index) const;
  ::protomsg::RuleBaseCompareInfo* _internal_add_compdbinfo();
  public:
  const ::protomsg::RuleBaseCompareInfo& compdbinfo(int index) const;
  ::protomsg::RuleBaseCompareInfo* add_compdbinfo();
  const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleBaseCompareInfo >&
      compdbinfo() const;
 
  // string areaId = 2;
  void clear_areaid();
  const std::string& areaid() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_areaid(ArgT0&& arg0, ArgT... args);
  std::string* mutable_areaid();
  PROTOBUF_MUST_USE_RESULT std::string* release_areaid();
  void set_allocated_areaid(std::string* areaid);
  private:
  const std::string& _internal_areaid() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_areaid(const std::string& value);
  std::string* _internal_mutable_areaid();
  public:
 
  // string areaName = 3;
  void clear_areaname();
  const std::string& areaname() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_areaname(ArgT0&& arg0, ArgT... args);
  std::string* mutable_areaname();
  PROTOBUF_MUST_USE_RESULT std::string* release_areaname();
  void set_allocated_areaname(std::string* areaname);
  private:
  const std::string& _internal_areaname() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_areaname(const std::string& value);
  std::string* _internal_mutable_areaname();
  public:
 
  // string belongsTargetID = 4;
  void clear_belongstargetid();
  const std::string& belongstargetid() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_belongstargetid(ArgT0&& arg0, ArgT... args);
  std::string* mutable_belongstargetid();
  PROTOBUF_MUST_USE_RESULT std::string* release_belongstargetid();
  void set_allocated_belongstargetid(std::string* belongstargetid);
  private:
  const std::string& _internal_belongstargetid() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_belongstargetid(const std::string& value);
  std::string* _internal_mutable_belongstargetid();
  public:
 
  // .protomsg.Target srcTarget = 1;
  bool has_srctarget() const;
  private:
  bool _internal_has_srctarget() const;
  public:
  void clear_srctarget();
  const ::protomsg::Target& srctarget() const;
  PROTOBUF_MUST_USE_RESULT ::protomsg::Target* release_srctarget();
  ::protomsg::Target* mutable_srctarget();
  void set_allocated_srctarget(::protomsg::Target* srctarget);
  private:
  const ::protomsg::Target& _internal_srctarget() const;
  ::protomsg::Target* _internal_mutable_srctarget();
  public:
  void unsafe_arena_set_allocated_srctarget(
      ::protomsg::Target* srctarget);
  ::protomsg::Target* unsafe_arena_release_srctarget();
 
  // int64 imageId = 6;
  void clear_imageid();
  ::PROTOBUF_NAMESPACE_ID::int64 imageid() const;
  void set_imageid(::PROTOBUF_NAMESPACE_ID::int64 value);
  private:
  ::PROTOBUF_NAMESPACE_ID::int64 _internal_imageid() const;
  void _internal_set_imageid(::PROTOBUF_NAMESPACE_ID::int64 value);
  public:
 
  // @@protoc_insertion_point(class_scope:protomsg.RuleSoTarget)
 private:
  class _Internal;
 
  template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  typedef void InternalArenaConstructable_;
  typedef void DestructorSkippable_;
  ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleBaseCompareInfo > compdbinfo_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr areaid_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr areaname_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr belongstargetid_;
  ::protomsg::Target* srctarget_;
  ::PROTOBUF_NAMESPACE_ID::int64 imageid_;
  mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  friend struct ::TableStruct_rule_2eproto;
};
// -------------------------------------------------------------------
 
class RuleBaseCompareInfo final :
    public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protomsg.RuleBaseCompareInfo) */ {
 public:
  inline RuleBaseCompareInfo() : RuleBaseCompareInfo(nullptr) {}
  ~RuleBaseCompareInfo() override;
  explicit constexpr RuleBaseCompareInfo(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
 
  RuleBaseCompareInfo(const RuleBaseCompareInfo& from);
  RuleBaseCompareInfo(RuleBaseCompareInfo&& from) noexcept
    : RuleBaseCompareInfo() {
    *this = ::std::move(from);
  }
 
  inline RuleBaseCompareInfo& operator=(const RuleBaseCompareInfo& from) {
    CopyFrom(from);
    return *this;
  }
  inline RuleBaseCompareInfo& operator=(RuleBaseCompareInfo&& from) noexcept {
    if (this == &from) return *this;
    if (GetOwningArena() == from.GetOwningArena()) {
      InternalSwap(&from);
    } else {
      CopyFrom(from);
    }
    return *this;
  }
 
  static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
    return GetDescriptor();
  }
  static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
    return default_instance().GetMetadata().descriptor;
  }
  static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
    return default_instance().GetMetadata().reflection;
  }
  static const RuleBaseCompareInfo& default_instance() {
    return *internal_default_instance();
  }
  static inline const RuleBaseCompareInfo* internal_default_instance() {
    return reinterpret_cast<const RuleBaseCompareInfo*>(
               &_RuleBaseCompareInfo_default_instance_);
  }
  static constexpr int kIndexInFileMessages =
    3;
 
  friend void swap(RuleBaseCompareInfo& a, RuleBaseCompareInfo& b) {
    a.Swap(&b);
  }
  inline void Swap(RuleBaseCompareInfo* other) {
    if (other == this) return;
    if (GetOwningArena() == other->GetOwningArena()) {
      InternalSwap(other);
    } else {
      ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
    }
  }
  void UnsafeArenaSwap(RuleBaseCompareInfo* other) {
    if (other == this) return;
    GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
    InternalSwap(other);
  }
 
  // implements Message ----------------------------------------------
 
  inline RuleBaseCompareInfo* New() const final {
    return new RuleBaseCompareInfo();
  }
 
  RuleBaseCompareInfo* New(::PROTOBUF_NAMESPACE_ID::Arena* arena) const final {
    return CreateMaybeMessage<RuleBaseCompareInfo>(arena);
  }
  using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  void CopyFrom(const RuleBaseCompareInfo& from);
  using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  void MergeFrom(const RuleBaseCompareInfo& from);
  private:
  static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message*to, const ::PROTOBUF_NAMESPACE_ID::Message&from);
  public:
  PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  bool IsInitialized() const final;
 
  size_t ByteSizeLong() const final;
  const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  ::PROTOBUF_NAMESPACE_ID::uint8* _InternalSerialize(
      ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
  int GetCachedSize() const final { return _cached_size_.Get(); }
 
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const final;
  void InternalSwap(RuleBaseCompareInfo* other);
  friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
    return "protomsg.RuleBaseCompareInfo";
  }
  protected:
  explicit RuleBaseCompareInfo(::PROTOBUF_NAMESPACE_ID::Arena* arena,
                       bool is_message_owned = false);
  private:
  static void ArenaDtor(void* object);
  inline void RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena* arena);
  public:
 
  static const ClassData _class_data_;
  const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
 
  ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
 
  // nested types ----------------------------------------------------
 
  // accessors -------------------------------------------------------
 
  enum : int {
    kTableIdFieldNumber = 1,
    kTableNameFieldNumber = 2,
    kBwTypeFieldNumber = 3,
    kCompareScoreFieldNumber = 4,
    kTargetIdFieldNumber = 5,
    kTargetNameFieldNumber = 6,
    kTargetPicUrlFieldNumber = 7,
    kMonitorLevelFieldNumber = 8,
    kContentFieldNumber = 9,
    kDbLabelFieldNumber = 10,
  };
  // string TableId = 1;
  void clear_tableid();
  const std::string& tableid() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_tableid(ArgT0&& arg0, ArgT... args);
  std::string* mutable_tableid();
  PROTOBUF_MUST_USE_RESULT std::string* release_tableid();
  void set_allocated_tableid(std::string* tableid);
  private:
  const std::string& _internal_tableid() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_tableid(const std::string& value);
  std::string* _internal_mutable_tableid();
  public:
 
  // string TableName = 2;
  void clear_tablename();
  const std::string& tablename() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_tablename(ArgT0&& arg0, ArgT... args);
  std::string* mutable_tablename();
  PROTOBUF_MUST_USE_RESULT std::string* release_tablename();
  void set_allocated_tablename(std::string* tablename);
  private:
  const std::string& _internal_tablename() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_tablename(const std::string& value);
  std::string* _internal_mutable_tablename();
  public:
 
  // string BwType = 3;
  void clear_bwtype();
  const std::string& bwtype() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_bwtype(ArgT0&& arg0, ArgT... args);
  std::string* mutable_bwtype();
  PROTOBUF_MUST_USE_RESULT std::string* release_bwtype();
  void set_allocated_bwtype(std::string* bwtype);
  private:
  const std::string& _internal_bwtype() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_bwtype(const std::string& value);
  std::string* _internal_mutable_bwtype();
  public:
 
  // string CompareScore = 4;
  void clear_comparescore();
  const std::string& comparescore() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_comparescore(ArgT0&& arg0, ArgT... args);
  std::string* mutable_comparescore();
  PROTOBUF_MUST_USE_RESULT std::string* release_comparescore();
  void set_allocated_comparescore(std::string* comparescore);
  private:
  const std::string& _internal_comparescore() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_comparescore(const std::string& value);
  std::string* _internal_mutable_comparescore();
  public:
 
  // string TargetId = 5;
  void clear_targetid();
  const std::string& targetid() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_targetid(ArgT0&& arg0, ArgT... args);
  std::string* mutable_targetid();
  PROTOBUF_MUST_USE_RESULT std::string* release_targetid();
  void set_allocated_targetid(std::string* targetid);
  private:
  const std::string& _internal_targetid() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_targetid(const std::string& value);
  std::string* _internal_mutable_targetid();
  public:
 
  // string TargetName = 6;
  void clear_targetname();
  const std::string& targetname() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_targetname(ArgT0&& arg0, ArgT... args);
  std::string* mutable_targetname();
  PROTOBUF_MUST_USE_RESULT std::string* release_targetname();
  void set_allocated_targetname(std::string* targetname);
  private:
  const std::string& _internal_targetname() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_targetname(const std::string& value);
  std::string* _internal_mutable_targetname();
  public:
 
  // string TargetPicUrl = 7;
  void clear_targetpicurl();
  const std::string& targetpicurl() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_targetpicurl(ArgT0&& arg0, ArgT... args);
  std::string* mutable_targetpicurl();
  PROTOBUF_MUST_USE_RESULT std::string* release_targetpicurl();
  void set_allocated_targetpicurl(std::string* targetpicurl);
  private:
  const std::string& _internal_targetpicurl() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_targetpicurl(const std::string& value);
  std::string* _internal_mutable_targetpicurl();
  public:
 
  // string MonitorLevel = 8;
  void clear_monitorlevel();
  const std::string& monitorlevel() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_monitorlevel(ArgT0&& arg0, ArgT... args);
  std::string* mutable_monitorlevel();
  PROTOBUF_MUST_USE_RESULT std::string* release_monitorlevel();
  void set_allocated_monitorlevel(std::string* monitorlevel);
  private:
  const std::string& _internal_monitorlevel() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_monitorlevel(const std::string& value);
  std::string* _internal_mutable_monitorlevel();
  public:
 
  // string Content = 9;
  void clear_content();
  const std::string& content() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_content(ArgT0&& arg0, ArgT... args);
  std::string* mutable_content();
  PROTOBUF_MUST_USE_RESULT std::string* release_content();
  void set_allocated_content(std::string* content);
  private:
  const std::string& _internal_content() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_content(const std::string& value);
  std::string* _internal_mutable_content();
  public:
 
  // string DbLabel = 10;
  void clear_dblabel();
  const std::string& dblabel() const;
  template <typename ArgT0 = const std::string&, typename... ArgT>
  void set_dblabel(ArgT0&& arg0, ArgT... args);
  std::string* mutable_dblabel();
  PROTOBUF_MUST_USE_RESULT std::string* release_dblabel();
  void set_allocated_dblabel(std::string* dblabel);
  private:
  const std::string& _internal_dblabel() const;
  inline PROTOBUF_ALWAYS_INLINE void _internal_set_dblabel(const std::string& value);
  std::string* _internal_mutable_dblabel();
  public:
 
  // @@protoc_insertion_point(class_scope:protomsg.RuleBaseCompareInfo)
 private:
  class _Internal;
 
  template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  typedef void InternalArenaConstructable_;
  typedef void DestructorSkippable_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr tableid_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr tablename_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr bwtype_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr comparescore_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr targetid_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr targetname_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr targetpicurl_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr monitorlevel_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr content_;
  ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr dblabel_;
  mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  friend struct ::TableStruct_rule_2eproto;
};
// ===================================================================
 
 
// ===================================================================
 
#ifdef __GNUC__
  #pragma GCC diagnostic push
  #pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif  // __GNUC__
// RuleTargets
 
// repeated .protomsg.Target target = 1;
inline int RuleTargets::_internal_target_size() const {
  return target_.size();
}
inline int RuleTargets::target_size() const {
  return _internal_target_size();
}
inline ::protomsg::Target* RuleTargets::mutable_target(int index) {
  // @@protoc_insertion_point(field_mutable:protomsg.RuleTargets.target)
  return target_.Mutable(index);
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::Target >*
RuleTargets::mutable_target() {
  // @@protoc_insertion_point(field_mutable_list:protomsg.RuleTargets.target)
  return &target_;
}
inline const ::protomsg::Target& RuleTargets::_internal_target(int index) const {
  return target_.Get(index);
}
inline const ::protomsg::Target& RuleTargets::target(int index) const {
  // @@protoc_insertion_point(field_get:protomsg.RuleTargets.target)
  return _internal_target(index);
}
inline ::protomsg::Target* RuleTargets::_internal_add_target() {
  return target_.Add();
}
inline ::protomsg::Target* RuleTargets::add_target() {
  ::protomsg::Target* _add = _internal_add_target();
  // @@protoc_insertion_point(field_add:protomsg.RuleTargets.target)
  return _add;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::Target >&
RuleTargets::target() const {
  // @@protoc_insertion_point(field_list:protomsg.RuleTargets.target)
  return target_;
}
 
// -------------------------------------------------------------------
 
// RuleSOResult
 
// bool IsEvent = 1;
inline void RuleSOResult::clear_isevent() {
  isevent_ = false;
}
inline bool RuleSOResult::_internal_isevent() const {
  return isevent_;
}
inline bool RuleSOResult::isevent() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSOResult.IsEvent)
  return _internal_isevent();
}
inline void RuleSOResult::_internal_set_isevent(bool value) {
  
  isevent_ = value;
}
inline void RuleSOResult::set_isevent(bool value) {
  _internal_set_isevent(value);
  // @@protoc_insertion_point(field_set:protomsg.RuleSOResult.IsEvent)
}
 
// bool IsEndRecord = 2;
inline void RuleSOResult::clear_isendrecord() {
  isendrecord_ = false;
}
inline bool RuleSOResult::_internal_isendrecord() const {
  return isendrecord_;
}
inline bool RuleSOResult::isendrecord() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSOResult.IsEndRecord)
  return _internal_isendrecord();
}
inline void RuleSOResult::_internal_set_isendrecord(bool value) {
  
  isendrecord_ = value;
}
inline void RuleSOResult::set_isendrecord(bool value) {
  _internal_set_isendrecord(value);
  // @@protoc_insertion_point(field_set:protomsg.RuleSOResult.IsEndRecord)
}
 
// repeated .protomsg.RuleSoTarget targets = 3;
inline int RuleSOResult::_internal_targets_size() const {
  return targets_.size();
}
inline int RuleSOResult::targets_size() const {
  return _internal_targets_size();
}
inline void RuleSOResult::clear_targets() {
  targets_.Clear();
}
inline ::protomsg::RuleSoTarget* RuleSOResult::mutable_targets(int index) {
  // @@protoc_insertion_point(field_mutable:protomsg.RuleSOResult.targets)
  return targets_.Mutable(index);
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleSoTarget >*
RuleSOResult::mutable_targets() {
  // @@protoc_insertion_point(field_mutable_list:protomsg.RuleSOResult.targets)
  return &targets_;
}
inline const ::protomsg::RuleSoTarget& RuleSOResult::_internal_targets(int index) const {
  return targets_.Get(index);
}
inline const ::protomsg::RuleSoTarget& RuleSOResult::targets(int index) const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSOResult.targets)
  return _internal_targets(index);
}
inline ::protomsg::RuleSoTarget* RuleSOResult::_internal_add_targets() {
  return targets_.Add();
}
inline ::protomsg::RuleSoTarget* RuleSOResult::add_targets() {
  ::protomsg::RuleSoTarget* _add = _internal_add_targets();
  // @@protoc_insertion_point(field_add:protomsg.RuleSOResult.targets)
  return _add;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleSoTarget >&
RuleSOResult::targets() const {
  // @@protoc_insertion_point(field_list:protomsg.RuleSOResult.targets)
  return targets_;
}
 
// .protomsg.Image cacheImage = 4;
inline bool RuleSOResult::_internal_has_cacheimage() const {
  return this != internal_default_instance() && cacheimage_ != nullptr;
}
inline bool RuleSOResult::has_cacheimage() const {
  return _internal_has_cacheimage();
}
inline const ::protomsg::Image& RuleSOResult::_internal_cacheimage() const {
  const ::protomsg::Image* p = cacheimage_;
  return p != nullptr ? *p : reinterpret_cast<const ::protomsg::Image&>(
      ::protomsg::_Image_default_instance_);
}
inline const ::protomsg::Image& RuleSOResult::cacheimage() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSOResult.cacheImage)
  return _internal_cacheimage();
}
inline void RuleSOResult::unsafe_arena_set_allocated_cacheimage(
    ::protomsg::Image* cacheimage) {
  if (GetArenaForAllocation() == nullptr) {
    delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(cacheimage_);
  }
  cacheimage_ = cacheimage;
  if (cacheimage) {
    
  } else {
    
  }
  // @@protoc_insertion_point(field_unsafe_arena_set_allocated:protomsg.RuleSOResult.cacheImage)
}
inline ::protomsg::Image* RuleSOResult::release_cacheimage() {
  
  ::protomsg::Image* temp = cacheimage_;
  cacheimage_ = nullptr;
#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE
  auto* old =  reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(temp);
  temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  if (GetArenaForAllocation() == nullptr) { delete old; }
#else  // PROTOBUF_FORCE_COPY_IN_RELEASE
  if (GetArenaForAllocation() != nullptr) {
    temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  }
#endif  // !PROTOBUF_FORCE_COPY_IN_RELEASE
  return temp;
}
inline ::protomsg::Image* RuleSOResult::unsafe_arena_release_cacheimage() {
  // @@protoc_insertion_point(field_release:protomsg.RuleSOResult.cacheImage)
  
  ::protomsg::Image* temp = cacheimage_;
  cacheimage_ = nullptr;
  return temp;
}
inline ::protomsg::Image* RuleSOResult::_internal_mutable_cacheimage() {
  
  if (cacheimage_ == nullptr) {
    auto* p = CreateMaybeMessage<::protomsg::Image>(GetArenaForAllocation());
    cacheimage_ = p;
  }
  return cacheimage_;
}
inline ::protomsg::Image* RuleSOResult::mutable_cacheimage() {
  ::protomsg::Image* _msg = _internal_mutable_cacheimage();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleSOResult.cacheImage)
  return _msg;
}
inline void RuleSOResult::set_allocated_cacheimage(::protomsg::Image* cacheimage) {
  ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArenaForAllocation();
  if (message_arena == nullptr) {
    delete reinterpret_cast< ::PROTOBUF_NAMESPACE_ID::MessageLite*>(cacheimage_);
  }
  if (cacheimage) {
    ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
        ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper<
            ::PROTOBUF_NAMESPACE_ID::MessageLite>::GetOwningArena(
                reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(cacheimage));
    if (message_arena != submessage_arena) {
      cacheimage = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
          message_arena, cacheimage, submessage_arena);
    }
    
  } else {
    
  }
  cacheimage_ = cacheimage;
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleSOResult.cacheImage)
}
 
// string soType = 5;
inline void RuleSOResult::clear_sotype() {
  sotype_.ClearToEmpty();
}
inline const std::string& RuleSOResult::sotype() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSOResult.soType)
  return _internal_sotype();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleSOResult::set_sotype(ArgT0&& arg0, ArgT... args) {
 
 sotype_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleSOResult.soType)
}
inline std::string* RuleSOResult::mutable_sotype() {
  std::string* _s = _internal_mutable_sotype();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleSOResult.soType)
  return _s;
}
inline const std::string& RuleSOResult::_internal_sotype() const {
  return sotype_.Get();
}
inline void RuleSOResult::_internal_set_sotype(const std::string& value) {
  
  sotype_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleSOResult::_internal_mutable_sotype() {
  
  return sotype_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleSOResult::release_sotype() {
  // @@protoc_insertion_point(field_release:protomsg.RuleSOResult.soType)
  return sotype_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleSOResult::set_allocated_sotype(std::string* sotype) {
  if (sotype != nullptr) {
    
  } else {
    
  }
  sotype_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), sotype,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleSOResult.soType)
}
 
// -------------------------------------------------------------------
 
// RuleSoTarget
 
// .protomsg.Target srcTarget = 1;
inline bool RuleSoTarget::_internal_has_srctarget() const {
  return this != internal_default_instance() && srctarget_ != nullptr;
}
inline bool RuleSoTarget::has_srctarget() const {
  return _internal_has_srctarget();
}
inline const ::protomsg::Target& RuleSoTarget::_internal_srctarget() const {
  const ::protomsg::Target* p = srctarget_;
  return p != nullptr ? *p : reinterpret_cast<const ::protomsg::Target&>(
      ::protomsg::_Target_default_instance_);
}
inline const ::protomsg::Target& RuleSoTarget::srctarget() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSoTarget.srcTarget)
  return _internal_srctarget();
}
inline void RuleSoTarget::unsafe_arena_set_allocated_srctarget(
    ::protomsg::Target* srctarget) {
  if (GetArenaForAllocation() == nullptr) {
    delete reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(srctarget_);
  }
  srctarget_ = srctarget;
  if (srctarget) {
    
  } else {
    
  }
  // @@protoc_insertion_point(field_unsafe_arena_set_allocated:protomsg.RuleSoTarget.srcTarget)
}
inline ::protomsg::Target* RuleSoTarget::release_srctarget() {
  
  ::protomsg::Target* temp = srctarget_;
  srctarget_ = nullptr;
#ifdef PROTOBUF_FORCE_COPY_IN_RELEASE
  auto* old =  reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(temp);
  temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  if (GetArenaForAllocation() == nullptr) { delete old; }
#else  // PROTOBUF_FORCE_COPY_IN_RELEASE
  if (GetArenaForAllocation() != nullptr) {
    temp = ::PROTOBUF_NAMESPACE_ID::internal::DuplicateIfNonNull(temp);
  }
#endif  // !PROTOBUF_FORCE_COPY_IN_RELEASE
  return temp;
}
inline ::protomsg::Target* RuleSoTarget::unsafe_arena_release_srctarget() {
  // @@protoc_insertion_point(field_release:protomsg.RuleSoTarget.srcTarget)
  
  ::protomsg::Target* temp = srctarget_;
  srctarget_ = nullptr;
  return temp;
}
inline ::protomsg::Target* RuleSoTarget::_internal_mutable_srctarget() {
  
  if (srctarget_ == nullptr) {
    auto* p = CreateMaybeMessage<::protomsg::Target>(GetArenaForAllocation());
    srctarget_ = p;
  }
  return srctarget_;
}
inline ::protomsg::Target* RuleSoTarget::mutable_srctarget() {
  ::protomsg::Target* _msg = _internal_mutable_srctarget();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleSoTarget.srcTarget)
  return _msg;
}
inline void RuleSoTarget::set_allocated_srctarget(::protomsg::Target* srctarget) {
  ::PROTOBUF_NAMESPACE_ID::Arena* message_arena = GetArenaForAllocation();
  if (message_arena == nullptr) {
    delete reinterpret_cast< ::PROTOBUF_NAMESPACE_ID::MessageLite*>(srctarget_);
  }
  if (srctarget) {
    ::PROTOBUF_NAMESPACE_ID::Arena* submessage_arena =
        ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper<
            ::PROTOBUF_NAMESPACE_ID::MessageLite>::GetOwningArena(
                reinterpret_cast<::PROTOBUF_NAMESPACE_ID::MessageLite*>(srctarget));
    if (message_arena != submessage_arena) {
      srctarget = ::PROTOBUF_NAMESPACE_ID::internal::GetOwnedMessage(
          message_arena, srctarget, submessage_arena);
    }
    
  } else {
    
  }
  srctarget_ = srctarget;
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleSoTarget.srcTarget)
}
 
// string areaId = 2;
inline void RuleSoTarget::clear_areaid() {
  areaid_.ClearToEmpty();
}
inline const std::string& RuleSoTarget::areaid() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSoTarget.areaId)
  return _internal_areaid();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleSoTarget::set_areaid(ArgT0&& arg0, ArgT... args) {
 
 areaid_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleSoTarget.areaId)
}
inline std::string* RuleSoTarget::mutable_areaid() {
  std::string* _s = _internal_mutable_areaid();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleSoTarget.areaId)
  return _s;
}
inline const std::string& RuleSoTarget::_internal_areaid() const {
  return areaid_.Get();
}
inline void RuleSoTarget::_internal_set_areaid(const std::string& value) {
  
  areaid_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleSoTarget::_internal_mutable_areaid() {
  
  return areaid_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleSoTarget::release_areaid() {
  // @@protoc_insertion_point(field_release:protomsg.RuleSoTarget.areaId)
  return areaid_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleSoTarget::set_allocated_areaid(std::string* areaid) {
  if (areaid != nullptr) {
    
  } else {
    
  }
  areaid_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), areaid,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleSoTarget.areaId)
}
 
// string areaName = 3;
inline void RuleSoTarget::clear_areaname() {
  areaname_.ClearToEmpty();
}
inline const std::string& RuleSoTarget::areaname() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSoTarget.areaName)
  return _internal_areaname();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleSoTarget::set_areaname(ArgT0&& arg0, ArgT... args) {
 
 areaname_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleSoTarget.areaName)
}
inline std::string* RuleSoTarget::mutable_areaname() {
  std::string* _s = _internal_mutable_areaname();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleSoTarget.areaName)
  return _s;
}
inline const std::string& RuleSoTarget::_internal_areaname() const {
  return areaname_.Get();
}
inline void RuleSoTarget::_internal_set_areaname(const std::string& value) {
  
  areaname_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleSoTarget::_internal_mutable_areaname() {
  
  return areaname_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleSoTarget::release_areaname() {
  // @@protoc_insertion_point(field_release:protomsg.RuleSoTarget.areaName)
  return areaname_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleSoTarget::set_allocated_areaname(std::string* areaname) {
  if (areaname != nullptr) {
    
  } else {
    
  }
  areaname_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), areaname,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleSoTarget.areaName)
}
 
// string belongsTargetID = 4;
inline void RuleSoTarget::clear_belongstargetid() {
  belongstargetid_.ClearToEmpty();
}
inline const std::string& RuleSoTarget::belongstargetid() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSoTarget.belongsTargetID)
  return _internal_belongstargetid();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleSoTarget::set_belongstargetid(ArgT0&& arg0, ArgT... args) {
 
 belongstargetid_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleSoTarget.belongsTargetID)
}
inline std::string* RuleSoTarget::mutable_belongstargetid() {
  std::string* _s = _internal_mutable_belongstargetid();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleSoTarget.belongsTargetID)
  return _s;
}
inline const std::string& RuleSoTarget::_internal_belongstargetid() const {
  return belongstargetid_.Get();
}
inline void RuleSoTarget::_internal_set_belongstargetid(const std::string& value) {
  
  belongstargetid_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleSoTarget::_internal_mutable_belongstargetid() {
  
  return belongstargetid_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleSoTarget::release_belongstargetid() {
  // @@protoc_insertion_point(field_release:protomsg.RuleSoTarget.belongsTargetID)
  return belongstargetid_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleSoTarget::set_allocated_belongstargetid(std::string* belongstargetid) {
  if (belongstargetid != nullptr) {
    
  } else {
    
  }
  belongstargetid_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), belongstargetid,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleSoTarget.belongsTargetID)
}
 
// repeated .protomsg.RuleBaseCompareInfo compDbInfo = 5;
inline int RuleSoTarget::_internal_compdbinfo_size() const {
  return compdbinfo_.size();
}
inline int RuleSoTarget::compdbinfo_size() const {
  return _internal_compdbinfo_size();
}
inline void RuleSoTarget::clear_compdbinfo() {
  compdbinfo_.Clear();
}
inline ::protomsg::RuleBaseCompareInfo* RuleSoTarget::mutable_compdbinfo(int index) {
  // @@protoc_insertion_point(field_mutable:protomsg.RuleSoTarget.compDbInfo)
  return compdbinfo_.Mutable(index);
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleBaseCompareInfo >*
RuleSoTarget::mutable_compdbinfo() {
  // @@protoc_insertion_point(field_mutable_list:protomsg.RuleSoTarget.compDbInfo)
  return &compdbinfo_;
}
inline const ::protomsg::RuleBaseCompareInfo& RuleSoTarget::_internal_compdbinfo(int index) const {
  return compdbinfo_.Get(index);
}
inline const ::protomsg::RuleBaseCompareInfo& RuleSoTarget::compdbinfo(int index) const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSoTarget.compDbInfo)
  return _internal_compdbinfo(index);
}
inline ::protomsg::RuleBaseCompareInfo* RuleSoTarget::_internal_add_compdbinfo() {
  return compdbinfo_.Add();
}
inline ::protomsg::RuleBaseCompareInfo* RuleSoTarget::add_compdbinfo() {
  ::protomsg::RuleBaseCompareInfo* _add = _internal_add_compdbinfo();
  // @@protoc_insertion_point(field_add:protomsg.RuleSoTarget.compDbInfo)
  return _add;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::protomsg::RuleBaseCompareInfo >&
RuleSoTarget::compdbinfo() const {
  // @@protoc_insertion_point(field_list:protomsg.RuleSoTarget.compDbInfo)
  return compdbinfo_;
}
 
// int64 imageId = 6;
inline void RuleSoTarget::clear_imageid() {
  imageid_ = int64_t{0};
}
inline ::PROTOBUF_NAMESPACE_ID::int64 RuleSoTarget::_internal_imageid() const {
  return imageid_;
}
inline ::PROTOBUF_NAMESPACE_ID::int64 RuleSoTarget::imageid() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleSoTarget.imageId)
  return _internal_imageid();
}
inline void RuleSoTarget::_internal_set_imageid(::PROTOBUF_NAMESPACE_ID::int64 value) {
  
  imageid_ = value;
}
inline void RuleSoTarget::set_imageid(::PROTOBUF_NAMESPACE_ID::int64 value) {
  _internal_set_imageid(value);
  // @@protoc_insertion_point(field_set:protomsg.RuleSoTarget.imageId)
}
 
// -------------------------------------------------------------------
 
// RuleBaseCompareInfo
 
// string TableId = 1;
inline void RuleBaseCompareInfo::clear_tableid() {
  tableid_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::tableid() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.TableId)
  return _internal_tableid();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_tableid(ArgT0&& arg0, ArgT... args) {
 
 tableid_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.TableId)
}
inline std::string* RuleBaseCompareInfo::mutable_tableid() {
  std::string* _s = _internal_mutable_tableid();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.TableId)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_tableid() const {
  return tableid_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_tableid(const std::string& value) {
  
  tableid_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_tableid() {
  
  return tableid_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_tableid() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.TableId)
  return tableid_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_tableid(std::string* tableid) {
  if (tableid != nullptr) {
    
  } else {
    
  }
  tableid_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), tableid,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.TableId)
}
 
// string TableName = 2;
inline void RuleBaseCompareInfo::clear_tablename() {
  tablename_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::tablename() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.TableName)
  return _internal_tablename();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_tablename(ArgT0&& arg0, ArgT... args) {
 
 tablename_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.TableName)
}
inline std::string* RuleBaseCompareInfo::mutable_tablename() {
  std::string* _s = _internal_mutable_tablename();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.TableName)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_tablename() const {
  return tablename_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_tablename(const std::string& value) {
  
  tablename_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_tablename() {
  
  return tablename_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_tablename() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.TableName)
  return tablename_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_tablename(std::string* tablename) {
  if (tablename != nullptr) {
    
  } else {
    
  }
  tablename_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), tablename,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.TableName)
}
 
// string BwType = 3;
inline void RuleBaseCompareInfo::clear_bwtype() {
  bwtype_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::bwtype() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.BwType)
  return _internal_bwtype();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_bwtype(ArgT0&& arg0, ArgT... args) {
 
 bwtype_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.BwType)
}
inline std::string* RuleBaseCompareInfo::mutable_bwtype() {
  std::string* _s = _internal_mutable_bwtype();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.BwType)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_bwtype() const {
  return bwtype_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_bwtype(const std::string& value) {
  
  bwtype_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_bwtype() {
  
  return bwtype_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_bwtype() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.BwType)
  return bwtype_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_bwtype(std::string* bwtype) {
  if (bwtype != nullptr) {
    
  } else {
    
  }
  bwtype_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), bwtype,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.BwType)
}
 
// string CompareScore = 4;
inline void RuleBaseCompareInfo::clear_comparescore() {
  comparescore_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::comparescore() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.CompareScore)
  return _internal_comparescore();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_comparescore(ArgT0&& arg0, ArgT... args) {
 
 comparescore_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.CompareScore)
}
inline std::string* RuleBaseCompareInfo::mutable_comparescore() {
  std::string* _s = _internal_mutable_comparescore();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.CompareScore)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_comparescore() const {
  return comparescore_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_comparescore(const std::string& value) {
  
  comparescore_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_comparescore() {
  
  return comparescore_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_comparescore() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.CompareScore)
  return comparescore_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_comparescore(std::string* comparescore) {
  if (comparescore != nullptr) {
    
  } else {
    
  }
  comparescore_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), comparescore,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.CompareScore)
}
 
// string TargetId = 5;
inline void RuleBaseCompareInfo::clear_targetid() {
  targetid_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::targetid() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.TargetId)
  return _internal_targetid();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_targetid(ArgT0&& arg0, ArgT... args) {
 
 targetid_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.TargetId)
}
inline std::string* RuleBaseCompareInfo::mutable_targetid() {
  std::string* _s = _internal_mutable_targetid();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.TargetId)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_targetid() const {
  return targetid_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_targetid(const std::string& value) {
  
  targetid_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_targetid() {
  
  return targetid_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_targetid() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.TargetId)
  return targetid_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_targetid(std::string* targetid) {
  if (targetid != nullptr) {
    
  } else {
    
  }
  targetid_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), targetid,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.TargetId)
}
 
// string TargetName = 6;
inline void RuleBaseCompareInfo::clear_targetname() {
  targetname_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::targetname() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.TargetName)
  return _internal_targetname();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_targetname(ArgT0&& arg0, ArgT... args) {
 
 targetname_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.TargetName)
}
inline std::string* RuleBaseCompareInfo::mutable_targetname() {
  std::string* _s = _internal_mutable_targetname();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.TargetName)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_targetname() const {
  return targetname_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_targetname(const std::string& value) {
  
  targetname_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_targetname() {
  
  return targetname_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_targetname() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.TargetName)
  return targetname_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_targetname(std::string* targetname) {
  if (targetname != nullptr) {
    
  } else {
    
  }
  targetname_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), targetname,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.TargetName)
}
 
// string TargetPicUrl = 7;
inline void RuleBaseCompareInfo::clear_targetpicurl() {
  targetpicurl_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::targetpicurl() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.TargetPicUrl)
  return _internal_targetpicurl();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_targetpicurl(ArgT0&& arg0, ArgT... args) {
 
 targetpicurl_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.TargetPicUrl)
}
inline std::string* RuleBaseCompareInfo::mutable_targetpicurl() {
  std::string* _s = _internal_mutable_targetpicurl();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.TargetPicUrl)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_targetpicurl() const {
  return targetpicurl_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_targetpicurl(const std::string& value) {
  
  targetpicurl_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_targetpicurl() {
  
  return targetpicurl_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_targetpicurl() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.TargetPicUrl)
  return targetpicurl_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_targetpicurl(std::string* targetpicurl) {
  if (targetpicurl != nullptr) {
    
  } else {
    
  }
  targetpicurl_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), targetpicurl,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.TargetPicUrl)
}
 
// string MonitorLevel = 8;
inline void RuleBaseCompareInfo::clear_monitorlevel() {
  monitorlevel_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::monitorlevel() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.MonitorLevel)
  return _internal_monitorlevel();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_monitorlevel(ArgT0&& arg0, ArgT... args) {
 
 monitorlevel_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.MonitorLevel)
}
inline std::string* RuleBaseCompareInfo::mutable_monitorlevel() {
  std::string* _s = _internal_mutable_monitorlevel();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.MonitorLevel)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_monitorlevel() const {
  return monitorlevel_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_monitorlevel(const std::string& value) {
  
  monitorlevel_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_monitorlevel() {
  
  return monitorlevel_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_monitorlevel() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.MonitorLevel)
  return monitorlevel_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_monitorlevel(std::string* monitorlevel) {
  if (monitorlevel != nullptr) {
    
  } else {
    
  }
  monitorlevel_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), monitorlevel,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.MonitorLevel)
}
 
// string Content = 9;
inline void RuleBaseCompareInfo::clear_content() {
  content_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::content() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.Content)
  return _internal_content();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_content(ArgT0&& arg0, ArgT... args) {
 
 content_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.Content)
}
inline std::string* RuleBaseCompareInfo::mutable_content() {
  std::string* _s = _internal_mutable_content();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.Content)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_content() const {
  return content_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_content(const std::string& value) {
  
  content_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_content() {
  
  return content_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_content() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.Content)
  return content_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_content(std::string* content) {
  if (content != nullptr) {
    
  } else {
    
  }
  content_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), content,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.Content)
}
 
// string DbLabel = 10;
inline void RuleBaseCompareInfo::clear_dblabel() {
  dblabel_.ClearToEmpty();
}
inline const std::string& RuleBaseCompareInfo::dblabel() const {
  // @@protoc_insertion_point(field_get:protomsg.RuleBaseCompareInfo.DbLabel)
  return _internal_dblabel();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void RuleBaseCompareInfo::set_dblabel(ArgT0&& arg0, ArgT... args) {
 
 dblabel_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
  // @@protoc_insertion_point(field_set:protomsg.RuleBaseCompareInfo.DbLabel)
}
inline std::string* RuleBaseCompareInfo::mutable_dblabel() {
  std::string* _s = _internal_mutable_dblabel();
  // @@protoc_insertion_point(field_mutable:protomsg.RuleBaseCompareInfo.DbLabel)
  return _s;
}
inline const std::string& RuleBaseCompareInfo::_internal_dblabel() const {
  return dblabel_.Get();
}
inline void RuleBaseCompareInfo::_internal_set_dblabel(const std::string& value) {
  
  dblabel_.Set(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, value, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::_internal_mutable_dblabel() {
  
  return dblabel_.Mutable(::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr::EmptyDefault{}, GetArenaForAllocation());
}
inline std::string* RuleBaseCompareInfo::release_dblabel() {
  // @@protoc_insertion_point(field_release:protomsg.RuleBaseCompareInfo.DbLabel)
  return dblabel_.Release(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArenaForAllocation());
}
inline void RuleBaseCompareInfo::set_allocated_dblabel(std::string* dblabel) {
  if (dblabel != nullptr) {
    
  } else {
    
  }
  dblabel_.SetAllocated(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), dblabel,
      GetArenaForAllocation());
  // @@protoc_insertion_point(field_set_allocated:protomsg.RuleBaseCompareInfo.DbLabel)
}
 
#ifdef __GNUC__
  #pragma GCC diagnostic pop
#endif  // __GNUC__
// -------------------------------------------------------------------
 
// -------------------------------------------------------------------
 
// -------------------------------------------------------------------
 
 
// @@protoc_insertion_point(namespace_scope)
 
}  // namespace protomsg
 
// @@protoc_insertion_point(global_scope)
 
#include <google/protobuf/port_undef.inc>
#endif  // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_rule_2eproto