track_offical.pb.dart 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684
  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 'google/protobuf/timestamp.pb.dart' as $2;
  15. class ToMatchRegusterEditRequest extends $pb.GeneratedMessage {
  16. factory ToMatchRegusterEditRequest({
  17. $core.int? id,
  18. $core.String? regName,
  19. $2.Timestamp? startAt,
  20. $2.Timestamp? stopAt,
  21. $core.int? actId,
  22. $core.bool? isQueryPwd,
  23. $core.String? queryPasswd,
  24. }) {
  25. final $result = create();
  26. if (id != null) {
  27. $result.id = id;
  28. }
  29. if (regName != null) {
  30. $result.regName = regName;
  31. }
  32. if (startAt != null) {
  33. $result.startAt = startAt;
  34. }
  35. if (stopAt != null) {
  36. $result.stopAt = stopAt;
  37. }
  38. if (actId != null) {
  39. $result.actId = actId;
  40. }
  41. if (isQueryPwd != null) {
  42. $result.isQueryPwd = isQueryPwd;
  43. }
  44. if (queryPasswd != null) {
  45. $result.queryPasswd = queryPasswd;
  46. }
  47. return $result;
  48. }
  49. ToMatchRegusterEditRequest._() : super();
  50. factory ToMatchRegusterEditRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  51. factory ToMatchRegusterEditRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  52. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterEditRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  53. ..a<$core.int>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.O3)
  54. ..aOS(2, _omitFieldNames ? '' : 'regName', protoName: 'regName')
  55. ..aOM<$2.Timestamp>(3, _omitFieldNames ? '' : 'startAt', subBuilder: $2.Timestamp.create)
  56. ..aOM<$2.Timestamp>(4, _omitFieldNames ? '' : 'stopAt', subBuilder: $2.Timestamp.create)
  57. ..a<$core.int>(5, _omitFieldNames ? '' : 'actId', $pb.PbFieldType.O3, protoName: 'actId')
  58. ..aOB(6, _omitFieldNames ? '' : 'isQueryPwd', protoName: 'isQueryPwd')
  59. ..aOS(7, _omitFieldNames ? '' : 'queryPasswd', protoName: 'queryPasswd')
  60. ..hasRequiredFields = false
  61. ;
  62. @$core.Deprecated(
  63. 'Using this can add significant overhead to your binary. '
  64. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  65. 'Will be removed in next major version')
  66. ToMatchRegusterEditRequest clone() => ToMatchRegusterEditRequest()..mergeFromMessage(this);
  67. @$core.Deprecated(
  68. 'Using this can add significant overhead to your binary. '
  69. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  70. 'Will be removed in next major version')
  71. ToMatchRegusterEditRequest copyWith(void Function(ToMatchRegusterEditRequest) updates) => super.copyWith((message) => updates(message as ToMatchRegusterEditRequest)) as ToMatchRegusterEditRequest;
  72. $pb.BuilderInfo get info_ => _i;
  73. @$core.pragma('dart2js:noInline')
  74. static ToMatchRegusterEditRequest create() => ToMatchRegusterEditRequest._();
  75. ToMatchRegusterEditRequest createEmptyInstance() => create();
  76. static $pb.PbList<ToMatchRegusterEditRequest> createRepeated() => $pb.PbList<ToMatchRegusterEditRequest>();
  77. @$core.pragma('dart2js:noInline')
  78. static ToMatchRegusterEditRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterEditRequest>(create);
  79. static ToMatchRegusterEditRequest? _defaultInstance;
  80. @$pb.TagNumber(1)
  81. $core.int get id => $_getIZ(0);
  82. @$pb.TagNumber(1)
  83. set id($core.int v) { $_setSignedInt32(0, v); }
  84. @$pb.TagNumber(1)
  85. $core.bool hasId() => $_has(0);
  86. @$pb.TagNumber(1)
  87. void clearId() => clearField(1);
  88. @$pb.TagNumber(2)
  89. $core.String get regName => $_getSZ(1);
  90. @$pb.TagNumber(2)
  91. set regName($core.String v) { $_setString(1, v); }
  92. @$pb.TagNumber(2)
  93. $core.bool hasRegName() => $_has(1);
  94. @$pb.TagNumber(2)
  95. void clearRegName() => clearField(2);
  96. @$pb.TagNumber(3)
  97. $2.Timestamp get startAt => $_getN(2);
  98. @$pb.TagNumber(3)
  99. set startAt($2.Timestamp v) { setField(3, v); }
  100. @$pb.TagNumber(3)
  101. $core.bool hasStartAt() => $_has(2);
  102. @$pb.TagNumber(3)
  103. void clearStartAt() => clearField(3);
  104. @$pb.TagNumber(3)
  105. $2.Timestamp ensureStartAt() => $_ensure(2);
  106. @$pb.TagNumber(4)
  107. $2.Timestamp get stopAt => $_getN(3);
  108. @$pb.TagNumber(4)
  109. set stopAt($2.Timestamp v) { setField(4, v); }
  110. @$pb.TagNumber(4)
  111. $core.bool hasStopAt() => $_has(3);
  112. @$pb.TagNumber(4)
  113. void clearStopAt() => clearField(4);
  114. @$pb.TagNumber(4)
  115. $2.Timestamp ensureStopAt() => $_ensure(3);
  116. @$pb.TagNumber(5)
  117. $core.int get actId => $_getIZ(4);
  118. @$pb.TagNumber(5)
  119. set actId($core.int v) { $_setSignedInt32(4, v); }
  120. @$pb.TagNumber(5)
  121. $core.bool hasActId() => $_has(4);
  122. @$pb.TagNumber(5)
  123. void clearActId() => clearField(5);
  124. @$pb.TagNumber(6)
  125. $core.bool get isQueryPwd => $_getBF(5);
  126. @$pb.TagNumber(6)
  127. set isQueryPwd($core.bool v) { $_setBool(5, v); }
  128. @$pb.TagNumber(6)
  129. $core.bool hasIsQueryPwd() => $_has(5);
  130. @$pb.TagNumber(6)
  131. void clearIsQueryPwd() => clearField(6);
  132. @$pb.TagNumber(7)
  133. $core.String get queryPasswd => $_getSZ(6);
  134. @$pb.TagNumber(7)
  135. set queryPasswd($core.String v) { $_setString(6, v); }
  136. @$pb.TagNumber(7)
  137. $core.bool hasQueryPasswd() => $_has(6);
  138. @$pb.TagNumber(7)
  139. void clearQueryPasswd() => clearField(7);
  140. }
  141. class ToActivityListReply extends $pb.GeneratedMessage {
  142. factory ToActivityListReply({
  143. $core.Iterable<$0.ToActionBasicInfo>? list,
  144. }) {
  145. final $result = create();
  146. if (list != null) {
  147. $result.list.addAll(list);
  148. }
  149. return $result;
  150. }
  151. ToActivityListReply._() : super();
  152. factory ToActivityListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  153. factory ToActivityListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  154. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToActivityListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  155. ..pc<$0.ToActionBasicInfo>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: $0.ToActionBasicInfo.create)
  156. ..hasRequiredFields = false
  157. ;
  158. @$core.Deprecated(
  159. 'Using this can add significant overhead to your binary. '
  160. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  161. 'Will be removed in next major version')
  162. ToActivityListReply clone() => ToActivityListReply()..mergeFromMessage(this);
  163. @$core.Deprecated(
  164. 'Using this can add significant overhead to your binary. '
  165. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  166. 'Will be removed in next major version')
  167. ToActivityListReply copyWith(void Function(ToActivityListReply) updates) => super.copyWith((message) => updates(message as ToActivityListReply)) as ToActivityListReply;
  168. $pb.BuilderInfo get info_ => _i;
  169. @$core.pragma('dart2js:noInline')
  170. static ToActivityListReply create() => ToActivityListReply._();
  171. ToActivityListReply createEmptyInstance() => create();
  172. static $pb.PbList<ToActivityListReply> createRepeated() => $pb.PbList<ToActivityListReply>();
  173. @$core.pragma('dart2js:noInline')
  174. static ToActivityListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToActivityListReply>(create);
  175. static ToActivityListReply? _defaultInstance;
  176. @$pb.TagNumber(1)
  177. $core.List<$0.ToActionBasicInfo> get list => $_getList(0);
  178. }
  179. class ToMatchRegusterListRequest extends $pb.GeneratedMessage {
  180. factory ToMatchRegusterListRequest({
  181. $core.int? mapId,
  182. $fixnum.Int64? startSecond,
  183. }) {
  184. final $result = create();
  185. if (mapId != null) {
  186. $result.mapId = mapId;
  187. }
  188. if (startSecond != null) {
  189. $result.startSecond = startSecond;
  190. }
  191. return $result;
  192. }
  193. ToMatchRegusterListRequest._() : super();
  194. factory ToMatchRegusterListRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  195. factory ToMatchRegusterListRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  196. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterListRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  197. ..a<$core.int>(1, _omitFieldNames ? '' : 'mapId', $pb.PbFieldType.O3, protoName: 'mapId')
  198. ..aInt64(2, _omitFieldNames ? '' : 'startSecond', protoName: 'startSecond')
  199. ..hasRequiredFields = false
  200. ;
  201. @$core.Deprecated(
  202. 'Using this can add significant overhead to your binary. '
  203. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  204. 'Will be removed in next major version')
  205. ToMatchRegusterListRequest clone() => ToMatchRegusterListRequest()..mergeFromMessage(this);
  206. @$core.Deprecated(
  207. 'Using this can add significant overhead to your binary. '
  208. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  209. 'Will be removed in next major version')
  210. ToMatchRegusterListRequest copyWith(void Function(ToMatchRegusterListRequest) updates) => super.copyWith((message) => updates(message as ToMatchRegusterListRequest)) as ToMatchRegusterListRequest;
  211. $pb.BuilderInfo get info_ => _i;
  212. @$core.pragma('dart2js:noInline')
  213. static ToMatchRegusterListRequest create() => ToMatchRegusterListRequest._();
  214. ToMatchRegusterListRequest createEmptyInstance() => create();
  215. static $pb.PbList<ToMatchRegusterListRequest> createRepeated() => $pb.PbList<ToMatchRegusterListRequest>();
  216. @$core.pragma('dart2js:noInline')
  217. static ToMatchRegusterListRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterListRequest>(create);
  218. static ToMatchRegusterListRequest? _defaultInstance;
  219. @$pb.TagNumber(1)
  220. $core.int get mapId => $_getIZ(0);
  221. @$pb.TagNumber(1)
  222. set mapId($core.int v) { $_setSignedInt32(0, v); }
  223. @$pb.TagNumber(1)
  224. $core.bool hasMapId() => $_has(0);
  225. @$pb.TagNumber(1)
  226. void clearMapId() => clearField(1);
  227. @$pb.TagNumber(2)
  228. $fixnum.Int64 get startSecond => $_getI64(1);
  229. @$pb.TagNumber(2)
  230. set startSecond($fixnum.Int64 v) { $_setInt64(1, v); }
  231. @$pb.TagNumber(2)
  232. $core.bool hasStartSecond() => $_has(1);
  233. @$pb.TagNumber(2)
  234. void clearStartSecond() => clearField(2);
  235. }
  236. class ToMatchRegusterListReply extends $pb.GeneratedMessage {
  237. factory ToMatchRegusterListReply({
  238. $core.Iterable<MatchRegusterInfo>? list,
  239. }) {
  240. final $result = create();
  241. if (list != null) {
  242. $result.list.addAll(list);
  243. }
  244. return $result;
  245. }
  246. ToMatchRegusterListReply._() : super();
  247. factory ToMatchRegusterListReply.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  248. factory ToMatchRegusterListReply.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  249. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterListReply', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  250. ..pc<MatchRegusterInfo>(1, _omitFieldNames ? '' : 'list', $pb.PbFieldType.PM, subBuilder: MatchRegusterInfo.create)
  251. ..hasRequiredFields = false
  252. ;
  253. @$core.Deprecated(
  254. 'Using this can add significant overhead to your binary. '
  255. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  256. 'Will be removed in next major version')
  257. ToMatchRegusterListReply clone() => ToMatchRegusterListReply()..mergeFromMessage(this);
  258. @$core.Deprecated(
  259. 'Using this can add significant overhead to your binary. '
  260. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  261. 'Will be removed in next major version')
  262. ToMatchRegusterListReply copyWith(void Function(ToMatchRegusterListReply) updates) => super.copyWith((message) => updates(message as ToMatchRegusterListReply)) as ToMatchRegusterListReply;
  263. $pb.BuilderInfo get info_ => _i;
  264. @$core.pragma('dart2js:noInline')
  265. static ToMatchRegusterListReply create() => ToMatchRegusterListReply._();
  266. ToMatchRegusterListReply createEmptyInstance() => create();
  267. static $pb.PbList<ToMatchRegusterListReply> createRepeated() => $pb.PbList<ToMatchRegusterListReply>();
  268. @$core.pragma('dart2js:noInline')
  269. static ToMatchRegusterListReply getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterListReply>(create);
  270. static ToMatchRegusterListReply? _defaultInstance;
  271. @$pb.TagNumber(1)
  272. $core.List<MatchRegusterInfo> get list => $_getList(0);
  273. }
  274. class MatchRegusterInfo extends $pb.GeneratedMessage {
  275. factory MatchRegusterInfo({
  276. $core.int? id,
  277. $core.String? name,
  278. $core.int? totalUserNum,
  279. $core.String? qrCode,
  280. $core.bool? isAllowEdit,
  281. $core.bool? isAllowDel,
  282. $core.Iterable<ToChackInsInfo>? userList,
  283. }) {
  284. final $result = create();
  285. if (id != null) {
  286. $result.id = id;
  287. }
  288. if (name != null) {
  289. $result.name = name;
  290. }
  291. if (totalUserNum != null) {
  292. $result.totalUserNum = totalUserNum;
  293. }
  294. if (qrCode != null) {
  295. $result.qrCode = qrCode;
  296. }
  297. if (isAllowEdit != null) {
  298. $result.isAllowEdit = isAllowEdit;
  299. }
  300. if (isAllowDel != null) {
  301. $result.isAllowDel = isAllowDel;
  302. }
  303. if (userList != null) {
  304. $result.userList.addAll(userList);
  305. }
  306. return $result;
  307. }
  308. MatchRegusterInfo._() : super();
  309. factory MatchRegusterInfo.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  310. factory MatchRegusterInfo.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  311. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MatchRegusterInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  312. ..a<$core.int>(1, _omitFieldNames ? '' : 'id', $pb.PbFieldType.O3)
  313. ..aOS(2, _omitFieldNames ? '' : 'name')
  314. ..a<$core.int>(3, _omitFieldNames ? '' : 'totalUserNum', $pb.PbFieldType.O3, protoName: 'totalUserNum')
  315. ..aOS(4, _omitFieldNames ? '' : 'qrCode', protoName: 'qrCode')
  316. ..aOB(5, _omitFieldNames ? '' : 'isAllowEdit', protoName: 'isAllowEdit')
  317. ..aOB(6, _omitFieldNames ? '' : 'isAllowDel', protoName: 'isAllowDel')
  318. ..pc<ToChackInsInfo>(7, _omitFieldNames ? '' : 'userList', $pb.PbFieldType.PM, protoName: 'userList', subBuilder: ToChackInsInfo.create)
  319. ..hasRequiredFields = false
  320. ;
  321. @$core.Deprecated(
  322. 'Using this can add significant overhead to your binary. '
  323. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  324. 'Will be removed in next major version')
  325. MatchRegusterInfo clone() => MatchRegusterInfo()..mergeFromMessage(this);
  326. @$core.Deprecated(
  327. 'Using this can add significant overhead to your binary. '
  328. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  329. 'Will be removed in next major version')
  330. MatchRegusterInfo copyWith(void Function(MatchRegusterInfo) updates) => super.copyWith((message) => updates(message as MatchRegusterInfo)) as MatchRegusterInfo;
  331. $pb.BuilderInfo get info_ => _i;
  332. @$core.pragma('dart2js:noInline')
  333. static MatchRegusterInfo create() => MatchRegusterInfo._();
  334. MatchRegusterInfo createEmptyInstance() => create();
  335. static $pb.PbList<MatchRegusterInfo> createRepeated() => $pb.PbList<MatchRegusterInfo>();
  336. @$core.pragma('dart2js:noInline')
  337. static MatchRegusterInfo getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<MatchRegusterInfo>(create);
  338. static MatchRegusterInfo? _defaultInstance;
  339. @$pb.TagNumber(1)
  340. $core.int get id => $_getIZ(0);
  341. @$pb.TagNumber(1)
  342. set id($core.int v) { $_setSignedInt32(0, v); }
  343. @$pb.TagNumber(1)
  344. $core.bool hasId() => $_has(0);
  345. @$pb.TagNumber(1)
  346. void clearId() => clearField(1);
  347. @$pb.TagNumber(2)
  348. $core.String get name => $_getSZ(1);
  349. @$pb.TagNumber(2)
  350. set name($core.String v) { $_setString(1, v); }
  351. @$pb.TagNumber(2)
  352. $core.bool hasName() => $_has(1);
  353. @$pb.TagNumber(2)
  354. void clearName() => clearField(2);
  355. @$pb.TagNumber(3)
  356. $core.int get totalUserNum => $_getIZ(2);
  357. @$pb.TagNumber(3)
  358. set totalUserNum($core.int v) { $_setSignedInt32(2, v); }
  359. @$pb.TagNumber(3)
  360. $core.bool hasTotalUserNum() => $_has(2);
  361. @$pb.TagNumber(3)
  362. void clearTotalUserNum() => clearField(3);
  363. @$pb.TagNumber(4)
  364. $core.String get qrCode => $_getSZ(3);
  365. @$pb.TagNumber(4)
  366. set qrCode($core.String v) { $_setString(3, v); }
  367. @$pb.TagNumber(4)
  368. $core.bool hasQrCode() => $_has(3);
  369. @$pb.TagNumber(4)
  370. void clearQrCode() => clearField(4);
  371. @$pb.TagNumber(5)
  372. $core.bool get isAllowEdit => $_getBF(4);
  373. @$pb.TagNumber(5)
  374. set isAllowEdit($core.bool v) { $_setBool(4, v); }
  375. @$pb.TagNumber(5)
  376. $core.bool hasIsAllowEdit() => $_has(4);
  377. @$pb.TagNumber(5)
  378. void clearIsAllowEdit() => clearField(5);
  379. @$pb.TagNumber(6)
  380. $core.bool get isAllowDel => $_getBF(5);
  381. @$pb.TagNumber(6)
  382. set isAllowDel($core.bool v) { $_setBool(5, v); }
  383. @$pb.TagNumber(6)
  384. $core.bool hasIsAllowDel() => $_has(5);
  385. @$pb.TagNumber(6)
  386. void clearIsAllowDel() => clearField(6);
  387. @$pb.TagNumber(7)
  388. $core.List<ToChackInsInfo> get userList => $_getList(6);
  389. }
  390. class ToChackInsInfo extends $pb.GeneratedMessage {
  391. factory ToChackInsInfo({
  392. $core.int? marId,
  393. $core.int? oId,
  394. $core.String? nickname,
  395. $core.String? phone,
  396. $core.String? chackInsTime,
  397. $core.bool? isAllowDel,
  398. }) {
  399. final $result = create();
  400. if (marId != null) {
  401. $result.marId = marId;
  402. }
  403. if (oId != null) {
  404. $result.oId = oId;
  405. }
  406. if (nickname != null) {
  407. $result.nickname = nickname;
  408. }
  409. if (phone != null) {
  410. $result.phone = phone;
  411. }
  412. if (chackInsTime != null) {
  413. $result.chackInsTime = chackInsTime;
  414. }
  415. if (isAllowDel != null) {
  416. $result.isAllowDel = isAllowDel;
  417. }
  418. return $result;
  419. }
  420. ToChackInsInfo._() : super();
  421. factory ToChackInsInfo.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  422. factory ToChackInsInfo.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  423. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToChackInsInfo', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  424. ..a<$core.int>(1, _omitFieldNames ? '' : 'marId', $pb.PbFieldType.O3, protoName: 'marId')
  425. ..a<$core.int>(2, _omitFieldNames ? '' : 'oId', $pb.PbFieldType.O3, protoName: 'oId')
  426. ..aOS(3, _omitFieldNames ? '' : 'nickname')
  427. ..aOS(4, _omitFieldNames ? '' : 'phone')
  428. ..aOS(5, _omitFieldNames ? '' : 'chackInsTime', protoName: 'chackInsTime')
  429. ..aOB(6, _omitFieldNames ? '' : 'isAllowDel', protoName: 'isAllowDel')
  430. ..hasRequiredFields = false
  431. ;
  432. @$core.Deprecated(
  433. 'Using this can add significant overhead to your binary. '
  434. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  435. 'Will be removed in next major version')
  436. ToChackInsInfo clone() => ToChackInsInfo()..mergeFromMessage(this);
  437. @$core.Deprecated(
  438. 'Using this can add significant overhead to your binary. '
  439. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  440. 'Will be removed in next major version')
  441. ToChackInsInfo copyWith(void Function(ToChackInsInfo) updates) => super.copyWith((message) => updates(message as ToChackInsInfo)) as ToChackInsInfo;
  442. $pb.BuilderInfo get info_ => _i;
  443. @$core.pragma('dart2js:noInline')
  444. static ToChackInsInfo create() => ToChackInsInfo._();
  445. ToChackInsInfo createEmptyInstance() => create();
  446. static $pb.PbList<ToChackInsInfo> createRepeated() => $pb.PbList<ToChackInsInfo>();
  447. @$core.pragma('dart2js:noInline')
  448. static ToChackInsInfo getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToChackInsInfo>(create);
  449. static ToChackInsInfo? _defaultInstance;
  450. @$pb.TagNumber(1)
  451. $core.int get marId => $_getIZ(0);
  452. @$pb.TagNumber(1)
  453. set marId($core.int v) { $_setSignedInt32(0, v); }
  454. @$pb.TagNumber(1)
  455. $core.bool hasMarId() => $_has(0);
  456. @$pb.TagNumber(1)
  457. void clearMarId() => clearField(1);
  458. @$pb.TagNumber(2)
  459. $core.int get oId => $_getIZ(1);
  460. @$pb.TagNumber(2)
  461. set oId($core.int v) { $_setSignedInt32(1, v); }
  462. @$pb.TagNumber(2)
  463. $core.bool hasOId() => $_has(1);
  464. @$pb.TagNumber(2)
  465. void clearOId() => clearField(2);
  466. @$pb.TagNumber(3)
  467. $core.String get nickname => $_getSZ(2);
  468. @$pb.TagNumber(3)
  469. set nickname($core.String v) { $_setString(2, v); }
  470. @$pb.TagNumber(3)
  471. $core.bool hasNickname() => $_has(2);
  472. @$pb.TagNumber(3)
  473. void clearNickname() => clearField(3);
  474. @$pb.TagNumber(4)
  475. $core.String get phone => $_getSZ(3);
  476. @$pb.TagNumber(4)
  477. set phone($core.String v) { $_setString(3, v); }
  478. @$pb.TagNumber(4)
  479. $core.bool hasPhone() => $_has(3);
  480. @$pb.TagNumber(4)
  481. void clearPhone() => clearField(4);
  482. @$pb.TagNumber(5)
  483. $core.String get chackInsTime => $_getSZ(4);
  484. @$pb.TagNumber(5)
  485. set chackInsTime($core.String v) { $_setString(4, v); }
  486. @$pb.TagNumber(5)
  487. $core.bool hasChackInsTime() => $_has(4);
  488. @$pb.TagNumber(5)
  489. void clearChackInsTime() => clearField(5);
  490. @$pb.TagNumber(6)
  491. $core.bool get isAllowDel => $_getBF(5);
  492. @$pb.TagNumber(6)
  493. set isAllowDel($core.bool v) { $_setBool(5, v); }
  494. @$pb.TagNumber(6)
  495. $core.bool hasIsAllowDel() => $_has(5);
  496. @$pb.TagNumber(6)
  497. void clearIsAllowDel() => clearField(6);
  498. }
  499. class ToMatchRegusterAddRequest extends $pb.GeneratedMessage {
  500. factory ToMatchRegusterAddRequest({
  501. $core.String? regName,
  502. $2.Timestamp? startAt,
  503. $2.Timestamp? stopAt,
  504. $core.int? actId,
  505. $core.bool? isQueryPwd,
  506. $core.String? queryPasswd,
  507. }) {
  508. final $result = create();
  509. if (regName != null) {
  510. $result.regName = regName;
  511. }
  512. if (startAt != null) {
  513. $result.startAt = startAt;
  514. }
  515. if (stopAt != null) {
  516. $result.stopAt = stopAt;
  517. }
  518. if (actId != null) {
  519. $result.actId = actId;
  520. }
  521. if (isQueryPwd != null) {
  522. $result.isQueryPwd = isQueryPwd;
  523. }
  524. if (queryPasswd != null) {
  525. $result.queryPasswd = queryPasswd;
  526. }
  527. return $result;
  528. }
  529. ToMatchRegusterAddRequest._() : super();
  530. factory ToMatchRegusterAddRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r);
  531. factory ToMatchRegusterAddRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
  532. static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ToMatchRegusterAddRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'to.v1'), createEmptyInstance: create)
  533. ..aOS(1, _omitFieldNames ? '' : 'regName', protoName: 'regName')
  534. ..aOM<$2.Timestamp>(2, _omitFieldNames ? '' : 'startAt', subBuilder: $2.Timestamp.create)
  535. ..aOM<$2.Timestamp>(3, _omitFieldNames ? '' : 'stopAt', subBuilder: $2.Timestamp.create)
  536. ..a<$core.int>(4, _omitFieldNames ? '' : 'actId', $pb.PbFieldType.O3, protoName: 'actId')
  537. ..aOB(5, _omitFieldNames ? '' : 'isQueryPwd', protoName: 'isQueryPwd')
  538. ..aOS(6, _omitFieldNames ? '' : 'queryPasswd', protoName: 'queryPasswd')
  539. ..hasRequiredFields = false
  540. ;
  541. @$core.Deprecated(
  542. 'Using this can add significant overhead to your binary. '
  543. 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
  544. 'Will be removed in next major version')
  545. ToMatchRegusterAddRequest clone() => ToMatchRegusterAddRequest()..mergeFromMessage(this);
  546. @$core.Deprecated(
  547. 'Using this can add significant overhead to your binary. '
  548. 'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
  549. 'Will be removed in next major version')
  550. ToMatchRegusterAddRequest copyWith(void Function(ToMatchRegusterAddRequest) updates) => super.copyWith((message) => updates(message as ToMatchRegusterAddRequest)) as ToMatchRegusterAddRequest;
  551. $pb.BuilderInfo get info_ => _i;
  552. @$core.pragma('dart2js:noInline')
  553. static ToMatchRegusterAddRequest create() => ToMatchRegusterAddRequest._();
  554. ToMatchRegusterAddRequest createEmptyInstance() => create();
  555. static $pb.PbList<ToMatchRegusterAddRequest> createRepeated() => $pb.PbList<ToMatchRegusterAddRequest>();
  556. @$core.pragma('dart2js:noInline')
  557. static ToMatchRegusterAddRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ToMatchRegusterAddRequest>(create);
  558. static ToMatchRegusterAddRequest? _defaultInstance;
  559. @$pb.TagNumber(1)
  560. $core.String get regName => $_getSZ(0);
  561. @$pb.TagNumber(1)
  562. set regName($core.String v) { $_setString(0, v); }
  563. @$pb.TagNumber(1)
  564. $core.bool hasRegName() => $_has(0);
  565. @$pb.TagNumber(1)
  566. void clearRegName() => clearField(1);
  567. @$pb.TagNumber(2)
  568. $2.Timestamp get startAt => $_getN(1);
  569. @$pb.TagNumber(2)
  570. set startAt($2.Timestamp v) { setField(2, v); }
  571. @$pb.TagNumber(2)
  572. $core.bool hasStartAt() => $_has(1);
  573. @$pb.TagNumber(2)
  574. void clearStartAt() => clearField(2);
  575. @$pb.TagNumber(2)
  576. $2.Timestamp ensureStartAt() => $_ensure(1);
  577. @$pb.TagNumber(3)
  578. $2.Timestamp get stopAt => $_getN(2);
  579. @$pb.TagNumber(3)
  580. set stopAt($2.Timestamp v) { setField(3, v); }
  581. @$pb.TagNumber(3)
  582. $core.bool hasStopAt() => $_has(2);
  583. @$pb.TagNumber(3)
  584. void clearStopAt() => clearField(3);
  585. @$pb.TagNumber(3)
  586. $2.Timestamp ensureStopAt() => $_ensure(2);
  587. @$pb.TagNumber(4)
  588. $core.int get actId => $_getIZ(3);
  589. @$pb.TagNumber(4)
  590. set actId($core.int v) { $_setSignedInt32(3, v); }
  591. @$pb.TagNumber(4)
  592. $core.bool hasActId() => $_has(3);
  593. @$pb.TagNumber(4)
  594. void clearActId() => clearField(4);
  595. @$pb.TagNumber(5)
  596. $core.bool get isQueryPwd => $_getBF(4);
  597. @$pb.TagNumber(5)
  598. set isQueryPwd($core.bool v) { $_setBool(4, v); }
  599. @$pb.TagNumber(5)
  600. $core.bool hasIsQueryPwd() => $_has(4);
  601. @$pb.TagNumber(5)
  602. void clearIsQueryPwd() => clearField(5);
  603. @$pb.TagNumber(6)
  604. $core.String get queryPasswd => $_getSZ(5);
  605. @$pb.TagNumber(6)
  606. set queryPasswd($core.String v) { $_setString(5, v); }
  607. @$pb.TagNumber(6)
  608. $core.bool hasQueryPasswd() => $_has(5);
  609. @$pb.TagNumber(6)
  610. void clearQueryPasswd() => clearField(6);
  611. }
  612. const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
  613. const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');