track_offical.pb.dart 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954
  1. //
  2. // Generated code. Do not modify.
  3. // source: track_offical.proto
  4. //
  5. // @dart = 2.12
  6. // ignore_for_file: annotate_overrides, camel_case_types, comment_references
  7. // ignore_for_file: constant_identifier_names, library_prefixes
  8. // ignore_for_file: non_constant_identifier_names, prefer_final_fields
  9. // ignore_for_file: unnecessary_import, unnecessary_this, unused_import
  10. import 'dart:core' as $core;
  11. import 'package:fixnum/fixnum.dart' as $fixnum;
  12. import 'package:protobuf/protobuf.dart' as $pb;
  13. import 'base.pb.dart' as $0;
  14. import 'base.pbenum.dart' as $0;
  15. import 'google/protobuf/timestamp.pb.dart' as $2;
  16. class ToCooperationQueryReply extends $pb.GeneratedMessage {
  17. factory ToCooperationQueryReply({
  18. $core.String? name,
  19. $core.int? leftMatchNum,
  20. }) {
  21. final $result = create();
  22. if (name != null) {
  23. $result.name = name;
  24. }
  25. if (leftMatchNum != null) {
  26. $result.leftMatchNum = leftMatchNum;
  27. }
  28. return $result;
  29. }
  30. ToCooperationQueryReply._() : super();
  31. factory ToCooperationQueryReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  32. factory ToCooperationQueryReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  33. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToCooperationQueryReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  34. ..aOS(1, _omitFieldNames ? '' : 'name')
  35. ..a<$core.int>(2, _omitFieldNames ? '' : 'leftMatchNum', $pb.PbFieldType.O3, protoName: 'leftMatchNum')
  36. ..hasRequiredFields = false
  37. ;
  38. @$core.Deprecated(
  39. 'Using this can add significant overhead to your binary. '
  40. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  41. 'Will be removed in next major version')
  42. ToCooperationQueryReply clone() => ToCooperationQueryReply()..mergeFromMessage(this);
  43. @$core.Deprecated(
  44. 'Using this can add significant overhead to your binary. '
  45. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  46. 'Will be removed in next major version')
  47. ToCooperationQueryReply copyWith(void Function(ToCooperationQueryReply) updates) => super.copyWith((message) => updates(message as ToCooperationQueryReply)) as ToCooperationQueryReply;
  48. $pb.BuilderInfo get info_ => _i;
  49. @$core.pragma('dart2js:noInline')
  50. static ToCooperationQueryReply create() => ToCooperationQueryReply._();
  51. ToCooperationQueryReply createEmptyInstance() => create();
  52. static $pb.PbList<ToCooperationQueryReply> createRepeated() => $pb.PbList<ToCooperationQueryReply>();
  53. @$core.pragma('dart2js:noInline')
  54. static ToCooperationQueryReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToCooperationQueryReply>(create);
  55. static ToCooperationQueryReply? _defaultInstance;
  56. @$pb.TagNumber(1)
  57. $core.String get name => $_getSZ(0);
  58. @$pb.TagNumber(1)
  59. set name($core.String v) { $_setString(0, v); }
  60. @$pb.TagNumber(1)
  61. $core.bool hasName() => $_has(0);
  62. @$pb.TagNumber(1)
  63. void clearName() => clearField(1);
  64. @$pb.TagNumber(2)
  65. $core.int get leftMatchNum => $_getIZ(1);
  66. @$pb.TagNumber(2)
  67. set leftMatchNum($core.int v) { $_setSignedInt32(1, v); }
  68. @$pb.TagNumber(2)
  69. $core.bool hasLeftMatchNum() => $_has(1);
  70. @$pb.TagNumber(2)
  71. void clearLeftMatchNum() => clearField(2);
  72. }
  73. class ToCourseChackMatchRequest extends $pb.GeneratedMessage {
  74. factory ToCourseChackMatchRequest({
  75. $core.int? id,
  76. $core.int? cId,
  77. }) {
  78. final $result = create();
  79. if (id != null) {
  80. $result.id = id;
  81. }
  82. if (cId != null) {
  83. $result.cId = cId;
  84. }
  85. return $result;
  86. }
  87. ToCourseChackMatchRequest._() : super();
  88. factory ToCourseChackMatchRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  89. factory ToCourseChackMatchRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  90. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToCourseChackMatchRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  91. ..a<$core.int>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.O3)
  92. ..a<$core.int>(3, _omitFieldNames ? '' : 'cId', $pb.PbFieldType.O3, protoName: 'cId')
  93. ..hasRequiredFields = false
  94. ;
  95. @$core.Deprecated(
  96. 'Using this can add significant overhead to your binary. '
  97. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  98. 'Will be removed in next major version')
  99. ToCourseChackMatchRequest clone() => ToCourseChackMatchRequest()..mergeFromMessage(this);
  100. @$core.Deprecated(
  101. 'Using this can add significant overhead to your binary. '
  102. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  103. 'Will be removed in next major version')
  104. ToCourseChackMatchRequest copyWith(void Function(ToCourseChackMatchRequest) updates) => super.copyWith((message) => updates(message as ToCourseChackMatchRequest)) as ToCourseChackMatchRequest;
  105. $pb.BuilderInfo get info_ => _i;
  106. @$core.pragma('dart2js:noInline')
  107. static ToCourseChackMatchRequest create() => ToCourseChackMatchRequest._();
  108. ToCourseChackMatchRequest createEmptyInstance() => create();
  109. static $pb.PbList<ToCourseChackMatchRequest> createRepeated() => $pb.PbList<ToCourseChackMatchRequest>();
  110. @$core.pragma('dart2js:noInline')
  111. static ToCourseChackMatchRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToCourseChackMatchRequest>(create);
  112. static ToCourseChackMatchRequest? _defaultInstance;
  113. @$pb.TagNumber(1)
  114. $core.int get id => $_getIZ(0);
  115. @$pb.TagNumber(1)
  116. set id($core.int v) { $_setSignedInt32(0, v); }
  117. @$pb.TagNumber(1)
  118. $core.bool hasId() => $_has(0);
  119. @$pb.TagNumber(1)
  120. void clearId() => clearField(1);
  121. @$pb.TagNumber(3)
  122. $core.int get cId => $_getIZ(1);
  123. @$pb.TagNumber(3)
  124. set cId($core.int v) { $_setSignedInt32(1, v); }
  125. @$pb.TagNumber(3)
  126. $core.bool hasCId() => $_has(1);
  127. @$pb.TagNumber(3)
  128. void clearCId() => clearField(3);
  129. }
  130. class ToActivityListReply extends $pb.GeneratedMessage {
  131. factory ToActivityListReply({
  132. $core.Iterable<$0.ToActionBasicInfo>? list,
  133. }) {
  134. final $result = create();
  135. if (list != null) {
  136. $result.list.addAll(list);
  137. }
  138. return $result;
  139. }
  140. ToActivityListReply._() : super();
  141. factory ToActivityListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  142. factory ToActivityListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  143. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToActivityListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  144. ..pc<$0.ToActionBasicInfo>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: $0.ToActionBasicInfo.create)
  145. ..hasRequiredFields = false
  146. ;
  147. @$core.Deprecated(
  148. 'Using this can add significant overhead to your binary. '
  149. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  150. 'Will be removed in next major version')
  151. ToActivityListReply clone() => ToActivityListReply()..mergeFromMessage(this);
  152. @$core.Deprecated(
  153. 'Using this can add significant overhead to your binary. '
  154. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  155. 'Will be removed in next major version')
  156. ToActivityListReply copyWith(void Function(ToActivityListReply) updates) => super.copyWith((message) => updates(message as ToActivityListReply)) as ToActivityListReply;
  157. $pb.BuilderInfo get info_ => _i;
  158. @$core.pragma('dart2js:noInline')
  159. static ToActivityListReply create() => ToActivityListReply._();
  160. ToActivityListReply createEmptyInstance() => create();
  161. static $pb.PbList<ToActivityListReply> createRepeated() => $pb.PbList<ToActivityListReply>();
  162. @$core.pragma('dart2js:noInline')
  163. static ToActivityListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToActivityListReply>(create);
  164. static ToActivityListReply? _defaultInstance;
  165. @$pb.TagNumber(1)
  166. $core.List<$0.ToActionBasicInfo> get list => $_getList(0);
  167. }
  168. class ToMatchRegusterEditRequest extends $pb.GeneratedMessage {
  169. factory ToMatchRegusterEditRequest({
  170. $core.int? id,
  171. $core.String? regName,
  172. $2.Timestamp? startAt,
  173. $2.Timestamp? stopAt,
  174. $core.bool? isQueryPwd,
  175. $core.String? queryPasswd,
  176. }) {
  177. final $result = create();
  178. if (id != null) {
  179. $result.id = id;
  180. }
  181. if (regName != null) {
  182. $result.regName = regName;
  183. }
  184. if (startAt != null) {
  185. $result.startAt = startAt;
  186. }
  187. if (stopAt != null) {
  188. $result.stopAt = stopAt;
  189. }
  190. if (isQueryPwd != null) {
  191. $result.isQueryPwd = isQueryPwd;
  192. }
  193. if (queryPasswd != null) {
  194. $result.queryPasswd = queryPasswd;
  195. }
  196. return $result;
  197. }
  198. ToMatchRegusterEditRequest._() : super();
  199. factory ToMatchRegusterEditRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  200. factory ToMatchRegusterEditRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  201. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterEditRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  202. ..a<$core.int>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.O3)
  203. ..aOS(2, _omitFieldNames ? '' : 'regName', protoName: 'regName')
  204. ..aOM<$2.Timestamp>(3, _omitFieldNames ? '' : 'startAt', subBuilder: $2.Timestamp.create)
  205. ..aOM<$2.Timestamp>(4, _omitFieldNames ? '' : 'stopAt', subBuilder: $2.Timestamp.create)
  206. ..aOB(5, _omitFieldNames ? '' : 'isQueryPwd', protoName: 'isQueryPwd')
  207. ..aOS(6, _omitFieldNames ? '' : 'queryPasswd', protoName: 'queryPasswd')
  208. ..hasRequiredFields = false
  209. ;
  210. @$core.Deprecated(
  211. 'Using this can add significant overhead to your binary. '
  212. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  213. 'Will be removed in next major version')
  214. ToMatchRegusterEditRequest clone() => ToMatchRegusterEditRequest()..mergeFromMessage(this);
  215. @$core.Deprecated(
  216. 'Using this can add significant overhead to your binary. '
  217. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  218. 'Will be removed in next major version')
  219. ToMatchRegusterEditRequest copyWith(void Function(ToMatchRegusterEditRequest) updates) => super.copyWith((message) => updates(message as ToMatchRegusterEditRequest)) as ToMatchRegusterEditRequest;
  220. $pb.BuilderInfo get info_ => _i;
  221. @$core.pragma('dart2js:noInline')
  222. static ToMatchRegusterEditRequest create() => ToMatchRegusterEditRequest._();
  223. ToMatchRegusterEditRequest createEmptyInstance() => create();
  224. static $pb.PbList<ToMatchRegusterEditRequest> createRepeated() => $pb.PbList<ToMatchRegusterEditRequest>();
  225. @$core.pragma('dart2js:noInline')
  226. static ToMatchRegusterEditRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterEditRequest>(create);
  227. static ToMatchRegusterEditRequest? _defaultInstance;
  228. @$pb.TagNumber(1)
  229. $core.int get id => $_getIZ(0);
  230. @$pb.TagNumber(1)
  231. set id($core.int v) { $_setSignedInt32(0, v); }
  232. @$pb.TagNumber(1)
  233. $core.bool hasId() => $_has(0);
  234. @$pb.TagNumber(1)
  235. void clearId() => clearField(1);
  236. @$pb.TagNumber(2)
  237. $core.String get regName => $_getSZ(1);
  238. @$pb.TagNumber(2)
  239. set regName($core.String v) { $_setString(1, v); }
  240. @$pb.TagNumber(2)
  241. $core.bool hasRegName() => $_has(1);
  242. @$pb.TagNumber(2)
  243. void clearRegName() => clearField(2);
  244. @$pb.TagNumber(3)
  245. $2.Timestamp get startAt => $_getN(2);
  246. @$pb.TagNumber(3)
  247. set startAt($2.Timestamp v) { setField(3, v); }
  248. @$pb.TagNumber(3)
  249. $core.bool hasStartAt() => $_has(2);
  250. @$pb.TagNumber(3)
  251. void clearStartAt() => clearField(3);
  252. @$pb.TagNumber(3)
  253. $2.Timestamp ensureStartAt() => $_ensure(2);
  254. @$pb.TagNumber(4)
  255. $2.Timestamp get stopAt => $_getN(3);
  256. @$pb.TagNumber(4)
  257. set stopAt($2.Timestamp v) { setField(4, v); }
  258. @$pb.TagNumber(4)
  259. $core.bool hasStopAt() => $_has(3);
  260. @$pb.TagNumber(4)
  261. void clearStopAt() => clearField(4);
  262. @$pb.TagNumber(4)
  263. $2.Timestamp ensureStopAt() => $_ensure(3);
  264. /// int32 actId = 5; //选择活动id
  265. @$pb.TagNumber(5)
  266. $core.bool get isQueryPwd => $_getBF(4);
  267. @$pb.TagNumber(5)
  268. set isQueryPwd($core.bool v) { $_setBool(4, v); }
  269. @$pb.TagNumber(5)
  270. $core.bool hasIsQueryPwd() => $_has(4);
  271. @$pb.TagNumber(5)
  272. void clearIsQueryPwd() => clearField(5);
  273. @$pb.TagNumber(6)
  274. $core.String get queryPasswd => $_getSZ(5);
  275. @$pb.TagNumber(6)
  276. set queryPasswd($core.String v) { $_setString(5, v); }
  277. @$pb.TagNumber(6)
  278. $core.bool hasQueryPasswd() => $_has(5);
  279. @$pb.TagNumber(6)
  280. void clearQueryPasswd() => clearField(6);
  281. }
  282. class ToCourseListReply extends $pb.GeneratedMessage {
  283. factory ToCourseListReply({
  284. $core.Iterable<$0.CourseBase>? list,
  285. }) {
  286. final $result = create();
  287. if (list != null) {
  288. $result.list.addAll(list);
  289. }
  290. return $result;
  291. }
  292. ToCourseListReply._() : super();
  293. factory ToCourseListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  294. factory ToCourseListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  295. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToCourseListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  296. ..pc<$0.CourseBase>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: $0.CourseBase.create)
  297. ..hasRequiredFields = false
  298. ;
  299. @$core.Deprecated(
  300. 'Using this can add significant overhead to your binary. '
  301. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  302. 'Will be removed in next major version')
  303. ToCourseListReply clone() => ToCourseListReply()..mergeFromMessage(this);
  304. @$core.Deprecated(
  305. 'Using this can add significant overhead to your binary. '
  306. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  307. 'Will be removed in next major version')
  308. ToCourseListReply copyWith(void Function(ToCourseListReply) updates) => super.copyWith((message) => updates(message as ToCourseListReply)) as ToCourseListReply;
  309. $pb.BuilderInfo get info_ => _i;
  310. @$core.pragma('dart2js:noInline')
  311. static ToCourseListReply create() => ToCourseListReply._();
  312. ToCourseListReply createEmptyInstance() => create();
  313. static $pb.PbList<ToCourseListReply> createRepeated() => $pb.PbList<ToCourseListReply>();
  314. @$core.pragma('dart2js:noInline')
  315. static ToCourseListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToCourseListReply>(create);
  316. static ToCourseListReply? _defaultInstance;
  317. @$pb.TagNumber(1)
  318. $core.List<$0.CourseBase> get list => $_getList(0);
  319. }
  320. class ToMatchRegusterListRequest extends $pb.GeneratedMessage {
  321. factory ToMatchRegusterListRequest({
  322. $core.int? mapId,
  323. $fixnum.Int64? startSecond,
  324. }) {
  325. final $result = create();
  326. if (mapId != null) {
  327. $result.mapId = mapId;
  328. }
  329. if (startSecond != null) {
  330. $result.startSecond = startSecond;
  331. }
  332. return $result;
  333. }
  334. ToMatchRegusterListRequest._() : super();
  335. factory ToMatchRegusterListRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  336. factory ToMatchRegusterListRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  337. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterListRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  338. ..a<$core.int>(1, _omitFieldNames ? '' : 'mapId', $pb.PbFieldType.O3, protoName: 'mapId')
  339. ..aInt64(2, _omitFieldNames ? '' : 'startSecond', protoName: 'startSecond')
  340. ..hasRequiredFields = false
  341. ;
  342. @$core.Deprecated(
  343. 'Using this can add significant overhead to your binary. '
  344. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  345. 'Will be removed in next major version')
  346. ToMatchRegusterListRequest clone() => ToMatchRegusterListRequest()..mergeFromMessage(this);
  347. @$core.Deprecated(
  348. 'Using this can add significant overhead to your binary. '
  349. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  350. 'Will be removed in next major version')
  351. ToMatchRegusterListRequest copyWith(void Function(ToMatchRegusterListRequest) updates) => super.copyWith((message) => updates(message as ToMatchRegusterListRequest)) as ToMatchRegusterListRequest;
  352. $pb.BuilderInfo get info_ => _i;
  353. @$core.pragma('dart2js:noInline')
  354. static ToMatchRegusterListRequest create() => ToMatchRegusterListRequest._();
  355. ToMatchRegusterListRequest createEmptyInstance() => create();
  356. static $pb.PbList<ToMatchRegusterListRequest> createRepeated() => $pb.PbList<ToMatchRegusterListRequest>();
  357. @$core.pragma('dart2js:noInline')
  358. static ToMatchRegusterListRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterListRequest>(create);
  359. static ToMatchRegusterListRequest? _defaultInstance;
  360. @$pb.TagNumber(1)
  361. $core.int get mapId => $_getIZ(0);
  362. @$pb.TagNumber(1)
  363. set mapId($core.int v) { $_setSignedInt32(0, v); }
  364. @$pb.TagNumber(1)
  365. $core.bool hasMapId() => $_has(0);
  366. @$pb.TagNumber(1)
  367. void clearMapId() => clearField(1);
  368. @$pb.TagNumber(2)
  369. $fixnum.Int64 get startSecond => $_getI64(1);
  370. @$pb.TagNumber(2)
  371. set startSecond($fixnum.Int64 v) { $_setInt64(1, v); }
  372. @$pb.TagNumber(2)
  373. $core.bool hasStartSecond() => $_has(1);
  374. @$pb.TagNumber(2)
  375. void clearStartSecond() => clearField(2);
  376. }
  377. class ToMatchRegusterListReply extends $pb.GeneratedMessage {
  378. factory ToMatchRegusterListReply({
  379. $core.Iterable<MatchRegusterInfo>? list,
  380. }) {
  381. final $result = create();
  382. if (list != null) {
  383. $result.list.addAll(list);
  384. }
  385. return $result;
  386. }
  387. ToMatchRegusterListReply._() : super();
  388. factory ToMatchRegusterListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  389. factory ToMatchRegusterListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  390. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  391. ..pc<MatchRegusterInfo>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: MatchRegusterInfo.create)
  392. ..hasRequiredFields = false
  393. ;
  394. @$core.Deprecated(
  395. 'Using this can add significant overhead to your binary. '
  396. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  397. 'Will be removed in next major version')
  398. ToMatchRegusterListReply clone() => ToMatchRegusterListReply()..mergeFromMessage(this);
  399. @$core.Deprecated(
  400. 'Using this can add significant overhead to your binary. '
  401. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  402. 'Will be removed in next major version')
  403. ToMatchRegusterListReply copyWith(void Function(ToMatchRegusterListReply) updates) => super.copyWith((message) => updates(message as ToMatchRegusterListReply)) as ToMatchRegusterListReply;
  404. $pb.BuilderInfo get info_ => _i;
  405. @$core.pragma('dart2js:noInline')
  406. static ToMatchRegusterListReply create() => ToMatchRegusterListReply._();
  407. ToMatchRegusterListReply createEmptyInstance() => create();
  408. static $pb.PbList<ToMatchRegusterListReply> createRepeated() => $pb.PbList<ToMatchRegusterListReply>();
  409. @$core.pragma('dart2js:noInline')
  410. static ToMatchRegusterListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterListReply>(create);
  411. static ToMatchRegusterListReply? _defaultInstance;
  412. @$pb.TagNumber(1)
  413. $core.List<MatchRegusterInfo> get list => $_getList(0);
  414. }
  415. class MatchRegusterInfo extends $pb.GeneratedMessage {
  416. factory MatchRegusterInfo({
  417. $core.int? id,
  418. $core.String? name,
  419. $core.int? totalUserNum,
  420. $core.String? qrCode,
  421. $core.bool? isAllowEdit,
  422. $core.bool? isAllowDel,
  423. $core.Iterable<ToChackInsInfo>? userList,
  424. $core.int? state,
  425. $core.String? matchBt,
  426. $core.String? matchEt,
  427. }) {
  428. final $result = create();
  429. if (id != null) {
  430. $result.id = id;
  431. }
  432. if (name != null) {
  433. $result.name = name;
  434. }
  435. if (totalUserNum != null) {
  436. $result.totalUserNum = totalUserNum;
  437. }
  438. if (qrCode != null) {
  439. $result.qrCode = qrCode;
  440. }
  441. if (isAllowEdit != null) {
  442. $result.isAllowEdit = isAllowEdit;
  443. }
  444. if (isAllowDel != null) {
  445. $result.isAllowDel = isAllowDel;
  446. }
  447. if (userList != null) {
  448. $result.userList.addAll(userList);
  449. }
  450. if (state != null) {
  451. $result.state = state;
  452. }
  453. if (matchBt != null) {
  454. $result.matchBt = matchBt;
  455. }
  456. if (matchEt != null) {
  457. $result.matchEt = matchEt;
  458. }
  459. return $result;
  460. }
  461. MatchRegusterInfo._() : super();
  462. factory MatchRegusterInfo.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  463. factory MatchRegusterInfo.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  464. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MatchRegusterInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  465. ..a<$core.int>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.O3)
  466. ..aOS(2, _omitFieldNames ? '' : 'name')
  467. ..a<$core.int>(3, _omitFieldNames ? '' : 'totalUserNum', $pb.PbFieldType.O3, protoName: 'totalUserNum')
  468. ..aOS(4, _omitFieldNames ? '' : 'qrCode', protoName: 'qrCode')
  469. ..aOB(5, _omitFieldNames ? '' : 'isAllowEdit', protoName: 'isAllowEdit')
  470. ..aOB(6, _omitFieldNames ? '' : 'isAllowDel', protoName: 'isAllowDel')
  471. ..pc<ToChackInsInfo>(7, _omitFieldNames ? '' : 'userList', $pb.PbFieldType.PM, protoName: 'userList', subBuilder: ToChackInsInfo.create)
  472. ..a<$core.int>(8, _omitFieldNames ? '' : 'state', $pb.PbFieldType.O3)
  473. ..aOS(9, _omitFieldNames ? '' : 'MatchBt', protoName: 'MatchBt')
  474. ..aOS(10, _omitFieldNames ? '' : 'MatchEt', protoName: 'MatchEt')
  475. ..hasRequiredFields = false
  476. ;
  477. @$core.Deprecated(
  478. 'Using this can add significant overhead to your binary. '
  479. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  480. 'Will be removed in next major version')
  481. MatchRegusterInfo clone() => MatchRegusterInfo()..mergeFromMessage(this);
  482. @$core.Deprecated(
  483. 'Using this can add significant overhead to your binary. '
  484. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  485. 'Will be removed in next major version')
  486. MatchRegusterInfo copyWith(void Function(MatchRegusterInfo) updates) => super.copyWith((message) => updates(message as MatchRegusterInfo)) as MatchRegusterInfo;
  487. $pb.BuilderInfo get info_ => _i;
  488. @$core.pragma('dart2js:noInline')
  489. static MatchRegusterInfo create() => MatchRegusterInfo._();
  490. MatchRegusterInfo createEmptyInstance() => create();
  491. static $pb.PbList<MatchRegusterInfo> createRepeated() => $pb.PbList<MatchRegusterInfo>();
  492. @$core.pragma('dart2js:noInline')
  493. static MatchRegusterInfo getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<MatchRegusterInfo>(create);
  494. static MatchRegusterInfo? _defaultInstance;
  495. @$pb.TagNumber(1)
  496. $core.int get id => $_getIZ(0);
  497. @$pb.TagNumber(1)
  498. set id($core.int v) { $_setSignedInt32(0, v); }
  499. @$pb.TagNumber(1)
  500. $core.bool hasId() => $_has(0);
  501. @$pb.TagNumber(1)
  502. void clearId() => clearField(1);
  503. @$pb.TagNumber(2)
  504. $core.String get name => $_getSZ(1);
  505. @$pb.TagNumber(2)
  506. set name($core.String v) { $_setString(1, v); }
  507. @$pb.TagNumber(2)
  508. $core.bool hasName() => $_has(1);
  509. @$pb.TagNumber(2)
  510. void clearName() => clearField(2);
  511. @$pb.TagNumber(3)
  512. $core.int get totalUserNum => $_getIZ(2);
  513. @$pb.TagNumber(3)
  514. set totalUserNum($core.int v) { $_setSignedInt32(2, v); }
  515. @$pb.TagNumber(3)
  516. $core.bool hasTotalUserNum() => $_has(2);
  517. @$pb.TagNumber(3)
  518. void clearTotalUserNum() => clearField(3);
  519. @$pb.TagNumber(4)
  520. $core.String get qrCode => $_getSZ(3);
  521. @$pb.TagNumber(4)
  522. set qrCode($core.String v) { $_setString(3, v); }
  523. @$pb.TagNumber(4)
  524. $core.bool hasQrCode() => $_has(3);
  525. @$pb.TagNumber(4)
  526. void clearQrCode() => clearField(4);
  527. @$pb.TagNumber(5)
  528. $core.bool get isAllowEdit => $_getBF(4);
  529. @$pb.TagNumber(5)
  530. set isAllowEdit($core.bool v) { $_setBool(4, v); }
  531. @$pb.TagNumber(5)
  532. $core.bool hasIsAllowEdit() => $_has(4);
  533. @$pb.TagNumber(5)
  534. void clearIsAllowEdit() => clearField(5);
  535. @$pb.TagNumber(6)
  536. $core.bool get isAllowDel => $_getBF(5);
  537. @$pb.TagNumber(6)
  538. set isAllowDel($core.bool v) { $_setBool(5, v); }
  539. @$pb.TagNumber(6)
  540. $core.bool hasIsAllowDel() => $_has(5);
  541. @$pb.TagNumber(6)
  542. void clearIsAllowDel() => clearField(6);
  543. @$pb.TagNumber(7)
  544. $core.List<ToChackInsInfo> get userList => $_getList(6);
  545. @$pb.TagNumber(8)
  546. $core.int get state => $_getIZ(7);
  547. @$pb.TagNumber(8)
  548. set state($core.int v) { $_setSignedInt32(7, v); }
  549. @$pb.TagNumber(8)
  550. $core.bool hasState() => $_has(7);
  551. @$pb.TagNumber(8)
  552. void clearState() => clearField(8);
  553. @$pb.TagNumber(9)
  554. $core.String get matchBt => $_getSZ(8);
  555. @$pb.TagNumber(9)
  556. set matchBt($core.String v) { $_setString(8, v); }
  557. @$pb.TagNumber(9)
  558. $core.bool hasMatchBt() => $_has(8);
  559. @$pb.TagNumber(9)
  560. void clearMatchBt() => clearField(9);
  561. @$pb.TagNumber(10)
  562. $core.String get matchEt => $_getSZ(9);
  563. @$pb.TagNumber(10)
  564. set matchEt($core.String v) { $_setString(9, v); }
  565. @$pb.TagNumber(10)
  566. $core.bool hasMatchEt() => $_has(9);
  567. @$pb.TagNumber(10)
  568. void clearMatchEt() => clearField(10);
  569. }
  570. ///
  571. /// 场控段赛事控制逻辑:
  572. /// 1.如果cId等于0,isStart等于false,表示未分发线路,路线显示分发按钮,状态显示未分发;
  573. /// 2.如果cId大于0,isStart等于false,表示已分发线路但管理员未开始,状态栏是开始按钮;
  574. /// 3.如果cId大于0,isStart等于true,mState等于0(玩家端未开始)或1(玩家端已开始但没打开始点),表示已分发线路且管理员已开始但用户没有打开始点,状态显示已开始;
  575. /// 4.如果cId大于0,isStart等于true,mState等于2,表示已分发线路且管理员已开始且用户已打开始点,状态显示已开始,操作显示结束按钮;
  576. /// 5.如果cId大于0,isStart等于true,mState大于等于3,表示已分发线路且管理员已开始且用户已结束比赛,状态显示已结束,操作显示重赛按钮
  577. /// 6:点击重赛后,跟1情况一样
  578. /// 7:是否显示删除按钮由punchCpNum字段控制,punchCpNum等于0显示删除按钮,大于0显示其他按钮;
  579. class ToChackInsInfo extends $pb.GeneratedMessage {
  580. factory ToChackInsInfo({
  581. $core.int? mciId,
  582. $core.int? oId,
  583. $core.String? nickname,
  584. $core.String? phone,
  585. $core.String? chackInsTime,
  586. $core.bool? isAllowDel,
  587. $core.String? cName,
  588. $core.int? cId,
  589. $core.String? hrSn,
  590. $0.CState? cState,
  591. }) {
  592. final $result = create();
  593. if (mciId != null) {
  594. $result.mciId = mciId;
  595. }
  596. if (oId != null) {
  597. $result.oId = oId;
  598. }
  599. if (nickname != null) {
  600. $result.nickname = nickname;
  601. }
  602. if (phone != null) {
  603. $result.phone = phone;
  604. }
  605. if (chackInsTime != null) {
  606. $result.chackInsTime = chackInsTime;
  607. }
  608. if (isAllowDel != null) {
  609. $result.isAllowDel = isAllowDel;
  610. }
  611. if (cName != null) {
  612. $result.cName = cName;
  613. }
  614. if (cId != null) {
  615. $result.cId = cId;
  616. }
  617. if (hrSn != null) {
  618. $result.hrSn = hrSn;
  619. }
  620. if (cState != null) {
  621. $result.cState = cState;
  622. }
  623. return $result;
  624. }
  625. ToChackInsInfo._() : super();
  626. factory ToChackInsInfo.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  627. factory ToChackInsInfo.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  628. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToChackInsInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  629. ..a<$core.int>(1, _omitFieldNames ? '' : 'mciId', $pb.PbFieldType.O3, protoName: 'mciId')
  630. ..a<$core.int>(2, _omitFieldNames ? '' : 'oId', $pb.PbFieldType.O3, protoName: 'oId')
  631. ..aOS(3, _omitFieldNames ? '' : 'nickname')
  632. ..aOS(4, _omitFieldNames ? '' : 'phone')
  633. ..aOS(5, _omitFieldNames ? '' : 'chackInsTime', protoName: 'chackInsTime')
  634. ..aOB(6, _omitFieldNames ? '' : 'isAllowDel', protoName: 'isAllowDel')
  635. ..aOS(7, _omitFieldNames ? '' : 'cName', protoName: 'cName')
  636. ..a<$core.int>(8, _omitFieldNames ? '' : 'cId', $pb.PbFieldType.O3, protoName: 'cId')
  637. ..aOS(9, _omitFieldNames ? '' : 'hrSn', protoName: 'hrSn')
  638. ..e<$0.CState>(10, _omitFieldNames ? '' : 'cState', $pb.PbFieldType.OE, protoName: 'cState', defaultOrMaker: $0.CState.ToUnSend, valueOf: $0.CState.valueOf, enumValues: $0.CState.values)
  639. ..hasRequiredFields = false
  640. ;
  641. @$core.Deprecated(
  642. 'Using this can add significant overhead to your binary. '
  643. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  644. 'Will be removed in next major version')
  645. ToChackInsInfo clone() => ToChackInsInfo()..mergeFromMessage(this);
  646. @$core.Deprecated(
  647. 'Using this can add significant overhead to your binary. '
  648. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  649. 'Will be removed in next major version')
  650. ToChackInsInfo copyWith(void Function(ToChackInsInfo) updates) => super.copyWith((message) => updates(message as ToChackInsInfo)) as ToChackInsInfo;
  651. $pb.BuilderInfo get info_ => _i;
  652. @$core.pragma('dart2js:noInline')
  653. static ToChackInsInfo create() => ToChackInsInfo._();
  654. ToChackInsInfo createEmptyInstance() => create();
  655. static $pb.PbList<ToChackInsInfo> createRepeated() => $pb.PbList<ToChackInsInfo>();
  656. @$core.pragma('dart2js:noInline')
  657. static ToChackInsInfo getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToChackInsInfo>(create);
  658. static ToChackInsInfo? _defaultInstance;
  659. @$pb.TagNumber(1)
  660. $core.int get mciId => $_getIZ(0);
  661. @$pb.TagNumber(1)
  662. set mciId($core.int v) { $_setSignedInt32(0, v); }
  663. @$pb.TagNumber(1)
  664. $core.bool hasMciId() => $_has(0);
  665. @$pb.TagNumber(1)
  666. void clearMciId() => clearField(1);
  667. @$pb.TagNumber(2)
  668. $core.int get oId => $_getIZ(1);
  669. @$pb.TagNumber(2)
  670. set oId($core.int v) { $_setSignedInt32(1, v); }
  671. @$pb.TagNumber(2)
  672. $core.bool hasOId() => $_has(1);
  673. @$pb.TagNumber(2)
  674. void clearOId() => clearField(2);
  675. @$pb.TagNumber(3)
  676. $core.String get nickname => $_getSZ(2);
  677. @$pb.TagNumber(3)
  678. set nickname($core.String v) { $_setString(2, v); }
  679. @$pb.TagNumber(3)
  680. $core.bool hasNickname() => $_has(2);
  681. @$pb.TagNumber(3)
  682. void clearNickname() => clearField(3);
  683. @$pb.TagNumber(4)
  684. $core.String get phone => $_getSZ(3);
  685. @$pb.TagNumber(4)
  686. set phone($core.String v) { $_setString(3, v); }
  687. @$pb.TagNumber(4)
  688. $core.bool hasPhone() => $_has(3);
  689. @$pb.TagNumber(4)
  690. void clearPhone() => clearField(4);
  691. @$pb.TagNumber(5)
  692. $core.String get chackInsTime => $_getSZ(4);
  693. @$pb.TagNumber(5)
  694. set chackInsTime($core.String v) { $_setString(4, v); }
  695. @$pb.TagNumber(5)
  696. $core.bool hasChackInsTime() => $_has(4);
  697. @$pb.TagNumber(5)
  698. void clearChackInsTime() => clearField(5);
  699. @$pb.TagNumber(6)
  700. $core.bool get isAllowDel => $_getBF(5);
  701. @$pb.TagNumber(6)
  702. set isAllowDel($core.bool v) { $_setBool(5, v); }
  703. @$pb.TagNumber(6)
  704. $core.bool hasIsAllowDel() => $_has(5);
  705. @$pb.TagNumber(6)
  706. void clearIsAllowDel() => clearField(6);
  707. @$pb.TagNumber(7)
  708. $core.String get cName => $_getSZ(6);
  709. @$pb.TagNumber(7)
  710. set cName($core.String v) { $_setString(6, v); }
  711. @$pb.TagNumber(7)
  712. $core.bool hasCName() => $_has(6);
  713. @$pb.TagNumber(7)
  714. void clearCName() => clearField(7);
  715. @$pb.TagNumber(8)
  716. $core.int get cId => $_getIZ(7);
  717. @$pb.TagNumber(8)
  718. set cId($core.int v) { $_setSignedInt32(7, v); }
  719. @$pb.TagNumber(8)
  720. $core.bool hasCId() => $_has(7);
  721. @$pb.TagNumber(8)
  722. void clearCId() => clearField(8);
  723. /// int32 mState =8;//用户状态(不是场控端发送状态):0:等待出发 1: 参加比赛,没打第一点 2:比赛进行中 3:完成比赛 4:超时完成比赛 5:未完成-已过强制关门时间,系统强制退赛 6:用户主动退赛
  724. /// bool isStart =9;//是否出发
  725. /// int32 punchCpNum =10;//打开始点次数
  726. @$pb.TagNumber(9)
  727. $core.String get hrSn => $_getSZ(8);
  728. @$pb.TagNumber(9)
  729. set hrSn($core.String v) { $_setString(8, v); }
  730. @$pb.TagNumber(9)
  731. $core.bool hasHrSn() => $_has(8);
  732. @$pb.TagNumber(9)
  733. void clearHrSn() => clearField(9);
  734. @$pb.TagNumber(10)
  735. $0.CState get cState => $_getN(9);
  736. @$pb.TagNumber(10)
  737. set cState($0.CState v) { setField(10, v); }
  738. @$pb.TagNumber(10)
  739. $core.bool hasCState() => $_has(9);
  740. @$pb.TagNumber(10)
  741. void clearCState() => clearField(10);
  742. }
  743. class ToMatchRegusterAddRequest extends $pb.GeneratedMessage {
  744. factory ToMatchRegusterAddRequest({
  745. $core.String? regName,
  746. $2.Timestamp? startAt,
  747. $2.Timestamp? stopAt,
  748. $core.int? actId,
  749. $core.bool? isQueryPwd,
  750. $core.String? queryPasswd,
  751. }) {
  752. final $result = create();
  753. if (regName != null) {
  754. $result.regName = regName;
  755. }
  756. if (startAt != null) {
  757. $result.startAt = startAt;
  758. }
  759. if (stopAt != null) {
  760. $result.stopAt = stopAt;
  761. }
  762. if (actId != null) {
  763. $result.actId = actId;
  764. }
  765. if (isQueryPwd != null) {
  766. $result.isQueryPwd = isQueryPwd;
  767. }
  768. if (queryPasswd != null) {
  769. $result.queryPasswd = queryPasswd;
  770. }
  771. return $result;
  772. }
  773. ToMatchRegusterAddRequest._() : super();
  774. factory ToMatchRegusterAddRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  775. factory ToMatchRegusterAddRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  776. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterAddRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  777. ..aOS(1, _omitFieldNames ? '' : 'regName', protoName: 'regName')
  778. ..aOM<$2.Timestamp>(2, _omitFieldNames ? '' : 'startAt', subBuilder: $2.Timestamp.create)
  779. ..aOM<$2.Timestamp>(3, _omitFieldNames ? '' : 'stopAt', subBuilder: $2.Timestamp.create)
  780. ..a<$core.int>(4, _omitFieldNames ? '' : 'actId', $pb.PbFieldType.O3, protoName: 'actId')
  781. ..aOB(5, _omitFieldNames ? '' : 'isQueryPwd', protoName: 'isQueryPwd')
  782. ..aOS(6, _omitFieldNames ? '' : 'queryPasswd', protoName: 'queryPasswd')
  783. ..hasRequiredFields = false
  784. ;
  785. @$core.Deprecated(
  786. 'Using this can add significant overhead to your binary. '
  787. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  788. 'Will be removed in next major version')
  789. ToMatchRegusterAddRequest clone() => ToMatchRegusterAddRequest()..mergeFromMessage(this);
  790. @$core.Deprecated(
  791. 'Using this can add significant overhead to your binary. '
  792. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  793. 'Will be removed in next major version')
  794. ToMatchRegusterAddRequest copyWith(void Function(ToMatchRegusterAddRequest) updates) => super.copyWith((message) => updates(message as ToMatchRegusterAddRequest)) as ToMatchRegusterAddRequest;
  795. $pb.BuilderInfo get info_ => _i;
  796. @$core.pragma('dart2js:noInline')
  797. static ToMatchRegusterAddRequest create() => ToMatchRegusterAddRequest._();
  798. ToMatchRegusterAddRequest createEmptyInstance() => create();
  799. static $pb.PbList<ToMatchRegusterAddRequest> createRepeated() => $pb.PbList<ToMatchRegusterAddRequest>();
  800. @$core.pragma('dart2js:noInline')
  801. static ToMatchRegusterAddRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterAddRequest>(create);
  802. static ToMatchRegusterAddRequest? _defaultInstance;
  803. @$pb.TagNumber(1)
  804. $core.String get regName => $_getSZ(0);
  805. @$pb.TagNumber(1)
  806. set regName($core.String v) { $_setString(0, v); }
  807. @$pb.TagNumber(1)
  808. $core.bool hasRegName() => $_has(0);
  809. @$pb.TagNumber(1)
  810. void clearRegName() => clearField(1);
  811. @$pb.TagNumber(2)
  812. $2.Timestamp get startAt => $_getN(1);
  813. @$pb.TagNumber(2)
  814. set startAt($2.Timestamp v) { setField(2, v); }
  815. @$pb.TagNumber(2)
  816. $core.bool hasStartAt() => $_has(1);
  817. @$pb.TagNumber(2)
  818. void clearStartAt() => clearField(2);
  819. @$pb.TagNumber(2)
  820. $2.Timestamp ensureStartAt() => $_ensure(1);
  821. @$pb.TagNumber(3)
  822. $2.Timestamp get stopAt => $_getN(2);
  823. @$pb.TagNumber(3)
  824. set stopAt($2.Timestamp v) { setField(3, v); }
  825. @$pb.TagNumber(3)
  826. $core.bool hasStopAt() => $_has(2);
  827. @$pb.TagNumber(3)
  828. void clearStopAt() => clearField(3);
  829. @$pb.TagNumber(3)
  830. $2.Timestamp ensureStopAt() => $_ensure(2);
  831. @$pb.TagNumber(4)
  832. $core.int get actId => $_getIZ(3);
  833. @$pb.TagNumber(4)
  834. set actId($core.int v) { $_setSignedInt32(3, v); }
  835. @$pb.TagNumber(4)
  836. $core.bool hasActId() => $_has(3);
  837. @$pb.TagNumber(4)
  838. void clearActId() => clearField(4);
  839. @$pb.TagNumber(5)
  840. $core.bool get isQueryPwd => $_getBF(4);
  841. @$pb.TagNumber(5)
  842. set isQueryPwd($core.bool v) { $_setBool(4, v); }
  843. @$pb.TagNumber(5)
  844. $core.bool hasIsQueryPwd() => $_has(4);
  845. @$pb.TagNumber(5)
  846. void clearIsQueryPwd() => clearField(5);
  847. @$pb.TagNumber(6)
  848. $core.String get queryPasswd => $_getSZ(5);
  849. @$pb.TagNumber(6)
  850. set queryPasswd($core.String v) { $_setString(5, v); }
  851. @$pb.TagNumber(6)
  852. $core.bool hasQueryPasswd() => $_has(5);
  853. @$pb.TagNumber(6)
  854. void clearQueryPasswd() => clearField(6);
  855. }
  856. const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
  857. const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');