entManageApplication.pb.go 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.27.1
  4. // protoc v3.20.0--rc2
  5. // source: entManageApplication.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. type BuyProductListReq struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. EntId int64 `protobuf:"varint,1,opt,name=entId,proto3" json:"entId,omitempty"`
  24. }
  25. func (x *BuyProductListReq) Reset() {
  26. *x = BuyProductListReq{}
  27. if protoimpl.UnsafeEnabled {
  28. mi := &file_entManageApplication_proto_msgTypes[0]
  29. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  30. ms.StoreMessageInfo(mi)
  31. }
  32. }
  33. func (x *BuyProductListReq) String() string {
  34. return protoimpl.X.MessageStringOf(x)
  35. }
  36. func (*BuyProductListReq) ProtoMessage() {}
  37. func (x *BuyProductListReq) ProtoReflect() protoreflect.Message {
  38. mi := &file_entManageApplication_proto_msgTypes[0]
  39. if protoimpl.UnsafeEnabled && x != nil {
  40. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  41. if ms.LoadMessageInfo() == nil {
  42. ms.StoreMessageInfo(mi)
  43. }
  44. return ms
  45. }
  46. return mi.MessageOf(x)
  47. }
  48. // Deprecated: Use BuyProductListReq.ProtoReflect.Descriptor instead.
  49. func (*BuyProductListReq) Descriptor() ([]byte, []int) {
  50. return file_entManageApplication_proto_rawDescGZIP(), []int{0}
  51. }
  52. func (x *BuyProductListReq) GetEntId() int64 {
  53. if x != nil {
  54. return x.EntId
  55. }
  56. return 0
  57. }
  58. type BuyProductListResp struct {
  59. state protoimpl.MessageState
  60. sizeCache protoimpl.SizeCache
  61. unknownFields protoimpl.UnknownFields
  62. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  63. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  64. Data []*BuyProductList `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  65. }
  66. func (x *BuyProductListResp) Reset() {
  67. *x = BuyProductListResp{}
  68. if protoimpl.UnsafeEnabled {
  69. mi := &file_entManageApplication_proto_msgTypes[1]
  70. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  71. ms.StoreMessageInfo(mi)
  72. }
  73. }
  74. func (x *BuyProductListResp) String() string {
  75. return protoimpl.X.MessageStringOf(x)
  76. }
  77. func (*BuyProductListResp) ProtoMessage() {}
  78. func (x *BuyProductListResp) ProtoReflect() protoreflect.Message {
  79. mi := &file_entManageApplication_proto_msgTypes[1]
  80. if protoimpl.UnsafeEnabled && x != nil {
  81. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  82. if ms.LoadMessageInfo() == nil {
  83. ms.StoreMessageInfo(mi)
  84. }
  85. return ms
  86. }
  87. return mi.MessageOf(x)
  88. }
  89. // Deprecated: Use BuyProductListResp.ProtoReflect.Descriptor instead.
  90. func (*BuyProductListResp) Descriptor() ([]byte, []int) {
  91. return file_entManageApplication_proto_rawDescGZIP(), []int{1}
  92. }
  93. func (x *BuyProductListResp) GetErrorCode() int64 {
  94. if x != nil {
  95. return x.ErrorCode
  96. }
  97. return 0
  98. }
  99. func (x *BuyProductListResp) GetErrorMsg() string {
  100. if x != nil {
  101. return x.ErrorMsg
  102. }
  103. return ""
  104. }
  105. func (x *BuyProductListResp) GetData() []*BuyProductList {
  106. if x != nil {
  107. return x.Data
  108. }
  109. return nil
  110. }
  111. type BuyProductList struct {
  112. state protoimpl.MessageState
  113. sizeCache protoimpl.SizeCache
  114. unknownFields protoimpl.UnknownFields
  115. WaitEmpowerId int64 `protobuf:"varint,1,opt,name=wait_empower_id,json=waitEmpowerId,proto3" json:"wait_empower_id,omitempty"`
  116. ProductType string `protobuf:"bytes,2,opt,name=product_type,json=productType,proto3" json:"product_type,omitempty"`
  117. UseCount int64 `protobuf:"varint,3,opt,name=use_count,json=useCount,proto3" json:"use_count,omitempty"`
  118. EmpowerCount int64 `protobuf:"varint,4,opt,name=empower_count,json=empowerCount,proto3" json:"empower_count,omitempty"`
  119. ProvinceCount int64 `protobuf:"varint,5,opt,name=province_count,json=provinceCount,proto3" json:"province_count,omitempty"`
  120. EndTime string `protobuf:"bytes,6,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  121. EmpowerNolimit int64 `protobuf:"varint,7,opt,name=empower_nolimit,json=empowerNolimit,proto3" json:"empower_nolimit,omitempty"`
  122. Key string `protobuf:"bytes,8,opt,name=key,proto3" json:"key,omitempty"`
  123. }
  124. func (x *BuyProductList) Reset() {
  125. *x = BuyProductList{}
  126. if protoimpl.UnsafeEnabled {
  127. mi := &file_entManageApplication_proto_msgTypes[2]
  128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  129. ms.StoreMessageInfo(mi)
  130. }
  131. }
  132. func (x *BuyProductList) String() string {
  133. return protoimpl.X.MessageStringOf(x)
  134. }
  135. func (*BuyProductList) ProtoMessage() {}
  136. func (x *BuyProductList) ProtoReflect() protoreflect.Message {
  137. mi := &file_entManageApplication_proto_msgTypes[2]
  138. if protoimpl.UnsafeEnabled && x != nil {
  139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  140. if ms.LoadMessageInfo() == nil {
  141. ms.StoreMessageInfo(mi)
  142. }
  143. return ms
  144. }
  145. return mi.MessageOf(x)
  146. }
  147. // Deprecated: Use BuyProductList.ProtoReflect.Descriptor instead.
  148. func (*BuyProductList) Descriptor() ([]byte, []int) {
  149. return file_entManageApplication_proto_rawDescGZIP(), []int{2}
  150. }
  151. func (x *BuyProductList) GetWaitEmpowerId() int64 {
  152. if x != nil {
  153. return x.WaitEmpowerId
  154. }
  155. return 0
  156. }
  157. func (x *BuyProductList) GetProductType() string {
  158. if x != nil {
  159. return x.ProductType
  160. }
  161. return ""
  162. }
  163. func (x *BuyProductList) GetUseCount() int64 {
  164. if x != nil {
  165. return x.UseCount
  166. }
  167. return 0
  168. }
  169. func (x *BuyProductList) GetEmpowerCount() int64 {
  170. if x != nil {
  171. return x.EmpowerCount
  172. }
  173. return 0
  174. }
  175. func (x *BuyProductList) GetProvinceCount() int64 {
  176. if x != nil {
  177. return x.ProvinceCount
  178. }
  179. return 0
  180. }
  181. func (x *BuyProductList) GetEndTime() string {
  182. if x != nil {
  183. return x.EndTime
  184. }
  185. return ""
  186. }
  187. func (x *BuyProductList) GetEmpowerNolimit() int64 {
  188. if x != nil {
  189. return x.EmpowerNolimit
  190. }
  191. return 0
  192. }
  193. func (x *BuyProductList) GetKey() string {
  194. if x != nil {
  195. return x.Key
  196. }
  197. return ""
  198. }
  199. type UsePersonListReq struct {
  200. state protoimpl.MessageState
  201. sizeCache protoimpl.SizeCache
  202. unknownFields protoimpl.UnknownFields
  203. EntId int64 `protobuf:"varint,1,opt,name=entId,proto3" json:"entId,omitempty"`
  204. WaitEmpowerId int64 `protobuf:"varint,2,opt,name=wait_empower_id,json=waitEmpowerId,proto3" json:"wait_empower_id,omitempty"`
  205. }
  206. func (x *UsePersonListReq) Reset() {
  207. *x = UsePersonListReq{}
  208. if protoimpl.UnsafeEnabled {
  209. mi := &file_entManageApplication_proto_msgTypes[3]
  210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  211. ms.StoreMessageInfo(mi)
  212. }
  213. }
  214. func (x *UsePersonListReq) String() string {
  215. return protoimpl.X.MessageStringOf(x)
  216. }
  217. func (*UsePersonListReq) ProtoMessage() {}
  218. func (x *UsePersonListReq) ProtoReflect() protoreflect.Message {
  219. mi := &file_entManageApplication_proto_msgTypes[3]
  220. if protoimpl.UnsafeEnabled && x != nil {
  221. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  222. if ms.LoadMessageInfo() == nil {
  223. ms.StoreMessageInfo(mi)
  224. }
  225. return ms
  226. }
  227. return mi.MessageOf(x)
  228. }
  229. // Deprecated: Use UsePersonListReq.ProtoReflect.Descriptor instead.
  230. func (*UsePersonListReq) Descriptor() ([]byte, []int) {
  231. return file_entManageApplication_proto_rawDescGZIP(), []int{3}
  232. }
  233. func (x *UsePersonListReq) GetEntId() int64 {
  234. if x != nil {
  235. return x.EntId
  236. }
  237. return 0
  238. }
  239. func (x *UsePersonListReq) GetWaitEmpowerId() int64 {
  240. if x != nil {
  241. return x.WaitEmpowerId
  242. }
  243. return 0
  244. }
  245. type UsePersonListResp struct {
  246. state protoimpl.MessageState
  247. sizeCache protoimpl.SizeCache
  248. unknownFields protoimpl.UnknownFields
  249. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  250. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  251. Data []*UsePersonList `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  252. }
  253. func (x *UsePersonListResp) Reset() {
  254. *x = UsePersonListResp{}
  255. if protoimpl.UnsafeEnabled {
  256. mi := &file_entManageApplication_proto_msgTypes[4]
  257. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  258. ms.StoreMessageInfo(mi)
  259. }
  260. }
  261. func (x *UsePersonListResp) String() string {
  262. return protoimpl.X.MessageStringOf(x)
  263. }
  264. func (*UsePersonListResp) ProtoMessage() {}
  265. func (x *UsePersonListResp) ProtoReflect() protoreflect.Message {
  266. mi := &file_entManageApplication_proto_msgTypes[4]
  267. if protoimpl.UnsafeEnabled && x != nil {
  268. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  269. if ms.LoadMessageInfo() == nil {
  270. ms.StoreMessageInfo(mi)
  271. }
  272. return ms
  273. }
  274. return mi.MessageOf(x)
  275. }
  276. // Deprecated: Use UsePersonListResp.ProtoReflect.Descriptor instead.
  277. func (*UsePersonListResp) Descriptor() ([]byte, []int) {
  278. return file_entManageApplication_proto_rawDescGZIP(), []int{4}
  279. }
  280. func (x *UsePersonListResp) GetErrorCode() int64 {
  281. if x != nil {
  282. return x.ErrorCode
  283. }
  284. return 0
  285. }
  286. func (x *UsePersonListResp) GetErrorMsg() string {
  287. if x != nil {
  288. return x.ErrorMsg
  289. }
  290. return ""
  291. }
  292. func (x *UsePersonListResp) GetData() []*UsePersonList {
  293. if x != nil {
  294. return x.Data
  295. }
  296. return nil
  297. }
  298. type UsePersonList struct {
  299. state protoimpl.MessageState
  300. sizeCache protoimpl.SizeCache
  301. unknownFields protoimpl.UnknownFields
  302. EntnichePowerId int64 `protobuf:"varint,1,opt,name=entniche_power_id,json=entnichePowerId,proto3" json:"entniche_power_id,omitempty"`
  303. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  304. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
  305. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
  306. Department string `protobuf:"bytes,5,opt,name=department,proto3" json:"department,omitempty"`
  307. Role string `protobuf:"bytes,6,opt,name=role,proto3" json:"role,omitempty"`
  308. Status int64 `protobuf:"varint,7,opt,name=status,proto3" json:"status,omitempty"`
  309. }
  310. func (x *UsePersonList) Reset() {
  311. *x = UsePersonList{}
  312. if protoimpl.UnsafeEnabled {
  313. mi := &file_entManageApplication_proto_msgTypes[5]
  314. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  315. ms.StoreMessageInfo(mi)
  316. }
  317. }
  318. func (x *UsePersonList) String() string {
  319. return protoimpl.X.MessageStringOf(x)
  320. }
  321. func (*UsePersonList) ProtoMessage() {}
  322. func (x *UsePersonList) ProtoReflect() protoreflect.Message {
  323. mi := &file_entManageApplication_proto_msgTypes[5]
  324. if protoimpl.UnsafeEnabled && x != nil {
  325. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  326. if ms.LoadMessageInfo() == nil {
  327. ms.StoreMessageInfo(mi)
  328. }
  329. return ms
  330. }
  331. return mi.MessageOf(x)
  332. }
  333. // Deprecated: Use UsePersonList.ProtoReflect.Descriptor instead.
  334. func (*UsePersonList) Descriptor() ([]byte, []int) {
  335. return file_entManageApplication_proto_rawDescGZIP(), []int{5}
  336. }
  337. func (x *UsePersonList) GetEntnichePowerId() int64 {
  338. if x != nil {
  339. return x.EntnichePowerId
  340. }
  341. return 0
  342. }
  343. func (x *UsePersonList) GetName() string {
  344. if x != nil {
  345. return x.Name
  346. }
  347. return ""
  348. }
  349. func (x *UsePersonList) GetEmail() string {
  350. if x != nil {
  351. return x.Email
  352. }
  353. return ""
  354. }
  355. func (x *UsePersonList) GetPhone() string {
  356. if x != nil {
  357. return x.Phone
  358. }
  359. return ""
  360. }
  361. func (x *UsePersonList) GetDepartment() string {
  362. if x != nil {
  363. return x.Department
  364. }
  365. return ""
  366. }
  367. func (x *UsePersonList) GetRole() string {
  368. if x != nil {
  369. return x.Role
  370. }
  371. return ""
  372. }
  373. func (x *UsePersonList) GetStatus() int64 {
  374. if x != nil {
  375. return x.Status
  376. }
  377. return 0
  378. }
  379. type AddUsePersonReq struct {
  380. state protoimpl.MessageState
  381. sizeCache protoimpl.SizeCache
  382. unknownFields protoimpl.UnknownFields
  383. WaitEmpowerId int64 `protobuf:"varint,1,opt,name=wait_empower_id,json=waitEmpowerId,proto3" json:"wait_empower_id,omitempty"`
  384. EntUserId string `protobuf:"bytes,2,opt,name=ent_user_id,json=entUserId,proto3" json:"ent_user_id,omitempty"`
  385. EntId int64 `protobuf:"varint,3,opt,name=entId,proto3" json:"entId,omitempty"`
  386. }
  387. func (x *AddUsePersonReq) Reset() {
  388. *x = AddUsePersonReq{}
  389. if protoimpl.UnsafeEnabled {
  390. mi := &file_entManageApplication_proto_msgTypes[6]
  391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  392. ms.StoreMessageInfo(mi)
  393. }
  394. }
  395. func (x *AddUsePersonReq) String() string {
  396. return protoimpl.X.MessageStringOf(x)
  397. }
  398. func (*AddUsePersonReq) ProtoMessage() {}
  399. func (x *AddUsePersonReq) ProtoReflect() protoreflect.Message {
  400. mi := &file_entManageApplication_proto_msgTypes[6]
  401. if protoimpl.UnsafeEnabled && x != nil {
  402. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  403. if ms.LoadMessageInfo() == nil {
  404. ms.StoreMessageInfo(mi)
  405. }
  406. return ms
  407. }
  408. return mi.MessageOf(x)
  409. }
  410. // Deprecated: Use AddUsePersonReq.ProtoReflect.Descriptor instead.
  411. func (*AddUsePersonReq) Descriptor() ([]byte, []int) {
  412. return file_entManageApplication_proto_rawDescGZIP(), []int{6}
  413. }
  414. func (x *AddUsePersonReq) GetWaitEmpowerId() int64 {
  415. if x != nil {
  416. return x.WaitEmpowerId
  417. }
  418. return 0
  419. }
  420. func (x *AddUsePersonReq) GetEntUserId() string {
  421. if x != nil {
  422. return x.EntUserId
  423. }
  424. return ""
  425. }
  426. func (x *AddUsePersonReq) GetEntId() int64 {
  427. if x != nil {
  428. return x.EntId
  429. }
  430. return 0
  431. }
  432. type AddUsePersonResp struct {
  433. state protoimpl.MessageState
  434. sizeCache protoimpl.SizeCache
  435. unknownFields protoimpl.UnknownFields
  436. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  437. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  438. Data *AddUsePerson `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  439. }
  440. func (x *AddUsePersonResp) Reset() {
  441. *x = AddUsePersonResp{}
  442. if protoimpl.UnsafeEnabled {
  443. mi := &file_entManageApplication_proto_msgTypes[7]
  444. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  445. ms.StoreMessageInfo(mi)
  446. }
  447. }
  448. func (x *AddUsePersonResp) String() string {
  449. return protoimpl.X.MessageStringOf(x)
  450. }
  451. func (*AddUsePersonResp) ProtoMessage() {}
  452. func (x *AddUsePersonResp) ProtoReflect() protoreflect.Message {
  453. mi := &file_entManageApplication_proto_msgTypes[7]
  454. if protoimpl.UnsafeEnabled && x != nil {
  455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  456. if ms.LoadMessageInfo() == nil {
  457. ms.StoreMessageInfo(mi)
  458. }
  459. return ms
  460. }
  461. return mi.MessageOf(x)
  462. }
  463. // Deprecated: Use AddUsePersonResp.ProtoReflect.Descriptor instead.
  464. func (*AddUsePersonResp) Descriptor() ([]byte, []int) {
  465. return file_entManageApplication_proto_rawDescGZIP(), []int{7}
  466. }
  467. func (x *AddUsePersonResp) GetErrorCode() int64 {
  468. if x != nil {
  469. return x.ErrorCode
  470. }
  471. return 0
  472. }
  473. func (x *AddUsePersonResp) GetErrorMsg() string {
  474. if x != nil {
  475. return x.ErrorMsg
  476. }
  477. return ""
  478. }
  479. func (x *AddUsePersonResp) GetData() *AddUsePerson {
  480. if x != nil {
  481. return x.Data
  482. }
  483. return nil
  484. }
  485. type AddUsePerson struct {
  486. state protoimpl.MessageState
  487. sizeCache protoimpl.SizeCache
  488. unknownFields protoimpl.UnknownFields
  489. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  490. }
  491. func (x *AddUsePerson) Reset() {
  492. *x = AddUsePerson{}
  493. if protoimpl.UnsafeEnabled {
  494. mi := &file_entManageApplication_proto_msgTypes[8]
  495. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  496. ms.StoreMessageInfo(mi)
  497. }
  498. }
  499. func (x *AddUsePerson) String() string {
  500. return protoimpl.X.MessageStringOf(x)
  501. }
  502. func (*AddUsePerson) ProtoMessage() {}
  503. func (x *AddUsePerson) ProtoReflect() protoreflect.Message {
  504. mi := &file_entManageApplication_proto_msgTypes[8]
  505. if protoimpl.UnsafeEnabled && x != nil {
  506. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  507. if ms.LoadMessageInfo() == nil {
  508. ms.StoreMessageInfo(mi)
  509. }
  510. return ms
  511. }
  512. return mi.MessageOf(x)
  513. }
  514. // Deprecated: Use AddUsePerson.ProtoReflect.Descriptor instead.
  515. func (*AddUsePerson) Descriptor() ([]byte, []int) {
  516. return file_entManageApplication_proto_rawDescGZIP(), []int{8}
  517. }
  518. func (x *AddUsePerson) GetStatus() int64 {
  519. if x != nil {
  520. return x.Status
  521. }
  522. return 0
  523. }
  524. type DelUsePersonReq struct {
  525. state protoimpl.MessageState
  526. sizeCache protoimpl.SizeCache
  527. unknownFields protoimpl.UnknownFields
  528. EntnichePowerId int64 `protobuf:"varint,1,opt,name=entniche_power_id,json=entnichePowerId,proto3" json:"entniche_power_id,omitempty"`
  529. }
  530. func (x *DelUsePersonReq) Reset() {
  531. *x = DelUsePersonReq{}
  532. if protoimpl.UnsafeEnabled {
  533. mi := &file_entManageApplication_proto_msgTypes[9]
  534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  535. ms.StoreMessageInfo(mi)
  536. }
  537. }
  538. func (x *DelUsePersonReq) String() string {
  539. return protoimpl.X.MessageStringOf(x)
  540. }
  541. func (*DelUsePersonReq) ProtoMessage() {}
  542. func (x *DelUsePersonReq) ProtoReflect() protoreflect.Message {
  543. mi := &file_entManageApplication_proto_msgTypes[9]
  544. if protoimpl.UnsafeEnabled && x != nil {
  545. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  546. if ms.LoadMessageInfo() == nil {
  547. ms.StoreMessageInfo(mi)
  548. }
  549. return ms
  550. }
  551. return mi.MessageOf(x)
  552. }
  553. // Deprecated: Use DelUsePersonReq.ProtoReflect.Descriptor instead.
  554. func (*DelUsePersonReq) Descriptor() ([]byte, []int) {
  555. return file_entManageApplication_proto_rawDescGZIP(), []int{9}
  556. }
  557. func (x *DelUsePersonReq) GetEntnichePowerId() int64 {
  558. if x != nil {
  559. return x.EntnichePowerId
  560. }
  561. return 0
  562. }
  563. type EmpowerUserIds struct {
  564. state protoimpl.MessageState
  565. sizeCache protoimpl.SizeCache
  566. unknownFields protoimpl.UnknownFields
  567. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
  568. }
  569. func (x *EmpowerUserIds) Reset() {
  570. *x = EmpowerUserIds{}
  571. if protoimpl.UnsafeEnabled {
  572. mi := &file_entManageApplication_proto_msgTypes[10]
  573. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  574. ms.StoreMessageInfo(mi)
  575. }
  576. }
  577. func (x *EmpowerUserIds) String() string {
  578. return protoimpl.X.MessageStringOf(x)
  579. }
  580. func (*EmpowerUserIds) ProtoMessage() {}
  581. func (x *EmpowerUserIds) ProtoReflect() protoreflect.Message {
  582. mi := &file_entManageApplication_proto_msgTypes[10]
  583. if protoimpl.UnsafeEnabled && x != nil {
  584. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  585. if ms.LoadMessageInfo() == nil {
  586. ms.StoreMessageInfo(mi)
  587. }
  588. return ms
  589. }
  590. return mi.MessageOf(x)
  591. }
  592. // Deprecated: Use EmpowerUserIds.ProtoReflect.Descriptor instead.
  593. func (*EmpowerUserIds) Descriptor() ([]byte, []int) {
  594. return file_entManageApplication_proto_rawDescGZIP(), []int{10}
  595. }
  596. func (x *EmpowerUserIds) GetIds() []int64 {
  597. if x != nil {
  598. return x.Ids
  599. }
  600. return nil
  601. }
  602. var File_entManageApplication_proto protoreflect.FileDescriptor
  603. var file_entManageApplication_proto_rawDesc = []byte{
  604. 0x0a, 0x1a, 0x65, 0x6e, 0x74, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69,
  605. 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x29, 0x0a, 0x11,
  606. 0x42, 0x75, 0x79, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  607. 0x71, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  608. 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x75, 0x0a, 0x12, 0x42, 0x75, 0x79, 0x50, 0x72,
  609. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a,
  610. 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  611. 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  612. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  613. 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x23, 0x0a, 0x04, 0x64, 0x61, 0x74,
  614. 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x42, 0x75, 0x79, 0x50, 0x72, 0x6f,
  615. 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x9a,
  616. 0x02, 0x0a, 0x0e, 0x42, 0x75, 0x79, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73,
  617. 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x65, 0x6d, 0x70, 0x6f, 0x77, 0x65,
  618. 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x77, 0x61, 0x69, 0x74,
  619. 0x45, 0x6d, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f,
  620. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  621. 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  622. 0x75, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  623. 0x08, 0x75, 0x73, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x65, 0x6d, 0x70,
  624. 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  625. 0x52, 0x0c, 0x65, 0x6d, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x25,
  626. 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  627. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  628. 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d,
  629. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  630. 0x12, 0x27, 0x0a, 0x0f, 0x65, 0x6d, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x6e, 0x6f, 0x6c, 0x69,
  631. 0x6d, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x6d, 0x70, 0x6f, 0x77,
  632. 0x65, 0x72, 0x4e, 0x6f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  633. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x50, 0x0a, 0x10, 0x55,
  634. 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12,
  635. 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
  636. 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x65, 0x6d,
  637. 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
  638. 0x77, 0x61, 0x69, 0x74, 0x45, 0x6d, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x49, 0x64, 0x22, 0x73, 0x0a,
  639. 0x11, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  640. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  641. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  642. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  643. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x22,
  644. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x55,
  645. 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x64, 0x61,
  646. 0x74, 0x61, 0x22, 0xc7, 0x01, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  647. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x65, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65,
  648. 0x5f, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  649. 0x0f, 0x65, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x50, 0x6f, 0x77, 0x65, 0x72, 0x49, 0x64,
  650. 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  651. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20,
  652. 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68,
  653. 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65,
  654. 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x65, 0x70, 0x61, 0x72, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x05,
  655. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x70, 0x61, 0x72, 0x74, 0x6d, 0x65, 0x6e, 0x74,
  656. 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  657. 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07,
  658. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x6f, 0x0a, 0x0f,
  659. 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x12,
  660. 0x26, 0x0a, 0x0f, 0x77, 0x61, 0x69, 0x74, 0x5f, 0x65, 0x6d, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f,
  661. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x77, 0x61, 0x69, 0x74, 0x45, 0x6d,
  662. 0x70, 0x6f, 0x77, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x5f, 0x75,
  663. 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x6e,
  664. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
  665. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x71, 0x0a,
  666. 0x10, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x73,
  667. 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  668. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
  669. 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  670. 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x21, 0x0a,
  671. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x41, 0x64,
  672. 0x64, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
  673. 0x22, 0x26, 0x0a, 0x0c, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  674. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  675. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x3d, 0x0a, 0x0f, 0x44, 0x65, 0x6c, 0x55,
  676. 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x2a, 0x0a, 0x11, 0x65,
  677. 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x5f, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x69, 0x64,
  678. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x65, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65,
  679. 0x50, 0x6f, 0x77, 0x65, 0x72, 0x49, 0x64, 0x22, 0x22, 0x0a, 0x0e, 0x45, 0x6d, 0x70, 0x6f, 0x77,
  680. 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73,
  681. 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x32, 0xa7, 0x02, 0x0a, 0x14,
  682. 0x45, 0x6e, 0x74, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
  683. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x39, 0x0a, 0x0e, 0x62, 0x75, 0x79, 0x50, 0x72, 0x6f, 0x64, 0x75,
  684. 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x2e, 0x42, 0x75, 0x79, 0x50, 0x72, 0x6f, 0x64,
  685. 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x42, 0x75, 0x79,
  686. 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12,
  687. 0x36, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  688. 0x12, 0x11, 0x2e, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  689. 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  690. 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x0c, 0x61, 0x64, 0x64, 0x55, 0x73,
  691. 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x10, 0x2e, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65,
  692. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x41, 0x64, 0x64, 0x55,
  693. 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x0c,
  694. 0x64, 0x65, 0x6c, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x10, 0x2e, 0x44,
  695. 0x65, 0x6c, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x11,
  696. 0x2e, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x73,
  697. 0x70, 0x12, 0x32, 0x0a, 0x0e, 0x65, 0x6d, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72,
  698. 0x49, 0x64, 0x73, 0x12, 0x0f, 0x2e, 0x45, 0x6d, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x55, 0x73, 0x65,
  699. 0x72, 0x49, 0x64, 0x73, 0x1a, 0x0f, 0x2e, 0x45, 0x6d, 0x70, 0x6f, 0x77, 0x65, 0x72, 0x55, 0x73,
  700. 0x65, 0x72, 0x49, 0x64, 0x73, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70,
  701. 0x72, 0x6f, 0x74, 0x6f, 0x33,
  702. }
  703. var (
  704. file_entManageApplication_proto_rawDescOnce sync.Once
  705. file_entManageApplication_proto_rawDescData = file_entManageApplication_proto_rawDesc
  706. )
  707. func file_entManageApplication_proto_rawDescGZIP() []byte {
  708. file_entManageApplication_proto_rawDescOnce.Do(func() {
  709. file_entManageApplication_proto_rawDescData = protoimpl.X.CompressGZIP(file_entManageApplication_proto_rawDescData)
  710. })
  711. return file_entManageApplication_proto_rawDescData
  712. }
  713. var file_entManageApplication_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
  714. var file_entManageApplication_proto_goTypes = []interface{}{
  715. (*BuyProductListReq)(nil), // 0: BuyProductListReq
  716. (*BuyProductListResp)(nil), // 1: BuyProductListResp
  717. (*BuyProductList)(nil), // 2: BuyProductList
  718. (*UsePersonListReq)(nil), // 3: UsePersonListReq
  719. (*UsePersonListResp)(nil), // 4: UsePersonListResp
  720. (*UsePersonList)(nil), // 5: UsePersonList
  721. (*AddUsePersonReq)(nil), // 6: AddUsePersonReq
  722. (*AddUsePersonResp)(nil), // 7: AddUsePersonResp
  723. (*AddUsePerson)(nil), // 8: AddUsePerson
  724. (*DelUsePersonReq)(nil), // 9: DelUsePersonReq
  725. (*EmpowerUserIds)(nil), // 10: EmpowerUserIds
  726. }
  727. var file_entManageApplication_proto_depIdxs = []int32{
  728. 2, // 0: BuyProductListResp.data:type_name -> BuyProductList
  729. 5, // 1: UsePersonListResp.data:type_name -> UsePersonList
  730. 8, // 2: AddUsePersonResp.data:type_name -> AddUsePerson
  731. 0, // 3: EntManageApplication.buyProductList:input_type -> BuyProductListReq
  732. 3, // 4: EntManageApplication.usePersonList:input_type -> UsePersonListReq
  733. 6, // 5: EntManageApplication.addUsePerson:input_type -> AddUsePersonReq
  734. 9, // 6: EntManageApplication.delUsePerson:input_type -> DelUsePersonReq
  735. 10, // 7: EntManageApplication.empowerUserIds:input_type -> EmpowerUserIds
  736. 1, // 8: EntManageApplication.buyProductList:output_type -> BuyProductListResp
  737. 4, // 9: EntManageApplication.usePersonList:output_type -> UsePersonListResp
  738. 7, // 10: EntManageApplication.addUsePerson:output_type -> AddUsePersonResp
  739. 7, // 11: EntManageApplication.delUsePerson:output_type -> AddUsePersonResp
  740. 10, // 12: EntManageApplication.empowerUserIds:output_type -> EmpowerUserIds
  741. 8, // [8:13] is the sub-list for method output_type
  742. 3, // [3:8] is the sub-list for method input_type
  743. 3, // [3:3] is the sub-list for extension type_name
  744. 3, // [3:3] is the sub-list for extension extendee
  745. 0, // [0:3] is the sub-list for field type_name
  746. }
  747. func init() { file_entManageApplication_proto_init() }
  748. func file_entManageApplication_proto_init() {
  749. if File_entManageApplication_proto != nil {
  750. return
  751. }
  752. if !protoimpl.UnsafeEnabled {
  753. file_entManageApplication_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  754. switch v := v.(*BuyProductListReq); i {
  755. case 0:
  756. return &v.state
  757. case 1:
  758. return &v.sizeCache
  759. case 2:
  760. return &v.unknownFields
  761. default:
  762. return nil
  763. }
  764. }
  765. file_entManageApplication_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  766. switch v := v.(*BuyProductListResp); i {
  767. case 0:
  768. return &v.state
  769. case 1:
  770. return &v.sizeCache
  771. case 2:
  772. return &v.unknownFields
  773. default:
  774. return nil
  775. }
  776. }
  777. file_entManageApplication_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  778. switch v := v.(*BuyProductList); i {
  779. case 0:
  780. return &v.state
  781. case 1:
  782. return &v.sizeCache
  783. case 2:
  784. return &v.unknownFields
  785. default:
  786. return nil
  787. }
  788. }
  789. file_entManageApplication_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  790. switch v := v.(*UsePersonListReq); i {
  791. case 0:
  792. return &v.state
  793. case 1:
  794. return &v.sizeCache
  795. case 2:
  796. return &v.unknownFields
  797. default:
  798. return nil
  799. }
  800. }
  801. file_entManageApplication_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  802. switch v := v.(*UsePersonListResp); i {
  803. case 0:
  804. return &v.state
  805. case 1:
  806. return &v.sizeCache
  807. case 2:
  808. return &v.unknownFields
  809. default:
  810. return nil
  811. }
  812. }
  813. file_entManageApplication_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  814. switch v := v.(*UsePersonList); i {
  815. case 0:
  816. return &v.state
  817. case 1:
  818. return &v.sizeCache
  819. case 2:
  820. return &v.unknownFields
  821. default:
  822. return nil
  823. }
  824. }
  825. file_entManageApplication_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  826. switch v := v.(*AddUsePersonReq); i {
  827. case 0:
  828. return &v.state
  829. case 1:
  830. return &v.sizeCache
  831. case 2:
  832. return &v.unknownFields
  833. default:
  834. return nil
  835. }
  836. }
  837. file_entManageApplication_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  838. switch v := v.(*AddUsePersonResp); i {
  839. case 0:
  840. return &v.state
  841. case 1:
  842. return &v.sizeCache
  843. case 2:
  844. return &v.unknownFields
  845. default:
  846. return nil
  847. }
  848. }
  849. file_entManageApplication_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  850. switch v := v.(*AddUsePerson); i {
  851. case 0:
  852. return &v.state
  853. case 1:
  854. return &v.sizeCache
  855. case 2:
  856. return &v.unknownFields
  857. default:
  858. return nil
  859. }
  860. }
  861. file_entManageApplication_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  862. switch v := v.(*DelUsePersonReq); i {
  863. case 0:
  864. return &v.state
  865. case 1:
  866. return &v.sizeCache
  867. case 2:
  868. return &v.unknownFields
  869. default:
  870. return nil
  871. }
  872. }
  873. file_entManageApplication_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  874. switch v := v.(*EmpowerUserIds); i {
  875. case 0:
  876. return &v.state
  877. case 1:
  878. return &v.sizeCache
  879. case 2:
  880. return &v.unknownFields
  881. default:
  882. return nil
  883. }
  884. }
  885. }
  886. type x struct{}
  887. out := protoimpl.TypeBuilder{
  888. File: protoimpl.DescBuilder{
  889. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  890. RawDescriptor: file_entManageApplication_proto_rawDesc,
  891. NumEnums: 0,
  892. NumMessages: 11,
  893. NumExtensions: 0,
  894. NumServices: 1,
  895. },
  896. GoTypes: file_entManageApplication_proto_goTypes,
  897. DependencyIndexes: file_entManageApplication_proto_depIdxs,
  898. MessageInfos: file_entManageApplication_proto_msgTypes,
  899. }.Build()
  900. File_entManageApplication_proto = out.File
  901. file_entManageApplication_proto_rawDesc = nil
  902. file_entManageApplication_proto_goTypes = nil
  903. file_entManageApplication_proto_depIdxs = nil
  904. }