|
|
@@ -18,6 +18,70 @@ import 'base.pb.dart' as $0;
|
|
|
import 'base.pbenum.dart' as $0;
|
|
|
import 'google/protobuf/timestamp.pb.dart' as $2;
|
|
|
|
|
|
+class ToCooperationQueryReply extends $pb.GeneratedMessage {
|
|
|
+ factory ToCooperationQueryReply({
|
|
|
+ $core.String? name,
|
|
|
+ $core.int? leftMatchNum,
|
|
|
+ }) {
|
|
|
+ final $result = create();
|
|
|
+ if (name != null) {
|
|
|
+ $result.name = name;
|
|
|
+ }
|
|
|
+ if (leftMatchNum != null) {
|
|
|
+ $result.leftMatchNum = leftMatchNum;
|
|
|
+ }
|
|
|
+ return $result;
|
|
|
+ }
|
|
|
+ ToCooperationQueryReply._() : super();
|
|
|
+ factory ToCooperationQueryReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
+ factory ToCooperationQueryReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
+
|
|
|
+ static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToCooperationQueryReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
|
|
|
+ ..aOS(1, _omitFieldNames ? '' : 'name')
|
|
|
+ ..a<$core.int>(2, _omitFieldNames ? '' : 'leftMatchNum', $pb.PbFieldType.O3, protoName: 'leftMatchNum')
|
|
|
+ ..hasRequiredFields = false
|
|
|
+ ;
|
|
|
+
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ToCooperationQueryReply clone() => ToCooperationQueryReply()..mergeFromMessage(this);
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ToCooperationQueryReply copyWith(void Function(ToCooperationQueryReply) updates) => super.copyWith((message) => updates(message as ToCooperationQueryReply)) as ToCooperationQueryReply;
|
|
|
+
|
|
|
+ $pb.BuilderInfo get info_ => _i;
|
|
|
+
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ToCooperationQueryReply create() => ToCooperationQueryReply._();
|
|
|
+ ToCooperationQueryReply createEmptyInstance() => create();
|
|
|
+ static $pb.PbList<ToCooperationQueryReply> createRepeated() => $pb.PbList<ToCooperationQueryReply>();
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ToCooperationQueryReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToCooperationQueryReply>(create);
|
|
|
+ static ToCooperationQueryReply? _defaultInstance;
|
|
|
+
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.String get name => $_getSZ(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ set name($core.String v) { $_setString(0, v); }
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.bool hasName() => $_has(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ void clearName() => clearField(1);
|
|
|
+
|
|
|
+ @$pb.TagNumber(2)
|
|
|
+ $core.int get leftMatchNum => $_getIZ(1);
|
|
|
+ @$pb.TagNumber(2)
|
|
|
+ set leftMatchNum($core.int v) { $_setSignedInt32(1, v); }
|
|
|
+ @$pb.TagNumber(2)
|
|
|
+ $core.bool hasLeftMatchNum() => $_has(1);
|
|
|
+ @$pb.TagNumber(2)
|
|
|
+ void clearLeftMatchNum() => clearField(2);
|
|
|
+}
|
|
|
+
|
|
|
class ToCourseChackMatchRequest extends $pb.GeneratedMessage {
|
|
|
factory ToCourseChackMatchRequest({
|
|
|
$core.int? id,
|
|
|
@@ -412,6 +476,9 @@ class MatchRegusterInfo extends $pb.GeneratedMessage {
|
|
|
$core.bool? isAllowEdit,
|
|
|
$core.bool? isAllowDel,
|
|
|
$core.Iterable<ToChackInsInfo>? userList,
|
|
|
+ $core.int? state,
|
|
|
+ $core.String? matchBt,
|
|
|
+ $core.String? matchEt,
|
|
|
}) {
|
|
|
final $result = create();
|
|
|
if (id != null) {
|
|
|
@@ -435,6 +502,15 @@ class MatchRegusterInfo extends $pb.GeneratedMessage {
|
|
|
if (userList != null) {
|
|
|
$result.userList.addAll(userList);
|
|
|
}
|
|
|
+ if (state != null) {
|
|
|
+ $result.state = state;
|
|
|
+ }
|
|
|
+ if (matchBt != null) {
|
|
|
+ $result.matchBt = matchBt;
|
|
|
+ }
|
|
|
+ if (matchEt != null) {
|
|
|
+ $result.matchEt = matchEt;
|
|
|
+ }
|
|
|
return $result;
|
|
|
}
|
|
|
MatchRegusterInfo._() : super();
|
|
|
@@ -449,6 +525,9 @@ class MatchRegusterInfo extends $pb.GeneratedMessage {
|
|
|
..aOB(5, _omitFieldNames ? '' : 'isAllowEdit', protoName: 'isAllowEdit')
|
|
|
..aOB(6, _omitFieldNames ? '' : 'isAllowDel', protoName: 'isAllowDel')
|
|
|
..pc<ToChackInsInfo>(7, _omitFieldNames ? '' : 'userList', $pb.PbFieldType.PM, protoName: 'userList', subBuilder: ToChackInsInfo.create)
|
|
|
+ ..a<$core.int>(8, _omitFieldNames ? '' : 'state', $pb.PbFieldType.O3)
|
|
|
+ ..aOS(9, _omitFieldNames ? '' : 'MatchBt', protoName: 'MatchBt')
|
|
|
+ ..aOS(10, _omitFieldNames ? '' : 'MatchEt', protoName: 'MatchEt')
|
|
|
..hasRequiredFields = false
|
|
|
;
|
|
|
|
|
|
@@ -529,6 +608,33 @@ class MatchRegusterInfo extends $pb.GeneratedMessage {
|
|
|
|
|
|
@$pb.TagNumber(7)
|
|
|
$core.List<ToChackInsInfo> get userList => $_getList(6);
|
|
|
+
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ $core.int get state => $_getIZ(7);
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ set state($core.int v) { $_setSignedInt32(7, v); }
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ $core.bool hasState() => $_has(7);
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ void clearState() => clearField(8);
|
|
|
+
|
|
|
+ @$pb.TagNumber(9)
|
|
|
+ $core.String get matchBt => $_getSZ(8);
|
|
|
+ @$pb.TagNumber(9)
|
|
|
+ set matchBt($core.String v) { $_setString(8, v); }
|
|
|
+ @$pb.TagNumber(9)
|
|
|
+ $core.bool hasMatchBt() => $_has(8);
|
|
|
+ @$pb.TagNumber(9)
|
|
|
+ void clearMatchBt() => clearField(9);
|
|
|
+
|
|
|
+ @$pb.TagNumber(10)
|
|
|
+ $core.String get matchEt => $_getSZ(9);
|
|
|
+ @$pb.TagNumber(10)
|
|
|
+ set matchEt($core.String v) { $_setString(9, v); }
|
|
|
+ @$pb.TagNumber(10)
|
|
|
+ $core.bool hasMatchEt() => $_has(9);
|
|
|
+ @$pb.TagNumber(10)
|
|
|
+ void clearMatchEt() => clearField(10);
|
|
|
}
|
|
|
|
|
|
///
|