school_disable.pb.go 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.34.2
  4. // protoc v4.25.3
  5. // source: user/v2/school_disable.proto
  6. package v2
  7. import (
  8. _ "github.com/envoyproxy/protoc-gen-validate/validate"
  9. _ "google.golang.org/genproto/googleapis/api/annotations"
  10. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  11. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  12. reflect "reflect"
  13. sync "sync"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. // 手表获取上课禁用 Request
  22. type GetWristwatchSchoolDisableRequest struct {
  23. state protoimpl.MessageState
  24. sizeCache protoimpl.SizeCache
  25. unknownFields protoimpl.UnknownFields
  26. Ticket string `protobuf:"bytes,2,opt,name=ticket,proto3" json:"ticket,omitempty"`
  27. }
  28. func (x *GetWristwatchSchoolDisableRequest) Reset() {
  29. *x = GetWristwatchSchoolDisableRequest{}
  30. if protoimpl.UnsafeEnabled {
  31. mi := &file_user_v2_school_disable_proto_msgTypes[0]
  32. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  33. ms.StoreMessageInfo(mi)
  34. }
  35. }
  36. func (x *GetWristwatchSchoolDisableRequest) String() string {
  37. return protoimpl.X.MessageStringOf(x)
  38. }
  39. func (*GetWristwatchSchoolDisableRequest) ProtoMessage() {}
  40. func (x *GetWristwatchSchoolDisableRequest) ProtoReflect() protoreflect.Message {
  41. mi := &file_user_v2_school_disable_proto_msgTypes[0]
  42. if protoimpl.UnsafeEnabled && x != nil {
  43. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  44. if ms.LoadMessageInfo() == nil {
  45. ms.StoreMessageInfo(mi)
  46. }
  47. return ms
  48. }
  49. return mi.MessageOf(x)
  50. }
  51. // Deprecated: Use GetWristwatchSchoolDisableRequest.ProtoReflect.Descriptor instead.
  52. func (*GetWristwatchSchoolDisableRequest) Descriptor() ([]byte, []int) {
  53. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{0}
  54. }
  55. func (x *GetWristwatchSchoolDisableRequest) GetTicket() string {
  56. if x != nil {
  57. return x.Ticket
  58. }
  59. return ""
  60. }
  61. // 手表获取上课禁用 Response
  62. type GetWristwatchSchoolDisableResponse struct {
  63. state protoimpl.MessageState
  64. sizeCache protoimpl.SizeCache
  65. unknownFields protoimpl.UnknownFields
  66. SchoolDisables []*GetWristwatchSchoolDisableResponse_SchoolDisable `protobuf:"bytes,1,rep,name=schoolDisables,proto3" json:"schoolDisables,omitempty"`
  67. }
  68. func (x *GetWristwatchSchoolDisableResponse) Reset() {
  69. *x = GetWristwatchSchoolDisableResponse{}
  70. if protoimpl.UnsafeEnabled {
  71. mi := &file_user_v2_school_disable_proto_msgTypes[1]
  72. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  73. ms.StoreMessageInfo(mi)
  74. }
  75. }
  76. func (x *GetWristwatchSchoolDisableResponse) String() string {
  77. return protoimpl.X.MessageStringOf(x)
  78. }
  79. func (*GetWristwatchSchoolDisableResponse) ProtoMessage() {}
  80. func (x *GetWristwatchSchoolDisableResponse) ProtoReflect() protoreflect.Message {
  81. mi := &file_user_v2_school_disable_proto_msgTypes[1]
  82. if protoimpl.UnsafeEnabled && x != nil {
  83. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  84. if ms.LoadMessageInfo() == nil {
  85. ms.StoreMessageInfo(mi)
  86. }
  87. return ms
  88. }
  89. return mi.MessageOf(x)
  90. }
  91. // Deprecated: Use GetWristwatchSchoolDisableResponse.ProtoReflect.Descriptor instead.
  92. func (*GetWristwatchSchoolDisableResponse) Descriptor() ([]byte, []int) {
  93. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{1}
  94. }
  95. func (x *GetWristwatchSchoolDisableResponse) GetSchoolDisables() []*GetWristwatchSchoolDisableResponse_SchoolDisable {
  96. if x != nil {
  97. return x.SchoolDisables
  98. }
  99. return nil
  100. }
  101. // 获取上课禁用 Request
  102. type GetSchoolDisableRequest struct {
  103. state protoimpl.MessageState
  104. sizeCache protoimpl.SizeCache
  105. unknownFields protoimpl.UnknownFields
  106. Cid string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
  107. }
  108. func (x *GetSchoolDisableRequest) Reset() {
  109. *x = GetSchoolDisableRequest{}
  110. if protoimpl.UnsafeEnabled {
  111. mi := &file_user_v2_school_disable_proto_msgTypes[2]
  112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  113. ms.StoreMessageInfo(mi)
  114. }
  115. }
  116. func (x *GetSchoolDisableRequest) String() string {
  117. return protoimpl.X.MessageStringOf(x)
  118. }
  119. func (*GetSchoolDisableRequest) ProtoMessage() {}
  120. func (x *GetSchoolDisableRequest) ProtoReflect() protoreflect.Message {
  121. mi := &file_user_v2_school_disable_proto_msgTypes[2]
  122. if protoimpl.UnsafeEnabled && x != nil {
  123. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  124. if ms.LoadMessageInfo() == nil {
  125. ms.StoreMessageInfo(mi)
  126. }
  127. return ms
  128. }
  129. return mi.MessageOf(x)
  130. }
  131. // Deprecated: Use GetSchoolDisableRequest.ProtoReflect.Descriptor instead.
  132. func (*GetSchoolDisableRequest) Descriptor() ([]byte, []int) {
  133. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{2}
  134. }
  135. func (x *GetSchoolDisableRequest) GetCid() string {
  136. if x != nil {
  137. return x.Cid
  138. }
  139. return ""
  140. }
  141. // 获取上课禁用 Response
  142. type GetSchoolDisableResponse struct {
  143. state protoimpl.MessageState
  144. sizeCache protoimpl.SizeCache
  145. unknownFields protoimpl.UnknownFields
  146. SchoolDisables []*GetSchoolDisableResponse_SchoolDisable `protobuf:"bytes,1,rep,name=schoolDisables,proto3" json:"schoolDisables,omitempty"`
  147. }
  148. func (x *GetSchoolDisableResponse) Reset() {
  149. *x = GetSchoolDisableResponse{}
  150. if protoimpl.UnsafeEnabled {
  151. mi := &file_user_v2_school_disable_proto_msgTypes[3]
  152. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  153. ms.StoreMessageInfo(mi)
  154. }
  155. }
  156. func (x *GetSchoolDisableResponse) String() string {
  157. return protoimpl.X.MessageStringOf(x)
  158. }
  159. func (*GetSchoolDisableResponse) ProtoMessage() {}
  160. func (x *GetSchoolDisableResponse) ProtoReflect() protoreflect.Message {
  161. mi := &file_user_v2_school_disable_proto_msgTypes[3]
  162. if protoimpl.UnsafeEnabled && x != nil {
  163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  164. if ms.LoadMessageInfo() == nil {
  165. ms.StoreMessageInfo(mi)
  166. }
  167. return ms
  168. }
  169. return mi.MessageOf(x)
  170. }
  171. // Deprecated: Use GetSchoolDisableResponse.ProtoReflect.Descriptor instead.
  172. func (*GetSchoolDisableResponse) Descriptor() ([]byte, []int) {
  173. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{3}
  174. }
  175. func (x *GetSchoolDisableResponse) GetSchoolDisables() []*GetSchoolDisableResponse_SchoolDisable {
  176. if x != nil {
  177. return x.SchoolDisables
  178. }
  179. return nil
  180. }
  181. // 创建上课禁用 Request
  182. type CreateSchoolDisableRequest struct {
  183. state protoimpl.MessageState
  184. sizeCache protoimpl.SizeCache
  185. unknownFields protoimpl.UnknownFields
  186. Cid string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
  187. Repeats string `protobuf:"bytes,2,opt,name=repeats,proto3" json:"repeats,omitempty"`
  188. StartTime string `protobuf:"bytes,3,opt,name=startTime,proto3" json:"startTime,omitempty"`
  189. EndTime string `protobuf:"bytes,4,opt,name=endTime,proto3" json:"endTime,omitempty"`
  190. Status bool `protobuf:"varint,5,opt,name=status,proto3" json:"status,omitempty"`
  191. }
  192. func (x *CreateSchoolDisableRequest) Reset() {
  193. *x = CreateSchoolDisableRequest{}
  194. if protoimpl.UnsafeEnabled {
  195. mi := &file_user_v2_school_disable_proto_msgTypes[4]
  196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  197. ms.StoreMessageInfo(mi)
  198. }
  199. }
  200. func (x *CreateSchoolDisableRequest) String() string {
  201. return protoimpl.X.MessageStringOf(x)
  202. }
  203. func (*CreateSchoolDisableRequest) ProtoMessage() {}
  204. func (x *CreateSchoolDisableRequest) ProtoReflect() protoreflect.Message {
  205. mi := &file_user_v2_school_disable_proto_msgTypes[4]
  206. if protoimpl.UnsafeEnabled && x != nil {
  207. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  208. if ms.LoadMessageInfo() == nil {
  209. ms.StoreMessageInfo(mi)
  210. }
  211. return ms
  212. }
  213. return mi.MessageOf(x)
  214. }
  215. // Deprecated: Use CreateSchoolDisableRequest.ProtoReflect.Descriptor instead.
  216. func (*CreateSchoolDisableRequest) Descriptor() ([]byte, []int) {
  217. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{4}
  218. }
  219. func (x *CreateSchoolDisableRequest) GetCid() string {
  220. if x != nil {
  221. return x.Cid
  222. }
  223. return ""
  224. }
  225. func (x *CreateSchoolDisableRequest) GetRepeats() string {
  226. if x != nil {
  227. return x.Repeats
  228. }
  229. return ""
  230. }
  231. func (x *CreateSchoolDisableRequest) GetStartTime() string {
  232. if x != nil {
  233. return x.StartTime
  234. }
  235. return ""
  236. }
  237. func (x *CreateSchoolDisableRequest) GetEndTime() string {
  238. if x != nil {
  239. return x.EndTime
  240. }
  241. return ""
  242. }
  243. func (x *CreateSchoolDisableRequest) GetStatus() bool {
  244. if x != nil {
  245. return x.Status
  246. }
  247. return false
  248. }
  249. // 创建上课禁用 Response
  250. type CreateSchoolDisableResponse struct {
  251. state protoimpl.MessageState
  252. sizeCache protoimpl.SizeCache
  253. unknownFields protoimpl.UnknownFields
  254. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  255. }
  256. func (x *CreateSchoolDisableResponse) Reset() {
  257. *x = CreateSchoolDisableResponse{}
  258. if protoimpl.UnsafeEnabled {
  259. mi := &file_user_v2_school_disable_proto_msgTypes[5]
  260. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  261. ms.StoreMessageInfo(mi)
  262. }
  263. }
  264. func (x *CreateSchoolDisableResponse) String() string {
  265. return protoimpl.X.MessageStringOf(x)
  266. }
  267. func (*CreateSchoolDisableResponse) ProtoMessage() {}
  268. func (x *CreateSchoolDisableResponse) ProtoReflect() protoreflect.Message {
  269. mi := &file_user_v2_school_disable_proto_msgTypes[5]
  270. if protoimpl.UnsafeEnabled && x != nil {
  271. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  272. if ms.LoadMessageInfo() == nil {
  273. ms.StoreMessageInfo(mi)
  274. }
  275. return ms
  276. }
  277. return mi.MessageOf(x)
  278. }
  279. // Deprecated: Use CreateSchoolDisableResponse.ProtoReflect.Descriptor instead.
  280. func (*CreateSchoolDisableResponse) Descriptor() ([]byte, []int) {
  281. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{5}
  282. }
  283. func (x *CreateSchoolDisableResponse) GetId() int64 {
  284. if x != nil {
  285. return x.Id
  286. }
  287. return 0
  288. }
  289. // 更新上课禁用 Request
  290. type UpdateSchoolDisableRequest struct {
  291. state protoimpl.MessageState
  292. sizeCache protoimpl.SizeCache
  293. unknownFields protoimpl.UnknownFields
  294. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  295. Cid string `protobuf:"bytes,2,opt,name=cid,proto3" json:"cid,omitempty"`
  296. Repeats string `protobuf:"bytes,3,opt,name=repeats,proto3" json:"repeats,omitempty"`
  297. StartTime string `protobuf:"bytes,4,opt,name=startTime,proto3" json:"startTime,omitempty"`
  298. EndTime string `protobuf:"bytes,5,opt,name=endTime,proto3" json:"endTime,omitempty"`
  299. Status bool `protobuf:"varint,6,opt,name=status,proto3" json:"status,omitempty"`
  300. }
  301. func (x *UpdateSchoolDisableRequest) Reset() {
  302. *x = UpdateSchoolDisableRequest{}
  303. if protoimpl.UnsafeEnabled {
  304. mi := &file_user_v2_school_disable_proto_msgTypes[6]
  305. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  306. ms.StoreMessageInfo(mi)
  307. }
  308. }
  309. func (x *UpdateSchoolDisableRequest) String() string {
  310. return protoimpl.X.MessageStringOf(x)
  311. }
  312. func (*UpdateSchoolDisableRequest) ProtoMessage() {}
  313. func (x *UpdateSchoolDisableRequest) ProtoReflect() protoreflect.Message {
  314. mi := &file_user_v2_school_disable_proto_msgTypes[6]
  315. if protoimpl.UnsafeEnabled && x != nil {
  316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  317. if ms.LoadMessageInfo() == nil {
  318. ms.StoreMessageInfo(mi)
  319. }
  320. return ms
  321. }
  322. return mi.MessageOf(x)
  323. }
  324. // Deprecated: Use UpdateSchoolDisableRequest.ProtoReflect.Descriptor instead.
  325. func (*UpdateSchoolDisableRequest) Descriptor() ([]byte, []int) {
  326. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{6}
  327. }
  328. func (x *UpdateSchoolDisableRequest) GetId() int64 {
  329. if x != nil {
  330. return x.Id
  331. }
  332. return 0
  333. }
  334. func (x *UpdateSchoolDisableRequest) GetCid() string {
  335. if x != nil {
  336. return x.Cid
  337. }
  338. return ""
  339. }
  340. func (x *UpdateSchoolDisableRequest) GetRepeats() string {
  341. if x != nil {
  342. return x.Repeats
  343. }
  344. return ""
  345. }
  346. func (x *UpdateSchoolDisableRequest) GetStartTime() string {
  347. if x != nil {
  348. return x.StartTime
  349. }
  350. return ""
  351. }
  352. func (x *UpdateSchoolDisableRequest) GetEndTime() string {
  353. if x != nil {
  354. return x.EndTime
  355. }
  356. return ""
  357. }
  358. func (x *UpdateSchoolDisableRequest) GetStatus() bool {
  359. if x != nil {
  360. return x.Status
  361. }
  362. return false
  363. }
  364. // 更新上课禁用 Response
  365. type UpdateSchoolDisableResponse struct {
  366. state protoimpl.MessageState
  367. sizeCache protoimpl.SizeCache
  368. unknownFields protoimpl.UnknownFields
  369. }
  370. func (x *UpdateSchoolDisableResponse) Reset() {
  371. *x = UpdateSchoolDisableResponse{}
  372. if protoimpl.UnsafeEnabled {
  373. mi := &file_user_v2_school_disable_proto_msgTypes[7]
  374. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  375. ms.StoreMessageInfo(mi)
  376. }
  377. }
  378. func (x *UpdateSchoolDisableResponse) String() string {
  379. return protoimpl.X.MessageStringOf(x)
  380. }
  381. func (*UpdateSchoolDisableResponse) ProtoMessage() {}
  382. func (x *UpdateSchoolDisableResponse) ProtoReflect() protoreflect.Message {
  383. mi := &file_user_v2_school_disable_proto_msgTypes[7]
  384. if protoimpl.UnsafeEnabled && x != nil {
  385. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  386. if ms.LoadMessageInfo() == nil {
  387. ms.StoreMessageInfo(mi)
  388. }
  389. return ms
  390. }
  391. return mi.MessageOf(x)
  392. }
  393. // Deprecated: Use UpdateSchoolDisableResponse.ProtoReflect.Descriptor instead.
  394. func (*UpdateSchoolDisableResponse) Descriptor() ([]byte, []int) {
  395. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{7}
  396. }
  397. // 删除上课禁用 Request
  398. type DeleteSchoolDisableRequest struct {
  399. state protoimpl.MessageState
  400. sizeCache protoimpl.SizeCache
  401. unknownFields protoimpl.UnknownFields
  402. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  403. }
  404. func (x *DeleteSchoolDisableRequest) Reset() {
  405. *x = DeleteSchoolDisableRequest{}
  406. if protoimpl.UnsafeEnabled {
  407. mi := &file_user_v2_school_disable_proto_msgTypes[8]
  408. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  409. ms.StoreMessageInfo(mi)
  410. }
  411. }
  412. func (x *DeleteSchoolDisableRequest) String() string {
  413. return protoimpl.X.MessageStringOf(x)
  414. }
  415. func (*DeleteSchoolDisableRequest) ProtoMessage() {}
  416. func (x *DeleteSchoolDisableRequest) ProtoReflect() protoreflect.Message {
  417. mi := &file_user_v2_school_disable_proto_msgTypes[8]
  418. if protoimpl.UnsafeEnabled && x != nil {
  419. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  420. if ms.LoadMessageInfo() == nil {
  421. ms.StoreMessageInfo(mi)
  422. }
  423. return ms
  424. }
  425. return mi.MessageOf(x)
  426. }
  427. // Deprecated: Use DeleteSchoolDisableRequest.ProtoReflect.Descriptor instead.
  428. func (*DeleteSchoolDisableRequest) Descriptor() ([]byte, []int) {
  429. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{8}
  430. }
  431. func (x *DeleteSchoolDisableRequest) GetId() int64 {
  432. if x != nil {
  433. return x.Id
  434. }
  435. return 0
  436. }
  437. // 删除上课禁用 Response
  438. type DeleteSchoolDisableResponse struct {
  439. state protoimpl.MessageState
  440. sizeCache protoimpl.SizeCache
  441. unknownFields protoimpl.UnknownFields
  442. }
  443. func (x *DeleteSchoolDisableResponse) Reset() {
  444. *x = DeleteSchoolDisableResponse{}
  445. if protoimpl.UnsafeEnabled {
  446. mi := &file_user_v2_school_disable_proto_msgTypes[9]
  447. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  448. ms.StoreMessageInfo(mi)
  449. }
  450. }
  451. func (x *DeleteSchoolDisableResponse) String() string {
  452. return protoimpl.X.MessageStringOf(x)
  453. }
  454. func (*DeleteSchoolDisableResponse) ProtoMessage() {}
  455. func (x *DeleteSchoolDisableResponse) ProtoReflect() protoreflect.Message {
  456. mi := &file_user_v2_school_disable_proto_msgTypes[9]
  457. if protoimpl.UnsafeEnabled && x != nil {
  458. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  459. if ms.LoadMessageInfo() == nil {
  460. ms.StoreMessageInfo(mi)
  461. }
  462. return ms
  463. }
  464. return mi.MessageOf(x)
  465. }
  466. // Deprecated: Use DeleteSchoolDisableResponse.ProtoReflect.Descriptor instead.
  467. func (*DeleteSchoolDisableResponse) Descriptor() ([]byte, []int) {
  468. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{9}
  469. }
  470. type GetWristwatchSchoolDisableResponse_SchoolDisable struct {
  471. state protoimpl.MessageState
  472. sizeCache protoimpl.SizeCache
  473. unknownFields protoimpl.UnknownFields
  474. Cid string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
  475. Repeats string `protobuf:"bytes,2,opt,name=repeats,proto3" json:"repeats,omitempty"`
  476. StartTime string `protobuf:"bytes,3,opt,name=startTime,proto3" json:"startTime,omitempty"`
  477. EndTime string `protobuf:"bytes,4,opt,name=endTime,proto3" json:"endTime,omitempty"`
  478. Status bool `protobuf:"varint,5,opt,name=status,proto3" json:"status,omitempty"`
  479. Id int64 `protobuf:"varint,6,opt,name=id,proto3" json:"id,omitempty"`
  480. }
  481. func (x *GetWristwatchSchoolDisableResponse_SchoolDisable) Reset() {
  482. *x = GetWristwatchSchoolDisableResponse_SchoolDisable{}
  483. if protoimpl.UnsafeEnabled {
  484. mi := &file_user_v2_school_disable_proto_msgTypes[10]
  485. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  486. ms.StoreMessageInfo(mi)
  487. }
  488. }
  489. func (x *GetWristwatchSchoolDisableResponse_SchoolDisable) String() string {
  490. return protoimpl.X.MessageStringOf(x)
  491. }
  492. func (*GetWristwatchSchoolDisableResponse_SchoolDisable) ProtoMessage() {}
  493. func (x *GetWristwatchSchoolDisableResponse_SchoolDisable) ProtoReflect() protoreflect.Message {
  494. mi := &file_user_v2_school_disable_proto_msgTypes[10]
  495. if protoimpl.UnsafeEnabled && x != nil {
  496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  497. if ms.LoadMessageInfo() == nil {
  498. ms.StoreMessageInfo(mi)
  499. }
  500. return ms
  501. }
  502. return mi.MessageOf(x)
  503. }
  504. // Deprecated: Use GetWristwatchSchoolDisableResponse_SchoolDisable.ProtoReflect.Descriptor instead.
  505. func (*GetWristwatchSchoolDisableResponse_SchoolDisable) Descriptor() ([]byte, []int) {
  506. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{1, 0}
  507. }
  508. func (x *GetWristwatchSchoolDisableResponse_SchoolDisable) GetCid() string {
  509. if x != nil {
  510. return x.Cid
  511. }
  512. return ""
  513. }
  514. func (x *GetWristwatchSchoolDisableResponse_SchoolDisable) GetRepeats() string {
  515. if x != nil {
  516. return x.Repeats
  517. }
  518. return ""
  519. }
  520. func (x *GetWristwatchSchoolDisableResponse_SchoolDisable) GetStartTime() string {
  521. if x != nil {
  522. return x.StartTime
  523. }
  524. return ""
  525. }
  526. func (x *GetWristwatchSchoolDisableResponse_SchoolDisable) GetEndTime() string {
  527. if x != nil {
  528. return x.EndTime
  529. }
  530. return ""
  531. }
  532. func (x *GetWristwatchSchoolDisableResponse_SchoolDisable) GetStatus() bool {
  533. if x != nil {
  534. return x.Status
  535. }
  536. return false
  537. }
  538. func (x *GetWristwatchSchoolDisableResponse_SchoolDisable) GetId() int64 {
  539. if x != nil {
  540. return x.Id
  541. }
  542. return 0
  543. }
  544. type GetSchoolDisableResponse_SchoolDisable struct {
  545. state protoimpl.MessageState
  546. sizeCache protoimpl.SizeCache
  547. unknownFields protoimpl.UnknownFields
  548. Cid string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
  549. Repeats string `protobuf:"bytes,2,opt,name=repeats,proto3" json:"repeats,omitempty"`
  550. StartTime string `protobuf:"bytes,3,opt,name=startTime,proto3" json:"startTime,omitempty"`
  551. EndTime string `protobuf:"bytes,4,opt,name=endTime,proto3" json:"endTime,omitempty"`
  552. Status bool `protobuf:"varint,5,opt,name=status,proto3" json:"status,omitempty"`
  553. Id int64 `protobuf:"varint,6,opt,name=id,proto3" json:"id,omitempty"`
  554. }
  555. func (x *GetSchoolDisableResponse_SchoolDisable) Reset() {
  556. *x = GetSchoolDisableResponse_SchoolDisable{}
  557. if protoimpl.UnsafeEnabled {
  558. mi := &file_user_v2_school_disable_proto_msgTypes[11]
  559. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  560. ms.StoreMessageInfo(mi)
  561. }
  562. }
  563. func (x *GetSchoolDisableResponse_SchoolDisable) String() string {
  564. return protoimpl.X.MessageStringOf(x)
  565. }
  566. func (*GetSchoolDisableResponse_SchoolDisable) ProtoMessage() {}
  567. func (x *GetSchoolDisableResponse_SchoolDisable) ProtoReflect() protoreflect.Message {
  568. mi := &file_user_v2_school_disable_proto_msgTypes[11]
  569. if protoimpl.UnsafeEnabled && x != nil {
  570. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  571. if ms.LoadMessageInfo() == nil {
  572. ms.StoreMessageInfo(mi)
  573. }
  574. return ms
  575. }
  576. return mi.MessageOf(x)
  577. }
  578. // Deprecated: Use GetSchoolDisableResponse_SchoolDisable.ProtoReflect.Descriptor instead.
  579. func (*GetSchoolDisableResponse_SchoolDisable) Descriptor() ([]byte, []int) {
  580. return file_user_v2_school_disable_proto_rawDescGZIP(), []int{3, 0}
  581. }
  582. func (x *GetSchoolDisableResponse_SchoolDisable) GetCid() string {
  583. if x != nil {
  584. return x.Cid
  585. }
  586. return ""
  587. }
  588. func (x *GetSchoolDisableResponse_SchoolDisable) GetRepeats() string {
  589. if x != nil {
  590. return x.Repeats
  591. }
  592. return ""
  593. }
  594. func (x *GetSchoolDisableResponse_SchoolDisable) GetStartTime() string {
  595. if x != nil {
  596. return x.StartTime
  597. }
  598. return ""
  599. }
  600. func (x *GetSchoolDisableResponse_SchoolDisable) GetEndTime() string {
  601. if x != nil {
  602. return x.EndTime
  603. }
  604. return ""
  605. }
  606. func (x *GetSchoolDisableResponse_SchoolDisable) GetStatus() bool {
  607. if x != nil {
  608. return x.Status
  609. }
  610. return false
  611. }
  612. func (x *GetSchoolDisableResponse_SchoolDisable) GetId() int64 {
  613. if x != nil {
  614. return x.Id
  615. }
  616. return 0
  617. }
  618. var File_user_v2_school_disable_proto protoreflect.FileDescriptor
  619. var file_user_v2_school_disable_proto_rawDesc = []byte{
  620. 0x0a, 0x1c, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x76, 0x32, 0x2f, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c,
  621. 0x5f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0b,
  622. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76, 0x32, 0x1a, 0x1c, 0x67, 0x6f, 0x6f,
  623. 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,
  624. 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x76, 0x61, 0x6c, 0x69, 0x64,
  625. 0x61, 0x74, 0x65, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  626. 0x74, 0x6f, 0x22, 0x44, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x57, 0x72, 0x69, 0x73, 0x74, 0x77, 0x61,
  627. 0x74, 0x63, 0x68, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
  628. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x06, 0x74, 0x69, 0x63, 0x6b, 0x65,
  629. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01,
  630. 0x52, 0x06, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x22, 0xa9, 0x02, 0x0a, 0x22, 0x47, 0x65, 0x74,
  631. 0x57, 0x72, 0x69, 0x73, 0x74, 0x77, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c,
  632. 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  633. 0x65, 0x0a, 0x0e, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
  634. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  635. 0x65, 0x72, 0x2e, 0x76, 0x32, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x72, 0x69, 0x73, 0x74, 0x77, 0x61,
  636. 0x74, 0x63, 0x68, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
  637. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44,
  638. 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x0e, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69,
  639. 0x73, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x1a, 0x9b, 0x01, 0x0a, 0x0d, 0x53, 0x63, 0x68, 0x6f, 0x6f,
  640. 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18,
  641. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65,
  642. 0x70, 0x65, 0x61, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x70,
  643. 0x65, 0x61, 0x74, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  644. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69,
  645. 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20,
  646. 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06,
  647. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73, 0x74,
  648. 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  649. 0x52, 0x02, 0x69, 0x64, 0x22, 0x37, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x6f, 0x6f,
  650. 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  651. 0x1c, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42,
  652. 0x07, 0x72, 0x05, 0x10, 0x01, 0xb0, 0x01, 0x01, 0x52, 0x03, 0x63, 0x69, 0x64, 0x22, 0x95, 0x02,
  653. 0x0a, 0x18, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62,
  654. 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5b, 0x0a, 0x0e, 0x73, 0x63,
  655. 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
  656. 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76, 0x32,
  657. 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c,
  658. 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c,
  659. 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x0e, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44,
  660. 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x1a, 0x9b, 0x01, 0x0a, 0x0d, 0x53, 0x63, 0x68, 0x6f,
  661. 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x69, 0x64,
  662. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72,
  663. 0x65, 0x70, 0x65, 0x61, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65,
  664. 0x70, 0x65, 0x61, 0x74, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69,
  665. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54,
  666. 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x04,
  667. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a,
  668. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73,
  669. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28,
  670. 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0xb4, 0x01, 0x0a, 0x1a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  671. 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71,
  672. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x03, 0x63, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  673. 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0xb0, 0x01, 0x01, 0x52, 0x03, 0x63, 0x69, 0x64,
  674. 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  675. 0x09, 0x52, 0x07, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x73, 0x12, 0x25, 0x0a, 0x09, 0x73, 0x74,
  676. 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa,
  677. 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  678. 0x65, 0x12, 0x21, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
  679. 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x07, 0x65, 0x6e, 0x64,
  680. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05,
  681. 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x36, 0x0a, 0x1b,
  682. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61,
  683. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x17, 0x0a, 0x02, 0x69,
  684. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x22, 0x02, 0x20, 0x00,
  685. 0x52, 0x02, 0x69, 0x64, 0x22, 0xcf, 0x01, 0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
  686. 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75,
  687. 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x42,
  688. 0x07, 0xfa, 0x42, 0x04, 0x22, 0x02, 0x20, 0x00, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x03,
  689. 0x63, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05,
  690. 0x10, 0x01, 0xb0, 0x01, 0x01, 0x52, 0x03, 0x63, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65,
  691. 0x70, 0x65, 0x61, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x70,
  692. 0x65, 0x61, 0x74, 0x73, 0x12, 0x25, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  693. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01,
  694. 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x07, 0x65,
  695. 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42,
  696. 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16,
  697. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06,
  698. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x1d, 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  699. 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73,
  700. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x35, 0x0a, 0x1a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53,
  701. 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75,
  702. 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x42,
  703. 0x07, 0xfa, 0x42, 0x04, 0x22, 0x02, 0x20, 0x00, 0x52, 0x02, 0x69, 0x64, 0x22, 0x1d, 0x0a, 0x1b,
  704. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61,
  705. 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xe4, 0x06, 0x0a, 0x0d,
  706. 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0xc0, 0x01,
  707. 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x57, 0x72, 0x69, 0x73, 0x74, 0x77, 0x61, 0x74, 0x63, 0x68, 0x53,
  708. 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2e, 0x2e, 0x61,
  709. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76, 0x32, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x72,
  710. 0x69, 0x73, 0x74, 0x77, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69,
  711. 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x61,
  712. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76, 0x32, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x72,
  713. 0x69, 0x73, 0x74, 0x77, 0x61, 0x74, 0x63, 0x68, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69,
  714. 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x41, 0x82,
  715. 0xd3, 0xe4, 0x93, 0x02, 0x3b, 0x12, 0x39, 0x2f, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x76, 0x32, 0x2f,
  716. 0x75, 0x73, 0x65, 0x72, 0x63, 0x74, 0x78, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x69,
  717. 0x6c, 0x64, 0x2f, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x2d, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c,
  718. 0x65, 0x2f, 0x77, 0x72, 0x69, 0x73, 0x74, 0x77, 0x61, 0x74, 0x63, 0x68, 0x2f, 0x67, 0x65, 0x74,
  719. 0x12, 0x97, 0x01, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69,
  720. 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  721. 0x2e, 0x76, 0x32, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73,
  722. 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x61, 0x70,
  723. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76, 0x32, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68,
  724. 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  725. 0x73, 0x65, 0x22, 0x36, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x30, 0x12, 0x2e, 0x2f, 0x61, 0x70, 0x69,
  726. 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x63, 0x74, 0x78, 0x2f, 0x75, 0x73, 0x65,
  727. 0x72, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x2f, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x2d, 0x64,
  728. 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x67, 0x65, 0x74, 0x12, 0xa6, 0x01, 0x0a, 0x13, 0x43,
  729. 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62,
  730. 0x6c, 0x65, 0x12, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76, 0x32,
  731. 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73,
  732. 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x61, 0x70,
  733. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  734. 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73,
  735. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x36, 0x3a, 0x01, 0x2a,
  736. 0x22, 0x31, 0x2f, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x63,
  737. 0x74, 0x78, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x2f, 0x73, 0x63,
  738. 0x68, 0x6f, 0x6f, 0x6c, 0x2d, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x63, 0x72, 0x65,
  739. 0x61, 0x74, 0x65, 0x12, 0xa6, 0x01, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63,
  740. 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x27, 0x2e, 0x61, 0x70,
  741. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76, 0x32, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  742. 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71,
  743. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  744. 0x76, 0x32, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44,
  745. 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3c,
  746. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x36, 0x3a, 0x01, 0x2a, 0x22, 0x31, 0x2f, 0x61, 0x70, 0x69, 0x73,
  747. 0x2f, 0x76, 0x32, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x63, 0x74, 0x78, 0x2f, 0x75, 0x73, 0x65, 0x72,
  748. 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x2f, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x2d, 0x64, 0x69,
  749. 0x73, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0xa3, 0x01, 0x0a,
  750. 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73,
  751. 0x61, 0x62, 0x6c, 0x65, 0x12, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  752. 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44,
  753. 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e,
  754. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76, 0x32, 0x2e, 0x44, 0x65, 0x6c, 0x65,
  755. 0x74, 0x65, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x52,
  756. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x33, 0x12,
  757. 0x31, 0x2f, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x76, 0x32, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x63, 0x74,
  758. 0x78, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x2f, 0x73, 0x63, 0x68,
  759. 0x6f, 0x6f, 0x6c, 0x2d, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x2f, 0x64, 0x65, 0x6c, 0x65,
  760. 0x74, 0x65, 0x42, 0x30, 0x0a, 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x76,
  761. 0x32, 0x50, 0x01, 0x5a, 0x1f, 0x73, 0x69, 0x6b, 0x65, 0x79, 0x2f, 0x77, 0x33, 0x30, 0x33, 0x61,
  762. 0x2f, 0x68, 0x74, 0x74, 0x70, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x76,
  763. 0x32, 0x3b, 0x76, 0x32, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  764. }
  765. var (
  766. file_user_v2_school_disable_proto_rawDescOnce sync.Once
  767. file_user_v2_school_disable_proto_rawDescData = file_user_v2_school_disable_proto_rawDesc
  768. )
  769. func file_user_v2_school_disable_proto_rawDescGZIP() []byte {
  770. file_user_v2_school_disable_proto_rawDescOnce.Do(func() {
  771. file_user_v2_school_disable_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_v2_school_disable_proto_rawDescData)
  772. })
  773. return file_user_v2_school_disable_proto_rawDescData
  774. }
  775. var file_user_v2_school_disable_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
  776. var file_user_v2_school_disable_proto_goTypes = []any{
  777. (*GetWristwatchSchoolDisableRequest)(nil), // 0: api.user.v2.GetWristwatchSchoolDisableRequest
  778. (*GetWristwatchSchoolDisableResponse)(nil), // 1: api.user.v2.GetWristwatchSchoolDisableResponse
  779. (*GetSchoolDisableRequest)(nil), // 2: api.user.v2.GetSchoolDisableRequest
  780. (*GetSchoolDisableResponse)(nil), // 3: api.user.v2.GetSchoolDisableResponse
  781. (*CreateSchoolDisableRequest)(nil), // 4: api.user.v2.CreateSchoolDisableRequest
  782. (*CreateSchoolDisableResponse)(nil), // 5: api.user.v2.CreateSchoolDisableResponse
  783. (*UpdateSchoolDisableRequest)(nil), // 6: api.user.v2.UpdateSchoolDisableRequest
  784. (*UpdateSchoolDisableResponse)(nil), // 7: api.user.v2.UpdateSchoolDisableResponse
  785. (*DeleteSchoolDisableRequest)(nil), // 8: api.user.v2.DeleteSchoolDisableRequest
  786. (*DeleteSchoolDisableResponse)(nil), // 9: api.user.v2.DeleteSchoolDisableResponse
  787. (*GetWristwatchSchoolDisableResponse_SchoolDisable)(nil), // 10: api.user.v2.GetWristwatchSchoolDisableResponse.SchoolDisable
  788. (*GetSchoolDisableResponse_SchoolDisable)(nil), // 11: api.user.v2.GetSchoolDisableResponse.SchoolDisable
  789. }
  790. var file_user_v2_school_disable_proto_depIdxs = []int32{
  791. 10, // 0: api.user.v2.GetWristwatchSchoolDisableResponse.schoolDisables:type_name -> api.user.v2.GetWristwatchSchoolDisableResponse.SchoolDisable
  792. 11, // 1: api.user.v2.GetSchoolDisableResponse.schoolDisables:type_name -> api.user.v2.GetSchoolDisableResponse.SchoolDisable
  793. 0, // 2: api.user.v2.SchoolDisable.GetWristwatchSchoolDisable:input_type -> api.user.v2.GetWristwatchSchoolDisableRequest
  794. 2, // 3: api.user.v2.SchoolDisable.GetSchoolDisable:input_type -> api.user.v2.GetSchoolDisableRequest
  795. 4, // 4: api.user.v2.SchoolDisable.CreateSchoolDisable:input_type -> api.user.v2.CreateSchoolDisableRequest
  796. 6, // 5: api.user.v2.SchoolDisable.UpdateSchoolDisable:input_type -> api.user.v2.UpdateSchoolDisableRequest
  797. 8, // 6: api.user.v2.SchoolDisable.DeleteSchoolDisable:input_type -> api.user.v2.DeleteSchoolDisableRequest
  798. 1, // 7: api.user.v2.SchoolDisable.GetWristwatchSchoolDisable:output_type -> api.user.v2.GetWristwatchSchoolDisableResponse
  799. 3, // 8: api.user.v2.SchoolDisable.GetSchoolDisable:output_type -> api.user.v2.GetSchoolDisableResponse
  800. 5, // 9: api.user.v2.SchoolDisable.CreateSchoolDisable:output_type -> api.user.v2.CreateSchoolDisableResponse
  801. 7, // 10: api.user.v2.SchoolDisable.UpdateSchoolDisable:output_type -> api.user.v2.UpdateSchoolDisableResponse
  802. 9, // 11: api.user.v2.SchoolDisable.DeleteSchoolDisable:output_type -> api.user.v2.DeleteSchoolDisableResponse
  803. 7, // [7:12] is the sub-list for method output_type
  804. 2, // [2:7] is the sub-list for method input_type
  805. 2, // [2:2] is the sub-list for extension type_name
  806. 2, // [2:2] is the sub-list for extension extendee
  807. 0, // [0:2] is the sub-list for field type_name
  808. }
  809. func init() { file_user_v2_school_disable_proto_init() }
  810. func file_user_v2_school_disable_proto_init() {
  811. if File_user_v2_school_disable_proto != nil {
  812. return
  813. }
  814. if !protoimpl.UnsafeEnabled {
  815. file_user_v2_school_disable_proto_msgTypes[0].Exporter = func(v any, i int) any {
  816. switch v := v.(*GetWristwatchSchoolDisableRequest); i {
  817. case 0:
  818. return &v.state
  819. case 1:
  820. return &v.sizeCache
  821. case 2:
  822. return &v.unknownFields
  823. default:
  824. return nil
  825. }
  826. }
  827. file_user_v2_school_disable_proto_msgTypes[1].Exporter = func(v any, i int) any {
  828. switch v := v.(*GetWristwatchSchoolDisableResponse); i {
  829. case 0:
  830. return &v.state
  831. case 1:
  832. return &v.sizeCache
  833. case 2:
  834. return &v.unknownFields
  835. default:
  836. return nil
  837. }
  838. }
  839. file_user_v2_school_disable_proto_msgTypes[2].Exporter = func(v any, i int) any {
  840. switch v := v.(*GetSchoolDisableRequest); i {
  841. case 0:
  842. return &v.state
  843. case 1:
  844. return &v.sizeCache
  845. case 2:
  846. return &v.unknownFields
  847. default:
  848. return nil
  849. }
  850. }
  851. file_user_v2_school_disable_proto_msgTypes[3].Exporter = func(v any, i int) any {
  852. switch v := v.(*GetSchoolDisableResponse); i {
  853. case 0:
  854. return &v.state
  855. case 1:
  856. return &v.sizeCache
  857. case 2:
  858. return &v.unknownFields
  859. default:
  860. return nil
  861. }
  862. }
  863. file_user_v2_school_disable_proto_msgTypes[4].Exporter = func(v any, i int) any {
  864. switch v := v.(*CreateSchoolDisableRequest); i {
  865. case 0:
  866. return &v.state
  867. case 1:
  868. return &v.sizeCache
  869. case 2:
  870. return &v.unknownFields
  871. default:
  872. return nil
  873. }
  874. }
  875. file_user_v2_school_disable_proto_msgTypes[5].Exporter = func(v any, i int) any {
  876. switch v := v.(*CreateSchoolDisableResponse); i {
  877. case 0:
  878. return &v.state
  879. case 1:
  880. return &v.sizeCache
  881. case 2:
  882. return &v.unknownFields
  883. default:
  884. return nil
  885. }
  886. }
  887. file_user_v2_school_disable_proto_msgTypes[6].Exporter = func(v any, i int) any {
  888. switch v := v.(*UpdateSchoolDisableRequest); i {
  889. case 0:
  890. return &v.state
  891. case 1:
  892. return &v.sizeCache
  893. case 2:
  894. return &v.unknownFields
  895. default:
  896. return nil
  897. }
  898. }
  899. file_user_v2_school_disable_proto_msgTypes[7].Exporter = func(v any, i int) any {
  900. switch v := v.(*UpdateSchoolDisableResponse); i {
  901. case 0:
  902. return &v.state
  903. case 1:
  904. return &v.sizeCache
  905. case 2:
  906. return &v.unknownFields
  907. default:
  908. return nil
  909. }
  910. }
  911. file_user_v2_school_disable_proto_msgTypes[8].Exporter = func(v any, i int) any {
  912. switch v := v.(*DeleteSchoolDisableRequest); i {
  913. case 0:
  914. return &v.state
  915. case 1:
  916. return &v.sizeCache
  917. case 2:
  918. return &v.unknownFields
  919. default:
  920. return nil
  921. }
  922. }
  923. file_user_v2_school_disable_proto_msgTypes[9].Exporter = func(v any, i int) any {
  924. switch v := v.(*DeleteSchoolDisableResponse); i {
  925. case 0:
  926. return &v.state
  927. case 1:
  928. return &v.sizeCache
  929. case 2:
  930. return &v.unknownFields
  931. default:
  932. return nil
  933. }
  934. }
  935. file_user_v2_school_disable_proto_msgTypes[10].Exporter = func(v any, i int) any {
  936. switch v := v.(*GetWristwatchSchoolDisableResponse_SchoolDisable); i {
  937. case 0:
  938. return &v.state
  939. case 1:
  940. return &v.sizeCache
  941. case 2:
  942. return &v.unknownFields
  943. default:
  944. return nil
  945. }
  946. }
  947. file_user_v2_school_disable_proto_msgTypes[11].Exporter = func(v any, i int) any {
  948. switch v := v.(*GetSchoolDisableResponse_SchoolDisable); i {
  949. case 0:
  950. return &v.state
  951. case 1:
  952. return &v.sizeCache
  953. case 2:
  954. return &v.unknownFields
  955. default:
  956. return nil
  957. }
  958. }
  959. }
  960. type x struct{}
  961. out := protoimpl.TypeBuilder{
  962. File: protoimpl.DescBuilder{
  963. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  964. RawDescriptor: file_user_v2_school_disable_proto_rawDesc,
  965. NumEnums: 0,
  966. NumMessages: 12,
  967. NumExtensions: 0,
  968. NumServices: 1,
  969. },
  970. GoTypes: file_user_v2_school_disable_proto_goTypes,
  971. DependencyIndexes: file_user_v2_school_disable_proto_depIdxs,
  972. MessageInfos: file_user_v2_school_disable_proto_msgTypes,
  973. }.Build()
  974. File_user_v2_school_disable_proto = out.File
  975. file_user_v2_school_disable_proto_rawDesc = nil
  976. file_user_v2_school_disable_proto_goTypes = nil
  977. file_user_v2_school_disable_proto_depIdxs = nil
  978. }