powerCheck.pb.go 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.0
  4. // protoc v3.15.5
  5. // source: powerCheck.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. //公共返回 status
  20. type PowerCheckResp struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. ErrorMsg string `protobuf:"bytes,1,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  25. ErrorCode int64 `protobuf:"varint,2,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  26. Status int64 `protobuf:"varint,3,opt,name=status,proto3" json:"status,omitempty"`
  27. }
  28. func (x *PowerCheckResp) Reset() {
  29. *x = PowerCheckResp{}
  30. if protoimpl.UnsafeEnabled {
  31. mi := &file_powerCheck_proto_msgTypes[0]
  32. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  33. ms.StoreMessageInfo(mi)
  34. }
  35. }
  36. func (x *PowerCheckResp) String() string {
  37. return protoimpl.X.MessageStringOf(x)
  38. }
  39. func (*PowerCheckResp) ProtoMessage() {}
  40. func (x *PowerCheckResp) ProtoReflect() protoreflect.Message {
  41. mi := &file_powerCheck_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 PowerCheckResp.ProtoReflect.Descriptor instead.
  52. func (*PowerCheckResp) Descriptor() ([]byte, []int) {
  53. return file_powerCheck_proto_rawDescGZIP(), []int{0}
  54. }
  55. func (x *PowerCheckResp) GetErrorMsg() string {
  56. if x != nil {
  57. return x.ErrorMsg
  58. }
  59. return ""
  60. }
  61. func (x *PowerCheckResp) GetErrorCode() int64 {
  62. if x != nil {
  63. return x.ErrorCode
  64. }
  65. return 0
  66. }
  67. func (x *PowerCheckResp) GetStatus() int64 {
  68. if x != nil {
  69. return x.Status
  70. }
  71. return 0
  72. }
  73. type CheckReq struct {
  74. state protoimpl.MessageState
  75. sizeCache protoimpl.SizeCache
  76. unknownFields protoimpl.UnknownFields
  77. Appid string `protobuf:"bytes,1,opt,name=appid,proto3" json:"appid,omitempty"`
  78. Userid string `protobuf:"bytes,2,opt,name=userid,proto3" json:"userid,omitempty"` //mongodb用户id
  79. BaseUserId int64 `protobuf:"varint,3,opt,name=baseUserId,proto3" json:"baseUserId,omitempty"` //base_user用户id
  80. AccountId int64 `protobuf:"varint,4,opt,name=accountId,proto3" json:"accountId,omitempty"` //账户id
  81. EntId int64 `protobuf:"varint,5,opt,name=entId,proto3" json:"entId,omitempty"` //
  82. PositionType int64 `protobuf:"varint,6,opt,name=positionType,proto3" json:"positionType,omitempty"` //职位类型 0个人 1企业
  83. PositionId int64 `protobuf:"varint,7,opt,name=positionId,proto3" json:"positionId,omitempty"` //职位id
  84. }
  85. func (x *CheckReq) Reset() {
  86. *x = CheckReq{}
  87. if protoimpl.UnsafeEnabled {
  88. mi := &file_powerCheck_proto_msgTypes[1]
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. ms.StoreMessageInfo(mi)
  91. }
  92. }
  93. func (x *CheckReq) String() string {
  94. return protoimpl.X.MessageStringOf(x)
  95. }
  96. func (*CheckReq) ProtoMessage() {}
  97. func (x *CheckReq) ProtoReflect() protoreflect.Message {
  98. mi := &file_powerCheck_proto_msgTypes[1]
  99. if protoimpl.UnsafeEnabled && x != nil {
  100. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  101. if ms.LoadMessageInfo() == nil {
  102. ms.StoreMessageInfo(mi)
  103. }
  104. return ms
  105. }
  106. return mi.MessageOf(x)
  107. }
  108. // Deprecated: Use CheckReq.ProtoReflect.Descriptor instead.
  109. func (*CheckReq) Descriptor() ([]byte, []int) {
  110. return file_powerCheck_proto_rawDescGZIP(), []int{1}
  111. }
  112. func (x *CheckReq) GetAppid() string {
  113. if x != nil {
  114. return x.Appid
  115. }
  116. return ""
  117. }
  118. func (x *CheckReq) GetUserid() string {
  119. if x != nil {
  120. return x.Userid
  121. }
  122. return ""
  123. }
  124. func (x *CheckReq) GetBaseUserId() int64 {
  125. if x != nil {
  126. return x.BaseUserId
  127. }
  128. return 0
  129. }
  130. func (x *CheckReq) GetAccountId() int64 {
  131. if x != nil {
  132. return x.AccountId
  133. }
  134. return 0
  135. }
  136. func (x *CheckReq) GetEntId() int64 {
  137. if x != nil {
  138. return x.EntId
  139. }
  140. return 0
  141. }
  142. func (x *CheckReq) GetPositionType() int64 {
  143. if x != nil {
  144. return x.PositionType
  145. }
  146. return 0
  147. }
  148. func (x *CheckReq) GetPositionId() int64 {
  149. if x != nil {
  150. return x.PositionId
  151. }
  152. return 0
  153. }
  154. type CheckResp struct {
  155. state protoimpl.MessageState
  156. sizeCache protoimpl.SizeCache
  157. unknownFields protoimpl.UnknownFields
  158. ErrorMsg string `protobuf:"bytes,1,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  159. ErrorCode int64 `protobuf:"varint,2,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  160. Vip *Vip `protobuf:"bytes,3,opt,name=vip,proto3" json:"vip,omitempty"`
  161. Member *Member `protobuf:"bytes,4,opt,name=member,proto3" json:"member,omitempty"`
  162. Entniche *Entniche `protobuf:"bytes,5,opt,name=entniche,proto3" json:"entniche,omitempty"`
  163. Ent *Ent `protobuf:"bytes,6,opt,name=ent,proto3" json:"ent,omitempty"`
  164. Free *Free `protobuf:"bytes,7,opt,name=free,proto3" json:"free,omitempty"`
  165. }
  166. func (x *CheckResp) Reset() {
  167. *x = CheckResp{}
  168. if protoimpl.UnsafeEnabled {
  169. mi := &file_powerCheck_proto_msgTypes[2]
  170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  171. ms.StoreMessageInfo(mi)
  172. }
  173. }
  174. func (x *CheckResp) String() string {
  175. return protoimpl.X.MessageStringOf(x)
  176. }
  177. func (*CheckResp) ProtoMessage() {}
  178. func (x *CheckResp) ProtoReflect() protoreflect.Message {
  179. mi := &file_powerCheck_proto_msgTypes[2]
  180. if protoimpl.UnsafeEnabled && x != nil {
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. if ms.LoadMessageInfo() == nil {
  183. ms.StoreMessageInfo(mi)
  184. }
  185. return ms
  186. }
  187. return mi.MessageOf(x)
  188. }
  189. // Deprecated: Use CheckResp.ProtoReflect.Descriptor instead.
  190. func (*CheckResp) Descriptor() ([]byte, []int) {
  191. return file_powerCheck_proto_rawDescGZIP(), []int{2}
  192. }
  193. func (x *CheckResp) GetErrorMsg() string {
  194. if x != nil {
  195. return x.ErrorMsg
  196. }
  197. return ""
  198. }
  199. func (x *CheckResp) GetErrorCode() int64 {
  200. if x != nil {
  201. return x.ErrorCode
  202. }
  203. return 0
  204. }
  205. func (x *CheckResp) GetVip() *Vip {
  206. if x != nil {
  207. return x.Vip
  208. }
  209. return nil
  210. }
  211. func (x *CheckResp) GetMember() *Member {
  212. if x != nil {
  213. return x.Member
  214. }
  215. return nil
  216. }
  217. func (x *CheckResp) GetEntniche() *Entniche {
  218. if x != nil {
  219. return x.Entniche
  220. }
  221. return nil
  222. }
  223. func (x *CheckResp) GetEnt() *Ent {
  224. if x != nil {
  225. return x.Ent
  226. }
  227. return nil
  228. }
  229. func (x *CheckResp) GetFree() *Free {
  230. if x != nil {
  231. return x.Free
  232. }
  233. return nil
  234. }
  235. //超级订阅相关
  236. type Vip struct {
  237. state protoimpl.MessageState
  238. sizeCache protoimpl.SizeCache
  239. unknownFields protoimpl.UnknownFields
  240. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"` //超级订阅状态
  241. StartTime int64 `protobuf:"varint,2,opt,name=startTime,proto3" json:"startTime,omitempty"` //超级订阅开始时间戳
  242. EndTime int64 `protobuf:"varint,3,opt,name=endTime,proto3" json:"endTime,omitempty"` //超级订阅结束时间戳
  243. Upgrade int64 `protobuf:"varint,4,opt,name=upgrade,proto3" json:"upgrade,omitempty"` //是否是升级版超级订阅;0否 1是
  244. Areacount int64 `protobuf:"varint,5,opt,name=areacount,proto3" json:"areacount,omitempty"` //购买省份数量; -1全部
  245. Buyerclasscount int64 `protobuf:"varint,6,opt,name=buyerclasscount,proto3" json:"buyerclasscount,omitempty"` //购买采购单位数量; -1全部
  246. MaxKeyLength int64 `protobuf:"varint,7,opt,name=maxKeyLength,proto3" json:"maxKeyLength,omitempty"` //最大关键词数量限制
  247. PowerType int64 `protobuf:"varint,8,opt,name=powerType,proto3" json:"powerType,omitempty"` //超级订阅权益类型;0无 1个人 2企业
  248. VipPower int64 `protobuf:"varint,9,opt,name=vipPower,proto3" json:"vipPower,omitempty"` //是否分配了超级订阅;0:否 1:是
  249. FileNum int64 `protobuf:"varint,10,opt,name=fileNum,proto3" json:"fileNum,omitempty"` //超级订阅用户附件下载包的剩余次数
  250. HasKey bool `protobuf:"varint,11,opt,name=hasKey,proto3" json:"hasKey,omitempty"` //是否有关键词
  251. NewCitys []int64 `protobuf:"varint,12,rep,packed,name=newCitys,proto3" json:"newCitys,omitempty"` //城市数量
  252. Original int64 `protobuf:"varint,13,opt,name=original,proto3" json:"original,omitempty"` //超级订阅用户查看原文次数/每月
  253. }
  254. func (x *Vip) Reset() {
  255. *x = Vip{}
  256. if protoimpl.UnsafeEnabled {
  257. mi := &file_powerCheck_proto_msgTypes[3]
  258. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  259. ms.StoreMessageInfo(mi)
  260. }
  261. }
  262. func (x *Vip) String() string {
  263. return protoimpl.X.MessageStringOf(x)
  264. }
  265. func (*Vip) ProtoMessage() {}
  266. func (x *Vip) ProtoReflect() protoreflect.Message {
  267. mi := &file_powerCheck_proto_msgTypes[3]
  268. if protoimpl.UnsafeEnabled && x != nil {
  269. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  270. if ms.LoadMessageInfo() == nil {
  271. ms.StoreMessageInfo(mi)
  272. }
  273. return ms
  274. }
  275. return mi.MessageOf(x)
  276. }
  277. // Deprecated: Use Vip.ProtoReflect.Descriptor instead.
  278. func (*Vip) Descriptor() ([]byte, []int) {
  279. return file_powerCheck_proto_rawDescGZIP(), []int{3}
  280. }
  281. func (x *Vip) GetStatus() int64 {
  282. if x != nil {
  283. return x.Status
  284. }
  285. return 0
  286. }
  287. func (x *Vip) GetStartTime() int64 {
  288. if x != nil {
  289. return x.StartTime
  290. }
  291. return 0
  292. }
  293. func (x *Vip) GetEndTime() int64 {
  294. if x != nil {
  295. return x.EndTime
  296. }
  297. return 0
  298. }
  299. func (x *Vip) GetUpgrade() int64 {
  300. if x != nil {
  301. return x.Upgrade
  302. }
  303. return 0
  304. }
  305. func (x *Vip) GetAreacount() int64 {
  306. if x != nil {
  307. return x.Areacount
  308. }
  309. return 0
  310. }
  311. func (x *Vip) GetBuyerclasscount() int64 {
  312. if x != nil {
  313. return x.Buyerclasscount
  314. }
  315. return 0
  316. }
  317. func (x *Vip) GetMaxKeyLength() int64 {
  318. if x != nil {
  319. return x.MaxKeyLength
  320. }
  321. return 0
  322. }
  323. func (x *Vip) GetPowerType() int64 {
  324. if x != nil {
  325. return x.PowerType
  326. }
  327. return 0
  328. }
  329. func (x *Vip) GetVipPower() int64 {
  330. if x != nil {
  331. return x.VipPower
  332. }
  333. return 0
  334. }
  335. func (x *Vip) GetFileNum() int64 {
  336. if x != nil {
  337. return x.FileNum
  338. }
  339. return 0
  340. }
  341. func (x *Vip) GetHasKey() bool {
  342. if x != nil {
  343. return x.HasKey
  344. }
  345. return false
  346. }
  347. func (x *Vip) GetNewCitys() []int64 {
  348. if x != nil {
  349. return x.NewCitys
  350. }
  351. return nil
  352. }
  353. func (x *Vip) GetOriginal() int64 {
  354. if x != nil {
  355. return x.Original
  356. }
  357. return 0
  358. }
  359. //大会员相关
  360. type Member struct {
  361. state protoimpl.MessageState
  362. sizeCache protoimpl.SizeCache
  363. unknownFields protoimpl.UnknownFields
  364. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"` //大会员状态
  365. StartTime int64 `protobuf:"varint,2,opt,name=startTime,proto3" json:"startTime,omitempty"` //开始时间戳
  366. EndTime int64 `protobuf:"varint,3,opt,name=endTime,proto3" json:"endTime,omitempty"` //结束时间戳
  367. MemberName string `protobuf:"bytes,4,opt,name=memberName,proto3" json:"memberName,omitempty"` //大会员版本名称
  368. MemberPowerList []int64 `protobuf:"varint,5,rep,packed,name=memberPowerList,proto3" json:"memberPowerList,omitempty"` //大会员权益数组
  369. IsMemberTrial int64 `protobuf:"varint,6,opt,name=isMemberTrial,proto3" json:"isMemberTrial,omitempty"` //是否是大会员试用;0否 1是
  370. PowerType int64 `protobuf:"varint,7,opt,name=powerType,proto3" json:"powerType,omitempty"` //大会员权益类型;0无 1个人 2企业
  371. MemberPower int64 `protobuf:"varint,8,opt,name=memberPower,proto3" json:"memberPower,omitempty"` //是否分配了大会员;0:否 1:是
  372. IsSubCount int64 `protobuf:"varint,9,opt,name=isSubCount,proto3" json:"isSubCount,omitempty"` //是否是子账号 0否 1是
  373. MaxKeyLength int64 `protobuf:"varint,10,opt,name=maxKeyLength,proto3" json:"maxKeyLength,omitempty"` //最大关键词数量限制
  374. EntNum int64 `protobuf:"varint,11,opt,name=entNum,proto3" json:"entNum,omitempty"` //企业情报监控 企业中标动态数量
  375. ProNum int64 `protobuf:"varint,12,opt,name=proNum,proto3" json:"proNum,omitempty"` //项目进度监控数量
  376. DailyNum int64 `protobuf:"varint,13,opt,name=dailyNum,proto3" json:"dailyNum,omitempty"` //结构化数据(单日限量包数量)
  377. Customers int64 `protobuf:"varint,14,opt,name=customers,proto3" json:"customers,omitempty"` //潜在客户数量
  378. Pid string `protobuf:"bytes,15,opt,name=pid,proto3" json:"pid,omitempty"` //主帐号id
  379. Used bool `protobuf:"varint,16,opt,name=used,proto3" json:"used,omitempty"` //是否使用过大会员初始化
  380. HasKey bool `protobuf:"varint,17,opt,name=hasKey,proto3" json:"hasKey,omitempty"` //是否有关键词
  381. Original int64 `protobuf:"varint,18,opt,name=original,proto3" json:"original,omitempty"` //大会员用户查看原文次数/每月
  382. }
  383. func (x *Member) Reset() {
  384. *x = Member{}
  385. if protoimpl.UnsafeEnabled {
  386. mi := &file_powerCheck_proto_msgTypes[4]
  387. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  388. ms.StoreMessageInfo(mi)
  389. }
  390. }
  391. func (x *Member) String() string {
  392. return protoimpl.X.MessageStringOf(x)
  393. }
  394. func (*Member) ProtoMessage() {}
  395. func (x *Member) ProtoReflect() protoreflect.Message {
  396. mi := &file_powerCheck_proto_msgTypes[4]
  397. if protoimpl.UnsafeEnabled && x != nil {
  398. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  399. if ms.LoadMessageInfo() == nil {
  400. ms.StoreMessageInfo(mi)
  401. }
  402. return ms
  403. }
  404. return mi.MessageOf(x)
  405. }
  406. // Deprecated: Use Member.ProtoReflect.Descriptor instead.
  407. func (*Member) Descriptor() ([]byte, []int) {
  408. return file_powerCheck_proto_rawDescGZIP(), []int{4}
  409. }
  410. func (x *Member) GetStatus() int64 {
  411. if x != nil {
  412. return x.Status
  413. }
  414. return 0
  415. }
  416. func (x *Member) GetStartTime() int64 {
  417. if x != nil {
  418. return x.StartTime
  419. }
  420. return 0
  421. }
  422. func (x *Member) GetEndTime() int64 {
  423. if x != nil {
  424. return x.EndTime
  425. }
  426. return 0
  427. }
  428. func (x *Member) GetMemberName() string {
  429. if x != nil {
  430. return x.MemberName
  431. }
  432. return ""
  433. }
  434. func (x *Member) GetMemberPowerList() []int64 {
  435. if x != nil {
  436. return x.MemberPowerList
  437. }
  438. return nil
  439. }
  440. func (x *Member) GetIsMemberTrial() int64 {
  441. if x != nil {
  442. return x.IsMemberTrial
  443. }
  444. return 0
  445. }
  446. func (x *Member) GetPowerType() int64 {
  447. if x != nil {
  448. return x.PowerType
  449. }
  450. return 0
  451. }
  452. func (x *Member) GetMemberPower() int64 {
  453. if x != nil {
  454. return x.MemberPower
  455. }
  456. return 0
  457. }
  458. func (x *Member) GetIsSubCount() int64 {
  459. if x != nil {
  460. return x.IsSubCount
  461. }
  462. return 0
  463. }
  464. func (x *Member) GetMaxKeyLength() int64 {
  465. if x != nil {
  466. return x.MaxKeyLength
  467. }
  468. return 0
  469. }
  470. func (x *Member) GetEntNum() int64 {
  471. if x != nil {
  472. return x.EntNum
  473. }
  474. return 0
  475. }
  476. func (x *Member) GetProNum() int64 {
  477. if x != nil {
  478. return x.ProNum
  479. }
  480. return 0
  481. }
  482. func (x *Member) GetDailyNum() int64 {
  483. if x != nil {
  484. return x.DailyNum
  485. }
  486. return 0
  487. }
  488. func (x *Member) GetCustomers() int64 {
  489. if x != nil {
  490. return x.Customers
  491. }
  492. return 0
  493. }
  494. func (x *Member) GetPid() string {
  495. if x != nil {
  496. return x.Pid
  497. }
  498. return ""
  499. }
  500. func (x *Member) GetUsed() bool {
  501. if x != nil {
  502. return x.Used
  503. }
  504. return false
  505. }
  506. func (x *Member) GetHasKey() bool {
  507. if x != nil {
  508. return x.HasKey
  509. }
  510. return false
  511. }
  512. func (x *Member) GetOriginal() int64 {
  513. if x != nil {
  514. return x.Original
  515. }
  516. return 0
  517. }
  518. //商机管理相关
  519. type Entniche struct {
  520. state protoimpl.MessageState
  521. sizeCache protoimpl.SizeCache
  522. unknownFields protoimpl.UnknownFields
  523. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"` //商机管理相关
  524. StartTime int64 `protobuf:"varint,2,opt,name=startTime,proto3" json:"startTime,omitempty"` //开始时间戳
  525. EndTime int64 `protobuf:"varint,3,opt,name=endTime,proto3" json:"endTime,omitempty"` //结束时间戳
  526. PowerSource int64 `protobuf:"varint,4,opt,name=powerSource,proto3" json:"powerSource,omitempty"` //商机管理权限开通来源;1:赠送的商机管理服务
  527. IsEntPower int64 `protobuf:"varint,5,opt,name=isEntPower,proto3" json:"isEntPower,omitempty"` //是否分配权限;0:未分配,1:已分配
  528. IsNew int64 `protobuf:"varint,6,opt,name=isNew,proto3" json:"isNew,omitempty"` //是否是新版商机管理 0不是 1是
  529. HasKey bool `protobuf:"varint,7,opt,name=hasKey,proto3" json:"hasKey,omitempty"` //是否有关键词
  530. Model int64 `protobuf:"varint,8,opt,name=model,proto3" json:"model,omitempty"` // 1-统一订阅,2-个人订阅
  531. Original int64 `protobuf:"varint,9,opt,name=original,proto3" json:"original,omitempty"` //商机管理用户查看原文次数/每月
  532. }
  533. func (x *Entniche) Reset() {
  534. *x = Entniche{}
  535. if protoimpl.UnsafeEnabled {
  536. mi := &file_powerCheck_proto_msgTypes[5]
  537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  538. ms.StoreMessageInfo(mi)
  539. }
  540. }
  541. func (x *Entniche) String() string {
  542. return protoimpl.X.MessageStringOf(x)
  543. }
  544. func (*Entniche) ProtoMessage() {}
  545. func (x *Entniche) ProtoReflect() protoreflect.Message {
  546. mi := &file_powerCheck_proto_msgTypes[5]
  547. if protoimpl.UnsafeEnabled && x != nil {
  548. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  549. if ms.LoadMessageInfo() == nil {
  550. ms.StoreMessageInfo(mi)
  551. }
  552. return ms
  553. }
  554. return mi.MessageOf(x)
  555. }
  556. // Deprecated: Use Entniche.ProtoReflect.Descriptor instead.
  557. func (*Entniche) Descriptor() ([]byte, []int) {
  558. return file_powerCheck_proto_rawDescGZIP(), []int{5}
  559. }
  560. func (x *Entniche) GetStatus() int64 {
  561. if x != nil {
  562. return x.Status
  563. }
  564. return 0
  565. }
  566. func (x *Entniche) GetStartTime() int64 {
  567. if x != nil {
  568. return x.StartTime
  569. }
  570. return 0
  571. }
  572. func (x *Entniche) GetEndTime() int64 {
  573. if x != nil {
  574. return x.EndTime
  575. }
  576. return 0
  577. }
  578. func (x *Entniche) GetPowerSource() int64 {
  579. if x != nil {
  580. return x.PowerSource
  581. }
  582. return 0
  583. }
  584. func (x *Entniche) GetIsEntPower() int64 {
  585. if x != nil {
  586. return x.IsEntPower
  587. }
  588. return 0
  589. }
  590. func (x *Entniche) GetIsNew() int64 {
  591. if x != nil {
  592. return x.IsNew
  593. }
  594. return 0
  595. }
  596. func (x *Entniche) GetHasKey() bool {
  597. if x != nil {
  598. return x.HasKey
  599. }
  600. return false
  601. }
  602. func (x *Entniche) GetModel() int64 {
  603. if x != nil {
  604. return x.Model
  605. }
  606. return 0
  607. }
  608. func (x *Entniche) GetOriginal() int64 {
  609. if x != nil {
  610. return x.Original
  611. }
  612. return 0
  613. }
  614. //企业相关
  615. type Ent struct {
  616. state protoimpl.MessageState
  617. sizeCache protoimpl.SizeCache
  618. unknownFields protoimpl.UnknownFields
  619. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //企业名称
  620. EntRoleId int64 `protobuf:"varint,2,opt,name=entRoleId,proto3" json:"entRoleId,omitempty"` //商机管理角色:1:企业管理员;2:部门管理员
  621. EntAuthStatus int64 `protobuf:"varint,3,opt,name=entAuthStatus,proto3" json:"entAuthStatus,omitempty"` //企业是否认证 -1 未通过,0 未认证,1 已认证
  622. EntAuthReason string `protobuf:"bytes,4,opt,name=entAuthReason,proto3" json:"entAuthReason,omitempty"` //认证不通过原因
  623. EntSubscribe int64 `protobuf:"varint,5,opt,name=entSubscribe,proto3" json:"entSubscribe,omitempty"` //是否有企业订阅权限;0:否 1:是
  624. EntSubscribeManager int64 `protobuf:"varint,6,opt,name=entSubscribeManager,proto3" json:"entSubscribeManager,omitempty"` //是否有企业订阅管理权限;0:否 1:是
  625. PowerSource int64 `protobuf:"varint,7,opt,name=powerSource,proto3" json:"powerSource,omitempty"` //商机管理权限开通来源;1:赠送的商机管理服务
  626. DeptSubscribe int64 `protobuf:"varint,8,opt,name=deptSubscribe,proto3" json:"deptSubscribe,omitempty"` //各部门是否可以自行订阅;0:否 1:是
  627. PrivateGD bool `protobuf:"varint,9,opt,name=privateGD,proto3" json:"privateGD,omitempty"` //广东移动DICT 用户,用于查看画像
  628. BuyVip int64 `protobuf:"varint,10,opt,name=buyVip,proto3" json:"buyVip,omitempty"` //是否购买超级订阅
  629. BuyMember int64 `protobuf:"varint,11,opt,name=buyMember,proto3" json:"buyMember,omitempty"` //是否购买大会员
  630. Services bool `protobuf:"varint,12,opt,name=Services,proto3" json:"Services,omitempty"` //是否购买企业级应用服务
  631. }
  632. func (x *Ent) Reset() {
  633. *x = Ent{}
  634. if protoimpl.UnsafeEnabled {
  635. mi := &file_powerCheck_proto_msgTypes[6]
  636. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  637. ms.StoreMessageInfo(mi)
  638. }
  639. }
  640. func (x *Ent) String() string {
  641. return protoimpl.X.MessageStringOf(x)
  642. }
  643. func (*Ent) ProtoMessage() {}
  644. func (x *Ent) ProtoReflect() protoreflect.Message {
  645. mi := &file_powerCheck_proto_msgTypes[6]
  646. if protoimpl.UnsafeEnabled && x != nil {
  647. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  648. if ms.LoadMessageInfo() == nil {
  649. ms.StoreMessageInfo(mi)
  650. }
  651. return ms
  652. }
  653. return mi.MessageOf(x)
  654. }
  655. // Deprecated: Use Ent.ProtoReflect.Descriptor instead.
  656. func (*Ent) Descriptor() ([]byte, []int) {
  657. return file_powerCheck_proto_rawDescGZIP(), []int{6}
  658. }
  659. func (x *Ent) GetName() string {
  660. if x != nil {
  661. return x.Name
  662. }
  663. return ""
  664. }
  665. func (x *Ent) GetEntRoleId() int64 {
  666. if x != nil {
  667. return x.EntRoleId
  668. }
  669. return 0
  670. }
  671. func (x *Ent) GetEntAuthStatus() int64 {
  672. if x != nil {
  673. return x.EntAuthStatus
  674. }
  675. return 0
  676. }
  677. func (x *Ent) GetEntAuthReason() string {
  678. if x != nil {
  679. return x.EntAuthReason
  680. }
  681. return ""
  682. }
  683. func (x *Ent) GetEntSubscribe() int64 {
  684. if x != nil {
  685. return x.EntSubscribe
  686. }
  687. return 0
  688. }
  689. func (x *Ent) GetEntSubscribeManager() int64 {
  690. if x != nil {
  691. return x.EntSubscribeManager
  692. }
  693. return 0
  694. }
  695. func (x *Ent) GetPowerSource() int64 {
  696. if x != nil {
  697. return x.PowerSource
  698. }
  699. return 0
  700. }
  701. func (x *Ent) GetDeptSubscribe() int64 {
  702. if x != nil {
  703. return x.DeptSubscribe
  704. }
  705. return 0
  706. }
  707. func (x *Ent) GetPrivateGD() bool {
  708. if x != nil {
  709. return x.PrivateGD
  710. }
  711. return false
  712. }
  713. func (x *Ent) GetBuyVip() int64 {
  714. if x != nil {
  715. return x.BuyVip
  716. }
  717. return 0
  718. }
  719. func (x *Ent) GetBuyMember() int64 {
  720. if x != nil {
  721. return x.BuyMember
  722. }
  723. return 0
  724. }
  725. func (x *Ent) GetServices() bool {
  726. if x != nil {
  727. return x.Services
  728. }
  729. return false
  730. }
  731. //免费权益相关
  732. type Free struct {
  733. state protoimpl.MessageState
  734. sizeCache protoimpl.SizeCache
  735. unknownFields protoimpl.UnknownFields
  736. IsFree bool `protobuf:"varint,1,opt,name=isFree,proto3" json:"isFree,omitempty"` //是否是免费用户
  737. FreeHasKey bool `protobuf:"varint,2,opt,name=freeHasKey,proto3" json:"freeHasKey,omitempty"` //免费用户是否有关键词
  738. FreeEntPort int64 `protobuf:"varint,3,opt,name=freeEntPort,proto3" json:"freeEntPort,omitempty"` //免费用户可查看企业画像次数
  739. FreeBuyerPort int64 `protobuf:"varint,4,opt,name=freeBuyerPort,proto3" json:"freeBuyerPort,omitempty"` //免费用户可查看采购单位画像次数
  740. FreeFile int64 `protobuf:"varint,5,opt,name=freeFile,proto3" json:"freeFile,omitempty"` //免费用户可以进行附件下载次数
  741. Registedate int64 `protobuf:"varint,6,opt,name=registedate,proto3" json:"registedate,omitempty"` //注册时间
  742. IsUpgrade bool `protobuf:"varint,7,opt,name=isUpgrade,proto3" json:"isUpgrade,omitempty"` //是否是新免费用户
  743. Mail string `protobuf:"bytes,8,opt,name=mail,proto3" json:"mail,omitempty"`
  744. Phone string `protobuf:"bytes,9,opt,name=phone,proto3" json:"phone,omitempty"` //手机号
  745. TsGuide int64 `protobuf:"varint,10,opt,name=tsGuide,proto3" json:"tsGuide,omitempty"` //pc订阅关键词,不再走向导页
  746. MemberApppushunread int64 `protobuf:"varint,11,opt,name=memberApppushunread,proto3" json:"memberApppushunread,omitempty"` //已读未读
  747. EntnicheApppushunread int64 `protobuf:"varint,12,opt,name=entnicheApppushunread,proto3" json:"entnicheApppushunread,omitempty"` //已读未读
  748. Apppushunread int64 `protobuf:"varint,13,opt,name=apppushunread,proto3" json:"apppushunread,omitempty"` //已读未读
  749. OjyLength int64 `protobuf:"varint,14,opt,name=ojyLength,proto3" json:"ojyLength,omitempty"` //ojy的长度
  750. Original int64 `protobuf:"varint,15,opt,name=original,proto3" json:"original,omitempty"` //免费用户查看原文次数/每月
  751. }
  752. func (x *Free) Reset() {
  753. *x = Free{}
  754. if protoimpl.UnsafeEnabled {
  755. mi := &file_powerCheck_proto_msgTypes[7]
  756. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  757. ms.StoreMessageInfo(mi)
  758. }
  759. }
  760. func (x *Free) String() string {
  761. return protoimpl.X.MessageStringOf(x)
  762. }
  763. func (*Free) ProtoMessage() {}
  764. func (x *Free) ProtoReflect() protoreflect.Message {
  765. mi := &file_powerCheck_proto_msgTypes[7]
  766. if protoimpl.UnsafeEnabled && x != nil {
  767. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  768. if ms.LoadMessageInfo() == nil {
  769. ms.StoreMessageInfo(mi)
  770. }
  771. return ms
  772. }
  773. return mi.MessageOf(x)
  774. }
  775. // Deprecated: Use Free.ProtoReflect.Descriptor instead.
  776. func (*Free) Descriptor() ([]byte, []int) {
  777. return file_powerCheck_proto_rawDescGZIP(), []int{7}
  778. }
  779. func (x *Free) GetIsFree() bool {
  780. if x != nil {
  781. return x.IsFree
  782. }
  783. return false
  784. }
  785. func (x *Free) GetFreeHasKey() bool {
  786. if x != nil {
  787. return x.FreeHasKey
  788. }
  789. return false
  790. }
  791. func (x *Free) GetFreeEntPort() int64 {
  792. if x != nil {
  793. return x.FreeEntPort
  794. }
  795. return 0
  796. }
  797. func (x *Free) GetFreeBuyerPort() int64 {
  798. if x != nil {
  799. return x.FreeBuyerPort
  800. }
  801. return 0
  802. }
  803. func (x *Free) GetFreeFile() int64 {
  804. if x != nil {
  805. return x.FreeFile
  806. }
  807. return 0
  808. }
  809. func (x *Free) GetRegistedate() int64 {
  810. if x != nil {
  811. return x.Registedate
  812. }
  813. return 0
  814. }
  815. func (x *Free) GetIsUpgrade() bool {
  816. if x != nil {
  817. return x.IsUpgrade
  818. }
  819. return false
  820. }
  821. func (x *Free) GetMail() string {
  822. if x != nil {
  823. return x.Mail
  824. }
  825. return ""
  826. }
  827. func (x *Free) GetPhone() string {
  828. if x != nil {
  829. return x.Phone
  830. }
  831. return ""
  832. }
  833. func (x *Free) GetTsGuide() int64 {
  834. if x != nil {
  835. return x.TsGuide
  836. }
  837. return 0
  838. }
  839. func (x *Free) GetMemberApppushunread() int64 {
  840. if x != nil {
  841. return x.MemberApppushunread
  842. }
  843. return 0
  844. }
  845. func (x *Free) GetEntnicheApppushunread() int64 {
  846. if x != nil {
  847. return x.EntnicheApppushunread
  848. }
  849. return 0
  850. }
  851. func (x *Free) GetApppushunread() int64 {
  852. if x != nil {
  853. return x.Apppushunread
  854. }
  855. return 0
  856. }
  857. func (x *Free) GetOjyLength() int64 {
  858. if x != nil {
  859. return x.OjyLength
  860. }
  861. return 0
  862. }
  863. func (x *Free) GetOriginal() int64 {
  864. if x != nil {
  865. return x.Original
  866. }
  867. return 0
  868. }
  869. var File_powerCheck_proto protoreflect.FileDescriptor
  870. var file_powerCheck_proto_rawDesc = []byte{
  871. 0x0a, 0x10, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x2e, 0x70, 0x72, 0x6f,
  872. 0x74, 0x6f, 0x22, 0x64, 0x0a, 0x0e, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b,
  873. 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  874. 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  875. 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  876. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
  877. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  878. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xd0, 0x01, 0x0a, 0x08, 0x43, 0x68, 0x65,
  879. 0x63, 0x6b, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01,
  880. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75,
  881. 0x73, 0x65, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65,
  882. 0x72, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49,
  883. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65,
  884. 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
  885. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
  886. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  887. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74,
  888. 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70,
  889. 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70,
  890. 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
  891. 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0xda, 0x01, 0x0a, 0x09,
  892. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  893. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  894. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f,
  895. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f,
  896. 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x03, 0x76, 0x69, 0x70, 0x18, 0x03, 0x20, 0x01,
  897. 0x28, 0x0b, 0x32, 0x04, 0x2e, 0x56, 0x69, 0x70, 0x52, 0x03, 0x76, 0x69, 0x70, 0x12, 0x1f, 0x0a,
  898. 0x06, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e,
  899. 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x06, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x25,
  900. 0x0a, 0x08, 0x65, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b,
  901. 0x32, 0x09, 0x2e, 0x45, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x52, 0x08, 0x65, 0x6e, 0x74,
  902. 0x6e, 0x69, 0x63, 0x68, 0x65, 0x12, 0x16, 0x0a, 0x03, 0x65, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01,
  903. 0x28, 0x0b, 0x32, 0x04, 0x2e, 0x45, 0x6e, 0x74, 0x52, 0x03, 0x65, 0x6e, 0x74, 0x12, 0x19, 0x0a,
  904. 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x05, 0x2e, 0x46, 0x72,
  905. 0x65, 0x65, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x22, 0xff, 0x02, 0x0a, 0x03, 0x56, 0x69, 0x70,
  906. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  907. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72,
  908. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61,
  909. 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d,
  910. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  911. 0x12, 0x18, 0x0a, 0x07, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  912. 0x03, 0x52, 0x07, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x72,
  913. 0x65, 0x61, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61,
  914. 0x72, 0x65, 0x61, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x28, 0x0a, 0x0f, 0x62, 0x75, 0x79, 0x65,
  915. 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28,
  916. 0x03, 0x52, 0x0f, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x63, 0x6f, 0x75,
  917. 0x6e, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x4b, 0x65, 0x79, 0x4c, 0x65, 0x6e, 0x67,
  918. 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x61, 0x78, 0x4b, 0x65, 0x79,
  919. 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x54,
  920. 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x6f, 0x77, 0x65, 0x72,
  921. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x50, 0x6f, 0x77, 0x65, 0x72,
  922. 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x50, 0x6f, 0x77, 0x65, 0x72,
  923. 0x12, 0x18, 0x0a, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x0a, 0x20, 0x01, 0x28,
  924. 0x03, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x61,
  925. 0x73, 0x4b, 0x65, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x68, 0x61, 0x73, 0x4b,
  926. 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x65, 0x77, 0x43, 0x69, 0x74, 0x79, 0x73, 0x18, 0x0c,
  927. 0x20, 0x03, 0x28, 0x03, 0x52, 0x08, 0x6e, 0x65, 0x77, 0x43, 0x69, 0x74, 0x79, 0x73, 0x12, 0x1a,
  928. 0x0a, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03,
  929. 0x52, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x22, 0x90, 0x04, 0x0a, 0x06, 0x4d,
  930. 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  931. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a,
  932. 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  933. 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65,
  934. 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x6e,
  935. 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x4e,
  936. 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6d, 0x65, 0x6d, 0x62, 0x65,
  937. 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x50,
  938. 0x6f, 0x77, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0f,
  939. 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12,
  940. 0x24, 0x0a, 0x0d, 0x69, 0x73, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x72, 0x69, 0x61, 0x6c,
  941. 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x69, 0x73, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
  942. 0x54, 0x72, 0x69, 0x61, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x54, 0x79,
  943. 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x54,
  944. 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x50, 0x6f, 0x77,
  945. 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
  946. 0x50, 0x6f, 0x77, 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x53, 0x75, 0x62, 0x43, 0x6f,
  947. 0x75, 0x6e, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x69, 0x73, 0x53, 0x75, 0x62,
  948. 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x4b, 0x65, 0x79, 0x4c,
  949. 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x61, 0x78,
  950. 0x4b, 0x65, 0x79, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x6e, 0x74,
  951. 0x4e, 0x75, 0x6d, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x65, 0x6e, 0x74, 0x4e, 0x75,
  952. 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x72, 0x6f, 0x4e, 0x75, 0x6d, 0x18, 0x0c, 0x20, 0x01, 0x28,
  953. 0x03, 0x52, 0x06, 0x70, 0x72, 0x6f, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x61, 0x69,
  954. 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x61, 0x69,
  955. 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  956. 0x72, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
  957. 0x65, 0x72, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09,
  958. 0x52, 0x03, 0x70, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x64, 0x18, 0x10, 0x20,
  959. 0x01, 0x28, 0x08, 0x52, 0x04, 0x75, 0x73, 0x65, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x61, 0x73,
  960. 0x4b, 0x65, 0x79, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x68, 0x61, 0x73, 0x4b, 0x65,
  961. 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x18, 0x12, 0x20,
  962. 0x01, 0x28, 0x03, 0x52, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x22, 0xfc, 0x01,
  963. 0x0a, 0x08, 0x45, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74,
  964. 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74,
  965. 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18,
  966. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65,
  967. 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  968. 0x03, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x6f,
  969. 0x77, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
  970. 0x0b, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  971. 0x69, 0x73, 0x45, 0x6e, 0x74, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  972. 0x52, 0x0a, 0x69, 0x73, 0x45, 0x6e, 0x74, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05,
  973. 0x69, 0x73, 0x4e, 0x65, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x69, 0x73, 0x4e,
  974. 0x65, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x61, 0x73, 0x4b, 0x65, 0x79, 0x18, 0x07, 0x20, 0x01,
  975. 0x28, 0x08, 0x52, 0x06, 0x68, 0x61, 0x73, 0x4b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f,
  976. 0x64, 0x65, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x64, 0x65, 0x6c,
  977. 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x18, 0x09, 0x20, 0x01,
  978. 0x28, 0x03, 0x52, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x22, 0x91, 0x03, 0x0a,
  979. 0x03, 0x45, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  980. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x52,
  981. 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74,
  982. 0x52, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x65, 0x6e, 0x74, 0x41, 0x75, 0x74,
  983. 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x65,
  984. 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x24, 0x0a, 0x0d,
  985. 0x65, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x04, 0x20,
  986. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x61, 0x73,
  987. 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  988. 0x62, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x62,
  989. 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x30, 0x0a, 0x13, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x62,
  990. 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x18, 0x06, 0x20,
  991. 0x01, 0x28, 0x03, 0x52, 0x13, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
  992. 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x6f, 0x77, 0x65,
  993. 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70,
  994. 0x6f, 0x77, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x64, 0x65,
  995. 0x70, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  996. 0x03, 0x52, 0x0d, 0x64, 0x65, 0x70, 0x74, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
  997. 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x47, 0x44, 0x18, 0x09, 0x20,
  998. 0x01, 0x28, 0x08, 0x52, 0x09, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x47, 0x44, 0x12, 0x16,
  999. 0x0a, 0x06, 0x62, 0x75, 0x79, 0x56, 0x69, 0x70, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1000. 0x62, 0x75, 0x79, 0x56, 0x69, 0x70, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x75, 0x79, 0x4d, 0x65, 0x6d,
  1001. 0x62, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x62, 0x75, 0x79, 0x4d, 0x65,
  1002. 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73,
  1003. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73,
  1004. 0x22, 0xee, 0x03, 0x0a, 0x04, 0x46, 0x72, 0x65, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x46,
  1005. 0x72, 0x65, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x46, 0x72, 0x65,
  1006. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x72, 0x65, 0x65, 0x48, 0x61, 0x73, 0x4b, 0x65, 0x79, 0x18,
  1007. 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x66, 0x72, 0x65, 0x65, 0x48, 0x61, 0x73, 0x4b, 0x65,
  1008. 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x66, 0x72, 0x65, 0x65, 0x45, 0x6e, 0x74, 0x50, 0x6f, 0x72, 0x74,
  1009. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x72, 0x65, 0x65, 0x45, 0x6e, 0x74, 0x50,
  1010. 0x6f, 0x72, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x66, 0x72, 0x65, 0x65, 0x42, 0x75, 0x79, 0x65, 0x72,
  1011. 0x50, 0x6f, 0x72, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x66, 0x72, 0x65, 0x65,
  1012. 0x42, 0x75, 0x79, 0x65, 0x72, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x72, 0x65,
  1013. 0x65, 0x46, 0x69, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x72, 0x65,
  1014. 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
  1015. 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x67, 0x69,
  1016. 0x73, 0x74, 0x65, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x55, 0x70, 0x67,
  1017. 0x72, 0x61, 0x64, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x55, 0x70,
  1018. 0x67, 0x72, 0x61, 0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x08, 0x20,
  1019. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f,
  1020. 0x6e, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12,
  1021. 0x18, 0x0a, 0x07, 0x74, 0x73, 0x47, 0x75, 0x69, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03,
  1022. 0x52, 0x07, 0x74, 0x73, 0x47, 0x75, 0x69, 0x64, 0x65, 0x12, 0x30, 0x0a, 0x13, 0x6d, 0x65, 0x6d,
  1023. 0x62, 0x65, 0x72, 0x41, 0x70, 0x70, 0x70, 0x75, 0x73, 0x68, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64,
  1024. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x41, 0x70,
  1025. 0x70, 0x70, 0x75, 0x73, 0x68, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x34, 0x0a, 0x15, 0x65,
  1026. 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x41, 0x70, 0x70, 0x70, 0x75, 0x73, 0x68, 0x75, 0x6e,
  1027. 0x72, 0x65, 0x61, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x65, 0x6e, 0x74, 0x6e,
  1028. 0x69, 0x63, 0x68, 0x65, 0x41, 0x70, 0x70, 0x70, 0x75, 0x73, 0x68, 0x75, 0x6e, 0x72, 0x65, 0x61,
  1029. 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x70, 0x70, 0x70, 0x75, 0x73, 0x68, 0x75, 0x6e, 0x72, 0x65,
  1030. 0x61, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x61, 0x70, 0x70, 0x70, 0x75, 0x73,
  1031. 0x68, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6f, 0x6a, 0x79, 0x4c, 0x65,
  1032. 0x6e, 0x67, 0x74, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6f, 0x6a, 0x79, 0x4c,
  1033. 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61,
  1034. 0x6c, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61,
  1035. 0x6c, 0x32, 0x59, 0x0a, 0x0a, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12,
  1036. 0x1e, 0x0a, 0x05, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x09, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
  1037. 0x52, 0x65, 0x71, 0x1a, 0x0a, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x12,
  1038. 0x2b, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x64, 0x69, 0x73,
  1039. 0x12, 0x09, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x50, 0x6f,
  1040. 0x77, 0x65, 0x72, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04,
  1041. 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1042. }
  1043. var (
  1044. file_powerCheck_proto_rawDescOnce sync.Once
  1045. file_powerCheck_proto_rawDescData = file_powerCheck_proto_rawDesc
  1046. )
  1047. func file_powerCheck_proto_rawDescGZIP() []byte {
  1048. file_powerCheck_proto_rawDescOnce.Do(func() {
  1049. file_powerCheck_proto_rawDescData = protoimpl.X.CompressGZIP(file_powerCheck_proto_rawDescData)
  1050. })
  1051. return file_powerCheck_proto_rawDescData
  1052. }
  1053. var file_powerCheck_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
  1054. var file_powerCheck_proto_goTypes = []interface{}{
  1055. (*PowerCheckResp)(nil), // 0: PowerCheckResp
  1056. (*CheckReq)(nil), // 1: CheckReq
  1057. (*CheckResp)(nil), // 2: CheckResp
  1058. (*Vip)(nil), // 3: Vip
  1059. (*Member)(nil), // 4: Member
  1060. (*Entniche)(nil), // 5: Entniche
  1061. (*Ent)(nil), // 6: Ent
  1062. (*Free)(nil), // 7: Free
  1063. }
  1064. var file_powerCheck_proto_depIdxs = []int32{
  1065. 3, // 0: CheckResp.vip:type_name -> Vip
  1066. 4, // 1: CheckResp.member:type_name -> Member
  1067. 5, // 2: CheckResp.entniche:type_name -> Entniche
  1068. 6, // 3: CheckResp.ent:type_name -> Ent
  1069. 7, // 4: CheckResp.free:type_name -> Free
  1070. 1, // 5: powerCheck.Check:input_type -> CheckReq
  1071. 1, // 6: powerCheck.DelCheckRedis:input_type -> CheckReq
  1072. 2, // 7: powerCheck.Check:output_type -> CheckResp
  1073. 0, // 8: powerCheck.DelCheckRedis:output_type -> PowerCheckResp
  1074. 7, // [7:9] is the sub-list for method output_type
  1075. 5, // [5:7] is the sub-list for method input_type
  1076. 5, // [5:5] is the sub-list for extension type_name
  1077. 5, // [5:5] is the sub-list for extension extendee
  1078. 0, // [0:5] is the sub-list for field type_name
  1079. }
  1080. func init() { file_powerCheck_proto_init() }
  1081. func file_powerCheck_proto_init() {
  1082. if File_powerCheck_proto != nil {
  1083. return
  1084. }
  1085. if !protoimpl.UnsafeEnabled {
  1086. file_powerCheck_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1087. switch v := v.(*PowerCheckResp); i {
  1088. case 0:
  1089. return &v.state
  1090. case 1:
  1091. return &v.sizeCache
  1092. case 2:
  1093. return &v.unknownFields
  1094. default:
  1095. return nil
  1096. }
  1097. }
  1098. file_powerCheck_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1099. switch v := v.(*CheckReq); i {
  1100. case 0:
  1101. return &v.state
  1102. case 1:
  1103. return &v.sizeCache
  1104. case 2:
  1105. return &v.unknownFields
  1106. default:
  1107. return nil
  1108. }
  1109. }
  1110. file_powerCheck_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1111. switch v := v.(*CheckResp); i {
  1112. case 0:
  1113. return &v.state
  1114. case 1:
  1115. return &v.sizeCache
  1116. case 2:
  1117. return &v.unknownFields
  1118. default:
  1119. return nil
  1120. }
  1121. }
  1122. file_powerCheck_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1123. switch v := v.(*Vip); i {
  1124. case 0:
  1125. return &v.state
  1126. case 1:
  1127. return &v.sizeCache
  1128. case 2:
  1129. return &v.unknownFields
  1130. default:
  1131. return nil
  1132. }
  1133. }
  1134. file_powerCheck_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1135. switch v := v.(*Member); i {
  1136. case 0:
  1137. return &v.state
  1138. case 1:
  1139. return &v.sizeCache
  1140. case 2:
  1141. return &v.unknownFields
  1142. default:
  1143. return nil
  1144. }
  1145. }
  1146. file_powerCheck_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1147. switch v := v.(*Entniche); i {
  1148. case 0:
  1149. return &v.state
  1150. case 1:
  1151. return &v.sizeCache
  1152. case 2:
  1153. return &v.unknownFields
  1154. default:
  1155. return nil
  1156. }
  1157. }
  1158. file_powerCheck_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1159. switch v := v.(*Ent); i {
  1160. case 0:
  1161. return &v.state
  1162. case 1:
  1163. return &v.sizeCache
  1164. case 2:
  1165. return &v.unknownFields
  1166. default:
  1167. return nil
  1168. }
  1169. }
  1170. file_powerCheck_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1171. switch v := v.(*Free); i {
  1172. case 0:
  1173. return &v.state
  1174. case 1:
  1175. return &v.sizeCache
  1176. case 2:
  1177. return &v.unknownFields
  1178. default:
  1179. return nil
  1180. }
  1181. }
  1182. }
  1183. type x struct{}
  1184. out := protoimpl.TypeBuilder{
  1185. File: protoimpl.DescBuilder{
  1186. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1187. RawDescriptor: file_powerCheck_proto_rawDesc,
  1188. NumEnums: 0,
  1189. NumMessages: 8,
  1190. NumExtensions: 0,
  1191. NumServices: 1,
  1192. },
  1193. GoTypes: file_powerCheck_proto_goTypes,
  1194. DependencyIndexes: file_powerCheck_proto_depIdxs,
  1195. MessageInfos: file_powerCheck_proto_msgTypes,
  1196. }.Build()
  1197. File_powerCheck_proto = out.File
  1198. file_powerCheck_proto_rawDesc = nil
  1199. file_powerCheck_proto_goTypes = nil
  1200. file_powerCheck_proto_depIdxs = nil
  1201. }