|
|
@@ -17,13 +17,120 @@ import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
import 'base.pb.dart' as $0;
|
|
|
import 'google/protobuf/timestamp.pb.dart' as $2;
|
|
|
|
|
|
+class ToCourseChackMatchRequest extends $pb.GeneratedMessage {
|
|
|
+ factory ToCourseChackMatchRequest({
|
|
|
+ $core.int? id,
|
|
|
+ $core.int? cId,
|
|
|
+ }) {
|
|
|
+ final $result = create();
|
|
|
+ if (id != null) {
|
|
|
+ $result.id = id;
|
|
|
+ }
|
|
|
+ if (cId != null) {
|
|
|
+ $result.cId = cId;
|
|
|
+ }
|
|
|
+ return $result;
|
|
|
+ }
|
|
|
+ ToCourseChackMatchRequest._() : super();
|
|
|
+ factory ToCourseChackMatchRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
+ factory ToCourseChackMatchRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
+
|
|
|
+ static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToCourseChackMatchRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
|
|
|
+ ..a<$core.int>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.O3)
|
|
|
+ ..a<$core.int>(3, _omitFieldNames ? '' : 'cId', $pb.PbFieldType.O3, protoName: 'cId')
|
|
|
+ ..hasRequiredFields = false
|
|
|
+ ;
|
|
|
+
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ToCourseChackMatchRequest clone() => ToCourseChackMatchRequest()..mergeFromMessage(this);
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ToCourseChackMatchRequest copyWith(void Function(ToCourseChackMatchRequest) updates) => super.copyWith((message) => updates(message as ToCourseChackMatchRequest)) as ToCourseChackMatchRequest;
|
|
|
+
|
|
|
+ $pb.BuilderInfo get info_ => _i;
|
|
|
+
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ToCourseChackMatchRequest create() => ToCourseChackMatchRequest._();
|
|
|
+ ToCourseChackMatchRequest createEmptyInstance() => create();
|
|
|
+ static $pb.PbList<ToCourseChackMatchRequest> createRepeated() => $pb.PbList<ToCourseChackMatchRequest>();
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ToCourseChackMatchRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToCourseChackMatchRequest>(create);
|
|
|
+ static ToCourseChackMatchRequest? _defaultInstance;
|
|
|
+
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.int get id => $_getIZ(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ set id($core.int v) { $_setSignedInt32(0, v); }
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.bool hasId() => $_has(0);
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ void clearId() => clearField(1);
|
|
|
+
|
|
|
+ @$pb.TagNumber(3)
|
|
|
+ $core.int get cId => $_getIZ(1);
|
|
|
+ @$pb.TagNumber(3)
|
|
|
+ set cId($core.int v) { $_setSignedInt32(1, v); }
|
|
|
+ @$pb.TagNumber(3)
|
|
|
+ $core.bool hasCId() => $_has(1);
|
|
|
+ @$pb.TagNumber(3)
|
|
|
+ void clearCId() => clearField(3);
|
|
|
+}
|
|
|
+
|
|
|
+class ToActivityListReply extends $pb.GeneratedMessage {
|
|
|
+ factory ToActivityListReply({
|
|
|
+ $core.Iterable<$0.ToActionBasicInfo>? list,
|
|
|
+ }) {
|
|
|
+ final $result = create();
|
|
|
+ if (list != null) {
|
|
|
+ $result.list.addAll(list);
|
|
|
+ }
|
|
|
+ return $result;
|
|
|
+ }
|
|
|
+ ToActivityListReply._() : super();
|
|
|
+ factory ToActivityListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
+ factory ToActivityListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
+
|
|
|
+ static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToActivityListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
|
|
|
+ ..pc<$0.ToActionBasicInfo>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: $0.ToActionBasicInfo.create)
|
|
|
+ ..hasRequiredFields = false
|
|
|
+ ;
|
|
|
+
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ToActivityListReply clone() => ToActivityListReply()..mergeFromMessage(this);
|
|
|
+ @$core.Deprecated(
|
|
|
+ 'Using this can add significant overhead to your binary. '
|
|
|
+ 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
|
+ 'Will be removed in next major version')
|
|
|
+ ToActivityListReply copyWith(void Function(ToActivityListReply) updates) => super.copyWith((message) => updates(message as ToActivityListReply)) as ToActivityListReply;
|
|
|
+
|
|
|
+ $pb.BuilderInfo get info_ => _i;
|
|
|
+
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ToActivityListReply create() => ToActivityListReply._();
|
|
|
+ ToActivityListReply createEmptyInstance() => create();
|
|
|
+ static $pb.PbList<ToActivityListReply> createRepeated() => $pb.PbList<ToActivityListReply>();
|
|
|
+ @$core.pragma('dart2js:noInline')
|
|
|
+ static ToActivityListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToActivityListReply>(create);
|
|
|
+ static ToActivityListReply? _defaultInstance;
|
|
|
+
|
|
|
+ @$pb.TagNumber(1)
|
|
|
+ $core.List<$0.ToActionBasicInfo> get list => $_getList(0);
|
|
|
+}
|
|
|
+
|
|
|
class ToMatchRegusterEditRequest extends $pb.GeneratedMessage {
|
|
|
factory ToMatchRegusterEditRequest({
|
|
|
$core.int? id,
|
|
|
$core.String? regName,
|
|
|
$2.Timestamp? startAt,
|
|
|
$2.Timestamp? stopAt,
|
|
|
- $core.int? actId,
|
|
|
$core.bool? isQueryPwd,
|
|
|
$core.String? queryPasswd,
|
|
|
}) {
|
|
|
@@ -40,9 +147,6 @@ class ToMatchRegusterEditRequest extends $pb.GeneratedMessage {
|
|
|
if (stopAt != null) {
|
|
|
$result.stopAt = stopAt;
|
|
|
}
|
|
|
- if (actId != null) {
|
|
|
- $result.actId = actId;
|
|
|
- }
|
|
|
if (isQueryPwd != null) {
|
|
|
$result.isQueryPwd = isQueryPwd;
|
|
|
}
|
|
|
@@ -60,9 +164,8 @@ class ToMatchRegusterEditRequest extends $pb.GeneratedMessage {
|
|
|
..aOS(2, _omitFieldNames ? '' : 'regName', protoName: 'regName')
|
|
|
..aOM<$2.Timestamp>(3, _omitFieldNames ? '' : 'startAt', subBuilder: $2.Timestamp.create)
|
|
|
..aOM<$2.Timestamp>(4, _omitFieldNames ? '' : 'stopAt', subBuilder: $2.Timestamp.create)
|
|
|
- ..a<$core.int>(5, _omitFieldNames ? '' : 'actId', $pb.PbFieldType.O3, protoName: 'actId')
|
|
|
- ..aOB(6, _omitFieldNames ? '' : 'isQueryPwd', protoName: 'isQueryPwd')
|
|
|
- ..aOS(7, _omitFieldNames ? '' : 'queryPasswd', protoName: 'queryPasswd')
|
|
|
+ ..aOB(5, _omitFieldNames ? '' : 'isQueryPwd', protoName: 'isQueryPwd')
|
|
|
+ ..aOS(6, _omitFieldNames ? '' : 'queryPasswd', protoName: 'queryPasswd')
|
|
|
..hasRequiredFields = false
|
|
|
;
|
|
|
|
|
|
@@ -127,37 +230,29 @@ class ToMatchRegusterEditRequest extends $pb.GeneratedMessage {
|
|
|
@$pb.TagNumber(4)
|
|
|
$2.Timestamp ensureStopAt() => $_ensure(3);
|
|
|
|
|
|
+ /// int32 actId = 5; //选择活动id
|
|
|
@$pb.TagNumber(5)
|
|
|
- $core.int get actId => $_getIZ(4);
|
|
|
+ $core.bool get isQueryPwd => $_getBF(4);
|
|
|
@$pb.TagNumber(5)
|
|
|
- set actId($core.int v) { $_setSignedInt32(4, v); }
|
|
|
+ set isQueryPwd($core.bool v) { $_setBool(4, v); }
|
|
|
@$pb.TagNumber(5)
|
|
|
- $core.bool hasActId() => $_has(4);
|
|
|
+ $core.bool hasIsQueryPwd() => $_has(4);
|
|
|
@$pb.TagNumber(5)
|
|
|
- void clearActId() => clearField(5);
|
|
|
+ void clearIsQueryPwd() => clearField(5);
|
|
|
|
|
|
@$pb.TagNumber(6)
|
|
|
- $core.bool get isQueryPwd => $_getBF(5);
|
|
|
+ $core.String get queryPasswd => $_getSZ(5);
|
|
|
@$pb.TagNumber(6)
|
|
|
- set isQueryPwd($core.bool v) { $_setBool(5, v); }
|
|
|
+ set queryPasswd($core.String v) { $_setString(5, v); }
|
|
|
@$pb.TagNumber(6)
|
|
|
- $core.bool hasIsQueryPwd() => $_has(5);
|
|
|
+ $core.bool hasQueryPasswd() => $_has(5);
|
|
|
@$pb.TagNumber(6)
|
|
|
- void clearIsQueryPwd() => clearField(6);
|
|
|
-
|
|
|
- @$pb.TagNumber(7)
|
|
|
- $core.String get queryPasswd => $_getSZ(6);
|
|
|
- @$pb.TagNumber(7)
|
|
|
- set queryPasswd($core.String v) { $_setString(6, v); }
|
|
|
- @$pb.TagNumber(7)
|
|
|
- $core.bool hasQueryPasswd() => $_has(6);
|
|
|
- @$pb.TagNumber(7)
|
|
|
- void clearQueryPasswd() => clearField(7);
|
|
|
+ void clearQueryPasswd() => clearField(6);
|
|
|
}
|
|
|
|
|
|
-class ToActivityListReply extends $pb.GeneratedMessage {
|
|
|
- factory ToActivityListReply({
|
|
|
- $core.Iterable<$0.ToActionBasicInfo>? list,
|
|
|
+class ToCourseListReply extends $pb.GeneratedMessage {
|
|
|
+ factory ToCourseListReply({
|
|
|
+ $core.Iterable<$0.CourseBase>? list,
|
|
|
}) {
|
|
|
final $result = create();
|
|
|
if (list != null) {
|
|
|
@@ -165,12 +260,12 @@ class ToActivityListReply extends $pb.GeneratedMessage {
|
|
|
}
|
|
|
return $result;
|
|
|
}
|
|
|
- ToActivityListReply._() : super();
|
|
|
- factory ToActivityListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
- factory ToActivityListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
+ ToCourseListReply._() : super();
|
|
|
+ factory ToCourseListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
|
|
|
+ factory ToCourseListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
|
|
- static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToActivityListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
|
|
|
- ..pc<$0.ToActionBasicInfo>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: $0.ToActionBasicInfo.create)
|
|
|
+ static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToCourseListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
|
|
|
+ ..pc<$0.CourseBase>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: $0.CourseBase.create)
|
|
|
..hasRequiredFields = false
|
|
|
;
|
|
|
|
|
|
@@ -178,25 +273,25 @@ class ToActivityListReply extends $pb.GeneratedMessage {
|
|
|
'Using this can add significant overhead to your binary. '
|
|
|
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
|
|
|
'Will be removed in next major version')
|
|
|
- ToActivityListReply clone() => ToActivityListReply()..mergeFromMessage(this);
|
|
|
+ ToCourseListReply clone() => ToCourseListReply()..mergeFromMessage(this);
|
|
|
@$core.Deprecated(
|
|
|
'Using this can add significant overhead to your binary. '
|
|
|
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
|
|
|
'Will be removed in next major version')
|
|
|
- ToActivityListReply copyWith(void Function(ToActivityListReply) updates) => super.copyWith((message) => updates(message as ToActivityListReply)) as ToActivityListReply;
|
|
|
+ ToCourseListReply copyWith(void Function(ToCourseListReply) updates) => super.copyWith((message) => updates(message as ToCourseListReply)) as ToCourseListReply;
|
|
|
|
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
- static ToActivityListReply create() => ToActivityListReply._();
|
|
|
- ToActivityListReply createEmptyInstance() => create();
|
|
|
- static $pb.PbList<ToActivityListReply> createRepeated() => $pb.PbList<ToActivityListReply>();
|
|
|
+ static ToCourseListReply create() => ToCourseListReply._();
|
|
|
+ ToCourseListReply createEmptyInstance() => create();
|
|
|
+ static $pb.PbList<ToCourseListReply> createRepeated() => $pb.PbList<ToCourseListReply>();
|
|
|
@$core.pragma('dart2js:noInline')
|
|
|
- static ToActivityListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToActivityListReply>(create);
|
|
|
- static ToActivityListReply? _defaultInstance;
|
|
|
+ static ToCourseListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToCourseListReply>(create);
|
|
|
+ static ToCourseListReply? _defaultInstance;
|
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
- $core.List<$0.ToActionBasicInfo> get list => $_getList(0);
|
|
|
+ $core.List<$0.CourseBase> get list => $_getList(0);
|
|
|
}
|
|
|
|
|
|
class ToMatchRegusterListRequest extends $pb.GeneratedMessage {
|
|
|
@@ -435,18 +530,31 @@ class MatchRegusterInfo extends $pb.GeneratedMessage {
|
|
|
$core.List<ToChackInsInfo> get userList => $_getList(6);
|
|
|
}
|
|
|
|
|
|
+///
|
|
|
+/// 场控段赛事控制逻辑:
|
|
|
+/// 1.如果cId等于0,isStart等于false,表示未分发线路,路线显示分发按钮,状态显示未分发;
|
|
|
+/// 2.如果cId大于0,isStart等于false,表示已分发线路但管理员未开始,状态栏是开始按钮;
|
|
|
+/// 3.如果cId大于0,isStart等于true,mState等于0(玩家端未开始)或1(玩家端已开始但没打开始点),表示已分发线路且管理员已开始但用户没有打开始点,状态显示已开始;
|
|
|
+/// 4.如果cId大于0,isStart等于true,mState等于2,表示已分发线路且管理员已开始且用户已打开始点,状态显示已开始,操作显示结束按钮;
|
|
|
+/// 5.如果cId大于0,isStart等于true,mState大于等于3,表示已分发线路且管理员已开始且用户已结束比赛,状态显示已结束,操作显示重赛按钮
|
|
|
+/// 6:点击重赛后,跟1情况一样
|
|
|
+/// 7:是否显示删除按钮由punchCpNum字段控制,punchCpNum等于0显示删除按钮,大于0显示其他按钮;
|
|
|
class ToChackInsInfo extends $pb.GeneratedMessage {
|
|
|
factory ToChackInsInfo({
|
|
|
- $core.int? marId,
|
|
|
+ $core.int? mciId,
|
|
|
$core.int? oId,
|
|
|
$core.String? nickname,
|
|
|
$core.String? phone,
|
|
|
$core.String? chackInsTime,
|
|
|
- $core.bool? isAllowDel,
|
|
|
+ $core.String? cName,
|
|
|
+ $core.int? cId,
|
|
|
+ $core.int? mState,
|
|
|
+ $core.bool? isStart,
|
|
|
+ $core.int? punchCpNum,
|
|
|
}) {
|
|
|
final $result = create();
|
|
|
- if (marId != null) {
|
|
|
- $result.marId = marId;
|
|
|
+ if (mciId != null) {
|
|
|
+ $result.mciId = mciId;
|
|
|
}
|
|
|
if (oId != null) {
|
|
|
$result.oId = oId;
|
|
|
@@ -460,8 +568,20 @@ class ToChackInsInfo extends $pb.GeneratedMessage {
|
|
|
if (chackInsTime != null) {
|
|
|
$result.chackInsTime = chackInsTime;
|
|
|
}
|
|
|
- if (isAllowDel != null) {
|
|
|
- $result.isAllowDel = isAllowDel;
|
|
|
+ if (cName != null) {
|
|
|
+ $result.cName = cName;
|
|
|
+ }
|
|
|
+ if (cId != null) {
|
|
|
+ $result.cId = cId;
|
|
|
+ }
|
|
|
+ if (mState != null) {
|
|
|
+ $result.mState = mState;
|
|
|
+ }
|
|
|
+ if (isStart != null) {
|
|
|
+ $result.isStart = isStart;
|
|
|
+ }
|
|
|
+ if (punchCpNum != null) {
|
|
|
+ $result.punchCpNum = punchCpNum;
|
|
|
}
|
|
|
return $result;
|
|
|
}
|
|
|
@@ -470,12 +590,16 @@ class ToChackInsInfo extends $pb.GeneratedMessage {
|
|
|
factory ToChackInsInfo.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
|
|
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToChackInsInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
|
|
|
- ..a<$core.int>(1, _omitFieldNames ? '' : 'marId', $pb.PbFieldType.O3, protoName: 'marId')
|
|
|
+ ..a<$core.int>(1, _omitFieldNames ? '' : 'mciId', $pb.PbFieldType.O3, protoName: 'mciId')
|
|
|
..a<$core.int>(2, _omitFieldNames ? '' : 'oId', $pb.PbFieldType.O3, protoName: 'oId')
|
|
|
..aOS(3, _omitFieldNames ? '' : 'nickname')
|
|
|
..aOS(4, _omitFieldNames ? '' : 'phone')
|
|
|
..aOS(5, _omitFieldNames ? '' : 'chackInsTime', protoName: 'chackInsTime')
|
|
|
- ..aOB(6, _omitFieldNames ? '' : 'isAllowDel', protoName: 'isAllowDel')
|
|
|
+ ..aOS(6, _omitFieldNames ? '' : 'cName', protoName: 'cName')
|
|
|
+ ..a<$core.int>(7, _omitFieldNames ? '' : 'cId', $pb.PbFieldType.O3, protoName: 'cId')
|
|
|
+ ..a<$core.int>(8, _omitFieldNames ? '' : 'mState', $pb.PbFieldType.O3, protoName: 'mState')
|
|
|
+ ..aOB(9, _omitFieldNames ? '' : 'isStart', protoName: 'isStart')
|
|
|
+ ..a<$core.int>(10, _omitFieldNames ? '' : 'punchCpNum', $pb.PbFieldType.O3, protoName: 'punchCpNum')
|
|
|
..hasRequiredFields = false
|
|
|
;
|
|
|
|
|
|
@@ -501,13 +625,13 @@ class ToChackInsInfo extends $pb.GeneratedMessage {
|
|
|
static ToChackInsInfo? _defaultInstance;
|
|
|
|
|
|
@$pb.TagNumber(1)
|
|
|
- $core.int get marId => $_getIZ(0);
|
|
|
+ $core.int get mciId => $_getIZ(0);
|
|
|
@$pb.TagNumber(1)
|
|
|
- set marId($core.int v) { $_setSignedInt32(0, v); }
|
|
|
+ set mciId($core.int v) { $_setSignedInt32(0, v); }
|
|
|
@$pb.TagNumber(1)
|
|
|
- $core.bool hasMarId() => $_has(0);
|
|
|
+ $core.bool hasMciId() => $_has(0);
|
|
|
@$pb.TagNumber(1)
|
|
|
- void clearMarId() => clearField(1);
|
|
|
+ void clearMciId() => clearField(1);
|
|
|
|
|
|
@$pb.TagNumber(2)
|
|
|
$core.int get oId => $_getIZ(1);
|
|
|
@@ -545,14 +669,51 @@ class ToChackInsInfo extends $pb.GeneratedMessage {
|
|
|
@$pb.TagNumber(5)
|
|
|
void clearChackInsTime() => clearField(5);
|
|
|
|
|
|
+ /// bool isAllowDel = 6; //是否允许删除,如果否删除按钮是不可用
|
|
|
@$pb.TagNumber(6)
|
|
|
- $core.bool get isAllowDel => $_getBF(5);
|
|
|
+ $core.String get cName => $_getSZ(5);
|
|
|
@$pb.TagNumber(6)
|
|
|
- set isAllowDel($core.bool v) { $_setBool(5, v); }
|
|
|
+ set cName($core.String v) { $_setString(5, v); }
|
|
|
@$pb.TagNumber(6)
|
|
|
- $core.bool hasIsAllowDel() => $_has(5);
|
|
|
+ $core.bool hasCName() => $_has(5);
|
|
|
@$pb.TagNumber(6)
|
|
|
- void clearIsAllowDel() => clearField(6);
|
|
|
+ void clearCName() => clearField(6);
|
|
|
+
|
|
|
+ @$pb.TagNumber(7)
|
|
|
+ $core.int get cId => $_getIZ(6);
|
|
|
+ @$pb.TagNumber(7)
|
|
|
+ set cId($core.int v) { $_setSignedInt32(6, v); }
|
|
|
+ @$pb.TagNumber(7)
|
|
|
+ $core.bool hasCId() => $_has(6);
|
|
|
+ @$pb.TagNumber(7)
|
|
|
+ void clearCId() => clearField(7);
|
|
|
+
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ $core.int get mState => $_getIZ(7);
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ set mState($core.int v) { $_setSignedInt32(7, v); }
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ $core.bool hasMState() => $_has(7);
|
|
|
+ @$pb.TagNumber(8)
|
|
|
+ void clearMState() => clearField(8);
|
|
|
+
|
|
|
+ @$pb.TagNumber(9)
|
|
|
+ $core.bool get isStart => $_getBF(8);
|
|
|
+ @$pb.TagNumber(9)
|
|
|
+ set isStart($core.bool v) { $_setBool(8, v); }
|
|
|
+ @$pb.TagNumber(9)
|
|
|
+ $core.bool hasIsStart() => $_has(8);
|
|
|
+ @$pb.TagNumber(9)
|
|
|
+ void clearIsStart() => clearField(9);
|
|
|
+
|
|
|
+ @$pb.TagNumber(10)
|
|
|
+ $core.int get punchCpNum => $_getIZ(9);
|
|
|
+ @$pb.TagNumber(10)
|
|
|
+ set punchCpNum($core.int v) { $_setSignedInt32(9, v); }
|
|
|
+ @$pb.TagNumber(10)
|
|
|
+ $core.bool hasPunchCpNum() => $_has(9);
|
|
|
+ @$pb.TagNumber(10)
|
|
|
+ void clearPunchCpNum() => clearField(10);
|
|
|
}
|
|
|
|
|
|
class ToMatchRegusterAddRequest extends $pb.GeneratedMessage {
|