|
|
@@ -194,6 +194,7 @@ class ToActivityRulesSaveInfo extends $pb.GeneratedMessage {
|
|
|
factory ToActivityRulesSaveInfo({
|
|
|
$core.int? arrId,
|
|
|
$core.String? arValue,
|
|
|
+ $core.bool? isLock,
|
|
|
}) {
|
|
|
final $result = create();
|
|
|
if (arrId != null) {
|
|
|
@@ -202,6 +203,9 @@ class ToActivityRulesSaveInfo extends $pb.GeneratedMessage {
|
|
|
if (arValue != null) {
|
|
|
$result.arValue = arValue;
|
|
|
}
|
|
|
+ if (isLock != null) {
|
|
|
+ $result.isLock = isLock;
|
|
|
+ }
|
|
|
return $result;
|
|
|
}
|
|
|
ToActivityRulesSaveInfo._() : super();
|
|
|
@@ -211,6 +215,7 @@ class ToActivityRulesSaveInfo extends $pb.GeneratedMessage {
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToActivityRulesSaveInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
|
|
|
..a<$core.int>(1, _omitFieldNames ? '' : 'arrId', $pb.PbFieldType.O3, protoName: 'arrId')
|
|
|
..aOS(2, _omitFieldNames ? '' : 'arValue', protoName: 'arValue')
|
|
|
+ ..aOB(3, _omitFieldNames ? '' : 'isLock', protoName: 'isLock')
|
|
|
..hasRequiredFields = false
|
|
|
;
|
|
|
|
|
|
@@ -252,6 +257,15 @@ class ToActivityRulesSaveInfo extends $pb.GeneratedMessage {
|
|
|
$core.bool hasArValue() => $_has(1);
|
|
|
@$pb.TagNumber(2)
|
|
|
void clearArValue() => clearField(2);
|
|
|
+
|
|
|
+ @$pb.TagNumber(3)
|
|
|
+ $core.bool get isLock => $_getBF(2);
|
|
|
+ @$pb.TagNumber(3)
|
|
|
+ set isLock($core.bool v) { $_setBool(2, v); }
|
|
|
+ @$pb.TagNumber(3)
|
|
|
+ $core.bool hasIsLock() => $_has(2);
|
|
|
+ @$pb.TagNumber(3)
|
|
|
+ void clearIsLock() => clearField(3);
|
|
|
}
|
|
|
|
|
|
class ToActivityRulesQueryReply extends $pb.GeneratedMessage {
|
|
|
@@ -306,6 +320,8 @@ class ToActivityRulesInfo extends $pb.GeneratedMessage {
|
|
|
$core.int? arType,
|
|
|
$core.Iterable<ToActivityRulesSelect>? arValueSelectList,
|
|
|
$core.String? arValue,
|
|
|
+ $core.bool? toLock,
|
|
|
+ $core.bool? toIsLockEdit,
|
|
|
}) {
|
|
|
final $result = create();
|
|
|
if (arrId != null) {
|
|
|
@@ -326,6 +342,12 @@ class ToActivityRulesInfo extends $pb.GeneratedMessage {
|
|
|
if (arValue != null) {
|
|
|
$result.arValue = arValue;
|
|
|
}
|
|
|
+ if (toLock != null) {
|
|
|
+ $result.toLock = toLock;
|
|
|
+ }
|
|
|
+ if (toIsLockEdit != null) {
|
|
|
+ $result.toIsLockEdit = toIsLockEdit;
|
|
|
+ }
|
|
|
return $result;
|
|
|
}
|
|
|
ToActivityRulesInfo._() : super();
|
|
|
@@ -339,6 +361,8 @@ class ToActivityRulesInfo extends $pb.GeneratedMessage {
|
|
|
..a<$core.int>(4, _omitFieldNames ? '' : 'arType', $pb.PbFieldType.O3, protoName: 'arType')
|
|
|
..pc<ToActivityRulesSelect>(5, _omitFieldNames ? '' : 'arValueSelectList', $pb.PbFieldType.PM, protoName: 'arValueSelectList', subBuilder: ToActivityRulesSelect.create)
|
|
|
..aOS(6, _omitFieldNames ? '' : 'arValue', protoName: 'arValue')
|
|
|
+ ..aOB(7, _omitFieldNames ? '' : 'toLock', protoName: 'toLock')
|
|
|
+ ..aOB(8, _omitFieldNames ? '' : 'toIsLockEdit', protoName: 'toIsLockEdit')
|
|
|
..hasRequiredFields = false
|
|
|
;
|
|
|
|
|
|
@@ -410,6 +434,24 @@ class ToActivityRulesInfo extends $pb.GeneratedMessage {
|
|
|
$core.bool hasArValue() => $_has(5);
|
|
|
@$pb.TagNumber(6)
|
|
|
void clearArValue() => clearField(6);
|
|
|
+
|
|
|
+ @$pb.TagNumber(7)
|
|
|
+ $core.bool get toLock => $_getBF(6);
|
|
|
+ @$pb.TagNumber(7)
|
|
|
+ set toLock($core.bool v) { $_setBool(6, v); }
|
|
|
+ @$pb.TagNumber(7)
|
|
|
+ $core.bool hasToLock() => $_has(6);
|
|
|
+ @$pb.TagNumber(7)
|
|
|
+ void clearToLock() => clearField(7);
|
|
|
+
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ $core.bool get toIsLockEdit => $_getBF(7);
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ set toIsLockEdit($core.bool v) { $_setBool(7, v); }
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ $core.bool hasToIsLockEdit() => $_has(7);
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ void clearToIsLockEdit() => clearField(8);
|
|
|
}
|
|
|
|
|
|
class ToActivityRulesSelect extends $pb.GeneratedMessage {
|