go_pmp_client.go 109 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691
  1. // Code generated by goctl. DO NOT EDIT.
  2. // goctl 1.9.2
  3. // Source: gorpc.proto
  4. package gopmpclient
  5. import (
  6. "context"
  7. "code.clickto.dev/nomo-server/go-service-pb/pb/pb"
  8. "github.com/zeromicro/go-zero/zrpc"
  9. "google.golang.org/grpc"
  10. )
  11. type (
  12. AccountDeviceListReq = pb.AccountDeviceListReq
  13. AccountDeviceListResp = pb.AccountDeviceListResp
  14. AccountDeviceVo = pb.AccountDeviceVo
  15. AccountListReq = pb.AccountListReq
  16. AccountListResp = pb.AccountListResp
  17. AccountVo = pb.AccountVo
  18. AdGlobalConfigGetReq = pb.AdGlobalConfigGetReq
  19. AdGlobalConfigVo = pb.AdGlobalConfigVo
  20. AdPlanDetailListReq = pb.AdPlanDetailListReq
  21. AdPlanDetailListResp = pb.AdPlanDetailListResp
  22. AdPlanDetailVo = pb.AdPlanDetailVo
  23. AdPlanListReq = pb.AdPlanListReq
  24. AdPlanListResp = pb.AdPlanListResp
  25. AdPlanVo = pb.AdPlanVo
  26. AnnouncePlanDetailListReq = pb.AnnouncePlanDetailListReq
  27. AnnouncePlanDetailListResp = pb.AnnouncePlanDetailListResp
  28. AnnouncePlanDetailVo = pb.AnnouncePlanDetailVo
  29. AnnouncePlanListReq = pb.AnnouncePlanListReq
  30. AnnouncePlanListResp = pb.AnnouncePlanListResp
  31. AnnouncePlanVo = pb.AnnouncePlanVo
  32. AreaParamListReq = pb.AreaParamListReq
  33. AreaParamListResp = pb.AreaParamListResp
  34. AreaParamVo = pb.AreaParamVo
  35. BaseReq = pb.BaseReq
  36. CommonResult = pb.CommonResult
  37. ConfigGetReq = pb.ConfigGetReq
  38. DeleteIdResp = pb.DeleteIdResp
  39. DeployConfigListReq = pb.DeployConfigListReq
  40. DeployConfigListResp = pb.DeployConfigListResp
  41. DeployConfigVo = pb.DeployConfigVo
  42. DeviceListReq = pb.DeviceListReq
  43. DeviceListRes = pb.DeviceListRes
  44. DeviceVo = pb.DeviceVo
  45. DictGetReq = pb.DictGetReq
  46. DictListReq = pb.DictListReq
  47. DictListResp = pb.DictListResp
  48. DictVo = pb.DictVo
  49. Empty = pb.Empty
  50. FindSchedulePublishListReq = pb.FindSchedulePublishListReq
  51. FindSchedulePublishListResp = pb.FindSchedulePublishListResp
  52. GameCategoryListReq = pb.GameCategoryListReq
  53. GameCategoryListRes = pb.GameCategoryListRes
  54. GameCategoryReq = pb.GameCategoryReq
  55. GameCategoryVo = pb.GameCategoryVo
  56. GameCustomerAddResp = pb.GameCustomerAddResp
  57. GameCustomerListReq = pb.GameCustomerListReq
  58. GameCustomerListRes = pb.GameCustomerListRes
  59. GameCustomerVo = pb.GameCustomerVo
  60. GameListReq = pb.GameListReq
  61. GameListRes = pb.GameListRes
  62. GameRankOption = pb.GameRankOption
  63. GameRedisHScanByNameReq = pb.GameRedisHScanByNameReq
  64. GameRedisHScanByNameResp = pb.GameRedisHScanByNameResp
  65. GameReq = pb.GameReq
  66. GameVo = pb.GameVo
  67. GlobalParamGetReq = pb.GlobalParamGetReq
  68. GlobalParamListReq = pb.GlobalParamListReq
  69. GlobalParamListResp = pb.GlobalParamListResp
  70. GlobalParamVo = pb.GlobalParamVo
  71. I18NVo = pb.I18NVo
  72. Ids = pb.Ids
  73. Int64SelectController = pb.Int64SelectController
  74. IntSelectController = pb.IntSelectController
  75. JobBatchListReq = pb.JobBatchListReq
  76. JobBatchListResp = pb.JobBatchListResp
  77. JobBatchListWithTasksResp = pb.JobBatchListWithTasksResp
  78. JobBatchVo = pb.JobBatchVo
  79. JobBatchWithTasksVo = pb.JobBatchWithTasksVo
  80. JobTasksListReq = pb.JobTasksListReq
  81. JobTasksListResp = pb.JobTasksListResp
  82. JobTasksVo = pb.JobTasksVo
  83. MessagePushListReq = pb.MessagePushListReq
  84. MessagePushListResp = pb.MessagePushListResp
  85. MessagePushVo = pb.MessagePushVo
  86. NationalLanguageListReq = pb.NationalLanguageListReq
  87. NationalLanguageListResp = pb.NationalLanguageListResp
  88. NationalLanguageVo = pb.NationalLanguageVo
  89. OperationLogListReq = pb.OperationLogListReq
  90. OperationLogListResp = pb.OperationLogListResp
  91. OperationLogVo = pb.OperationLogVo
  92. Page = pb.Page
  93. Page_OrderItem = pb.Page_OrderItem
  94. ProductActionGroupDisableReq = pb.ProductActionGroupDisableReq
  95. ProductActionGroupEnableReq = pb.ProductActionGroupEnableReq
  96. ProductActionGroupListReq = pb.ProductActionGroupListReq
  97. ProductActionGroupListResp = pb.ProductActionGroupListResp
  98. ProductActionGroupReq = pb.ProductActionGroupReq
  99. ProductActionGroupVo = pb.ProductActionGroupVo
  100. ProductActionListReq = pb.ProductActionListReq
  101. ProductActionListResp = pb.ProductActionListResp
  102. ProductActionPolicyGroupDisableReq = pb.ProductActionPolicyGroupDisableReq
  103. ProductActionPolicyGroupEnableReq = pb.ProductActionPolicyGroupEnableReq
  104. ProductActionPolicyGroupListReq = pb.ProductActionPolicyGroupListReq
  105. ProductActionPolicyGroupListResp = pb.ProductActionPolicyGroupListResp
  106. ProductActionPolicyGroupReq = pb.ProductActionPolicyGroupReq
  107. ProductActionPolicyGroupVo = pb.ProductActionPolicyGroupVo
  108. ProductActionReq = pb.ProductActionReq
  109. ProductActionTypeListReq = pb.ProductActionTypeListReq
  110. ProductActionTypeListResp = pb.ProductActionTypeListResp
  111. ProductActionTypeReq = pb.ProductActionTypeReq
  112. ProductActionTypeVo = pb.ProductActionTypeVo
  113. ProductActionVo = pb.ProductActionVo
  114. ProductListReq = pb.ProductListReq
  115. ProductListResp = pb.ProductListResp
  116. ProductParamGetReq = pb.ProductParamGetReq
  117. ProductParamListReq = pb.ProductParamListReq
  118. ProductParamListResp = pb.ProductParamListResp
  119. ProductParamVo = pb.ProductParamVo
  120. ProductVo = pb.ProductVo
  121. PublishScheduleDramaReq = pb.PublishScheduleDramaReq
  122. RelGameRankListReq = pb.RelGameRankListReq
  123. RelGameRankListRes = pb.RelGameRankListRes
  124. RelGameRankReq = pb.RelGameRankReq
  125. RelGameRankVo = pb.RelGameRankVo
  126. RelGameVpnGroupListReq = pb.RelGameVpnGroupListReq
  127. RelGameVpnGroupListRes = pb.RelGameVpnGroupListRes
  128. RelGameVpnGroupReq = pb.RelGameVpnGroupReq
  129. RelGameVpnGroupVo = pb.RelGameVpnGroupVo
  130. Request = pb.Request
  131. Response = pb.Response
  132. ServiceGoodsAddReq = pb.ServiceGoodsAddReq
  133. ServiceGoodsAddResp = pb.ServiceGoodsAddResp
  134. ServiceGoodsAddWithPlansAndDetailsReq = pb.ServiceGoodsAddWithPlansAndDetailsReq
  135. ServiceGoodsAddWithPlansAndDetailsResp = pb.ServiceGoodsAddWithPlansAndDetailsResp
  136. ServiceGoodsAddWithPlansReq = pb.ServiceGoodsAddWithPlansReq
  137. ServiceGoodsAddWithPlansResp = pb.ServiceGoodsAddWithPlansResp
  138. ServiceGoodsChannelAddReq = pb.ServiceGoodsChannelAddReq
  139. ServiceGoodsChannelAddResp = pb.ServiceGoodsChannelAddResp
  140. ServiceGoodsChannelDelReq = pb.ServiceGoodsChannelDelReq
  141. ServiceGoodsChannelGetReq = pb.ServiceGoodsChannelGetReq
  142. ServiceGoodsChannelGetResp = pb.ServiceGoodsChannelGetResp
  143. ServiceGoodsChannelGetWithGoodsAndPlansAndDetailsReq = pb.ServiceGoodsChannelGetWithGoodsAndPlansAndDetailsReq
  144. ServiceGoodsChannelGetWithGoodsAndPlansAndDetailsResp = pb.ServiceGoodsChannelGetWithGoodsAndPlansAndDetailsResp
  145. ServiceGoodsChannelGetWithGoodsAndPlansReq = pb.ServiceGoodsChannelGetWithGoodsAndPlansReq
  146. ServiceGoodsChannelGetWithGoodsAndPlansResp = pb.ServiceGoodsChannelGetWithGoodsAndPlansResp
  147. ServiceGoodsChannelGetWithGoodsReq = pb.ServiceGoodsChannelGetWithGoodsReq
  148. ServiceGoodsChannelGetWithGoodsResp = pb.ServiceGoodsChannelGetWithGoodsResp
  149. ServiceGoodsChannelListReq = pb.ServiceGoodsChannelListReq
  150. ServiceGoodsChannelListResp = pb.ServiceGoodsChannelListResp
  151. ServiceGoodsChannelListWithGoodsAndPlansAndDetailsReq = pb.ServiceGoodsChannelListWithGoodsAndPlansAndDetailsReq
  152. ServiceGoodsChannelListWithGoodsAndPlansAndDetailsResp = pb.ServiceGoodsChannelListWithGoodsAndPlansAndDetailsResp
  153. ServiceGoodsChannelListWithGoodsAndPlansReq = pb.ServiceGoodsChannelListWithGoodsAndPlansReq
  154. ServiceGoodsChannelListWithGoodsAndPlansResp = pb.ServiceGoodsChannelListWithGoodsAndPlansResp
  155. ServiceGoodsChannelListWithGoodsReq = pb.ServiceGoodsChannelListWithGoodsReq
  156. ServiceGoodsChannelListWithGoodsResp = pb.ServiceGoodsChannelListWithGoodsResp
  157. ServiceGoodsChannelUpdateReq = pb.ServiceGoodsChannelUpdateReq
  158. ServiceGoodsChannelUpdateResp = pb.ServiceGoodsChannelUpdateResp
  159. ServiceGoodsChannelVo = pb.ServiceGoodsChannelVo
  160. ServiceGoodsChannelWithGoodsAndPlansAndDetailsVo = pb.ServiceGoodsChannelWithGoodsAndPlansAndDetailsVo
  161. ServiceGoodsChannelWithGoodsAndPlansVo = pb.ServiceGoodsChannelWithGoodsAndPlansVo
  162. ServiceGoodsChannelWithGoodsVo = pb.ServiceGoodsChannelWithGoodsVo
  163. ServiceGoodsDelReq = pb.ServiceGoodsDelReq
  164. ServiceGoodsGetReq = pb.ServiceGoodsGetReq
  165. ServiceGoodsGetResp = pb.ServiceGoodsGetResp
  166. ServiceGoodsGetWithPlansAndDetailsReq = pb.ServiceGoodsGetWithPlansAndDetailsReq
  167. ServiceGoodsGetWithPlansAndDetailsResp = pb.ServiceGoodsGetWithPlansAndDetailsResp
  168. ServiceGoodsGetWithPlansReq = pb.ServiceGoodsGetWithPlansReq
  169. ServiceGoodsGetWithPlansResp = pb.ServiceGoodsGetWithPlansResp
  170. ServiceGoodsListReq = pb.ServiceGoodsListReq
  171. ServiceGoodsListResp = pb.ServiceGoodsListResp
  172. ServiceGoodsListWithPlansAndDetailsReq = pb.ServiceGoodsListWithPlansAndDetailsReq
  173. ServiceGoodsListWithPlansAndDetailsResp = pb.ServiceGoodsListWithPlansAndDetailsResp
  174. ServiceGoodsListWithPlansReq = pb.ServiceGoodsListWithPlansReq
  175. ServiceGoodsListWithPlansResp = pb.ServiceGoodsListWithPlansResp
  176. ServiceGoodsPlansAddReq = pb.ServiceGoodsPlansAddReq
  177. ServiceGoodsPlansAddResp = pb.ServiceGoodsPlansAddResp
  178. ServiceGoodsPlansDelReq = pb.ServiceGoodsPlansDelReq
  179. ServiceGoodsPlansGetReq = pb.ServiceGoodsPlansGetReq
  180. ServiceGoodsPlansGetResp = pb.ServiceGoodsPlansGetResp
  181. ServiceGoodsPlansListReq = pb.ServiceGoodsPlansListReq
  182. ServiceGoodsPlansListResp = pb.ServiceGoodsPlansListResp
  183. ServiceGoodsPlansUpdateReq = pb.ServiceGoodsPlansUpdateReq
  184. ServiceGoodsPlansUpdateResp = pb.ServiceGoodsPlansUpdateResp
  185. ServiceGoodsPlansVo = pb.ServiceGoodsPlansVo
  186. ServiceGoodsUpdateReq = pb.ServiceGoodsUpdateReq
  187. ServiceGoodsUpdateResp = pb.ServiceGoodsUpdateResp
  188. ServiceGoodsUpdateWithPlansAndDetailsReq = pb.ServiceGoodsUpdateWithPlansAndDetailsReq
  189. ServiceGoodsUpdateWithPlansAndDetailsResp = pb.ServiceGoodsUpdateWithPlansAndDetailsResp
  190. ServiceGoodsUpdateWithPlansReq = pb.ServiceGoodsUpdateWithPlansReq
  191. ServiceGoodsUpdateWithPlansResp = pb.ServiceGoodsUpdateWithPlansResp
  192. ServiceGoodsVo = pb.ServiceGoodsVo
  193. ServiceGoodsWithPlansAndDetailsVo = pb.ServiceGoodsWithPlansAndDetailsVo
  194. ServiceGoodsWithPlansVo = pb.ServiceGoodsWithPlansVo
  195. ServicePlanAddReq = pb.ServicePlanAddReq
  196. ServicePlanAddResp = pb.ServicePlanAddResp
  197. ServicePlanAddWithDetailsReq = pb.ServicePlanAddWithDetailsReq
  198. ServicePlanAddWithDetailsResp = pb.ServicePlanAddWithDetailsResp
  199. ServicePlanDelReq = pb.ServicePlanDelReq
  200. ServicePlanGetReq = pb.ServicePlanGetReq
  201. ServicePlanGetResp = pb.ServicePlanGetResp
  202. ServicePlanGetWithDetailsReq = pb.ServicePlanGetWithDetailsReq
  203. ServicePlanGetWithDetailsResp = pb.ServicePlanGetWithDetailsResp
  204. ServicePlanListReq = pb.ServicePlanListReq
  205. ServicePlanListResp = pb.ServicePlanListResp
  206. ServicePlanListWithDetailsReq = pb.ServicePlanListWithDetailsReq
  207. ServicePlanListWithDetailsResp = pb.ServicePlanListWithDetailsResp
  208. ServicePlanTypesAddReq = pb.ServicePlanTypesAddReq
  209. ServicePlanTypesAddResp = pb.ServicePlanTypesAddResp
  210. ServicePlanTypesDelReq = pb.ServicePlanTypesDelReq
  211. ServicePlanTypesGetReq = pb.ServicePlanTypesGetReq
  212. ServicePlanTypesGetResp = pb.ServicePlanTypesGetResp
  213. ServicePlanTypesListReq = pb.ServicePlanTypesListReq
  214. ServicePlanTypesListResp = pb.ServicePlanTypesListResp
  215. ServicePlanTypesUpdateReq = pb.ServicePlanTypesUpdateReq
  216. ServicePlanTypesUpdateResp = pb.ServicePlanTypesUpdateResp
  217. ServicePlanTypesVo = pb.ServicePlanTypesVo
  218. ServicePlanUpdateReq = pb.ServicePlanUpdateReq
  219. ServicePlanUpdateResp = pb.ServicePlanUpdateResp
  220. ServicePlanUpdateWithDetailsReq = pb.ServicePlanUpdateWithDetailsReq
  221. ServicePlanUpdateWithDetailsResp = pb.ServicePlanUpdateWithDetailsResp
  222. ServicePlanVo = pb.ServicePlanVo
  223. ServicePlanWithDetailsVo = pb.ServicePlanWithDetailsVo
  224. ServicePlanWithDurationAndDetailsVo = pb.ServicePlanWithDurationAndDetailsVo
  225. ServicePlanWithDurationVo = pb.ServicePlanWithDurationVo
  226. ServiceTypesAddReq = pb.ServiceTypesAddReq
  227. ServiceTypesAddResp = pb.ServiceTypesAddResp
  228. ServiceTypesDelReq = pb.ServiceTypesDelReq
  229. ServiceTypesGetReq = pb.ServiceTypesGetReq
  230. ServiceTypesGetResp = pb.ServiceTypesGetResp
  231. ServiceTypesGetWithValueReq = pb.ServiceTypesGetWithValueReq
  232. ServiceTypesGetWithValueResp = pb.ServiceTypesGetWithValueResp
  233. ServiceTypesListReq = pb.ServiceTypesListReq
  234. ServiceTypesListResp = pb.ServiceTypesListResp
  235. ServiceTypesListWithValueReq = pb.ServiceTypesListWithValueReq
  236. ServiceTypesListWithValueResp = pb.ServiceTypesListWithValueResp
  237. ServiceTypesUpdateReq = pb.ServiceTypesUpdateReq
  238. ServiceTypesUpdateResp = pb.ServiceTypesUpdateResp
  239. ServiceTypesVo = pb.ServiceTypesVo
  240. ServiceTypesWithValueVo = pb.ServiceTypesWithValueVo
  241. SetTotalStatsReq = pb.SetTotalStatsReq
  242. ShortDramaCheckNameReq = pb.ShortDramaCheckNameReq
  243. ShortDramaCheckNameResp = pb.ShortDramaCheckNameResp
  244. ShortDramaCopyrightInfoVo = pb.ShortDramaCopyrightInfoVo
  245. ShortDramaEpisodeBatchAddReq = pb.ShortDramaEpisodeBatchAddReq
  246. ShortDramaEpisodeBatchRefreshUpdateTimeReq = pb.ShortDramaEpisodeBatchRefreshUpdateTimeReq
  247. ShortDramaEpisodeCountReq = pb.ShortDramaEpisodeCountReq
  248. ShortDramaEpisodeCountResp = pb.ShortDramaEpisodeCountResp
  249. ShortDramaEpisodeCountVo = pb.ShortDramaEpisodeCountVo
  250. ShortDramaEpisodeGetReq = pb.ShortDramaEpisodeGetReq
  251. ShortDramaEpisodeListReq = pb.ShortDramaEpisodeListReq
  252. ShortDramaEpisodeListResp = pb.ShortDramaEpisodeListResp
  253. ShortDramaEpisodeVo = pb.ShortDramaEpisodeVo
  254. ShortDramaFindIdsWithCopyrightResp = pb.ShortDramaFindIdsWithCopyrightResp
  255. ShortDramaGetReq = pb.ShortDramaGetReq
  256. ShortDramaLanguageListReq = pb.ShortDramaLanguageListReq
  257. ShortDramaLanguageListResp = pb.ShortDramaLanguageListResp
  258. ShortDramaLanguageVo = pb.ShortDramaLanguageVo
  259. ShortDramaListReq = pb.ShortDramaListReq
  260. ShortDramaListResp = pb.ShortDramaListResp
  261. ShortDramaStatsPlaysTotalListReq = pb.ShortDramaStatsPlaysTotalListReq
  262. ShortDramaStatsPlaysTotalListResp = pb.ShortDramaStatsPlaysTotalListResp
  263. ShortDramaStatsPlaysTotalVo = pb.ShortDramaStatsPlaysTotalVo
  264. ShortDramaUpdateModifierReq = pb.ShortDramaUpdateModifierReq
  265. ShortDramaUpdateReleaseRegionsReq = pb.ShortDramaUpdateReleaseRegionsReq
  266. ShortDramaVo = pb.ShortDramaVo
  267. StringSelectController = pb.StringSelectController
  268. SysPermGetReq = pb.SysPermGetReq
  269. SysPermListReq = pb.SysPermListReq
  270. SysPermListResp = pb.SysPermListResp
  271. SysPermRule = pb.SysPermRule
  272. SysPermVo = pb.SysPermVo
  273. SysRoleGetReq = pb.SysRoleGetReq
  274. SysRoleListReq = pb.SysRoleListReq
  275. SysRoleListResp = pb.SysRoleListResp
  276. SysRoleListWithPermsResp = pb.SysRoleListWithPermsResp
  277. SysRolePermGetReq = pb.SysRolePermGetReq
  278. SysRolePermListReq = pb.SysRolePermListReq
  279. SysRolePermListResp = pb.SysRolePermListResp
  280. SysRolePermVo = pb.SysRolePermVo
  281. SysRoleVo = pb.SysRoleVo
  282. SysRoleWithPermIds = pb.SysRoleWithPermIds
  283. SysRoleWithPerms = pb.SysRoleWithPerms
  284. SysUserGetReq = pb.SysUserGetReq
  285. SysUserListReq = pb.SysUserListReq
  286. SysUserListResp = pb.SysUserListResp
  287. SysUserListWithRolesAndPermsResp = pb.SysUserListWithRolesAndPermsResp
  288. SysUserPermGetReq = pb.SysUserPermGetReq
  289. SysUserPermListReq = pb.SysUserPermListReq
  290. SysUserPermListResp = pb.SysUserPermListResp
  291. SysUserPermVo = pb.SysUserPermVo
  292. SysUserRoleGetReq = pb.SysUserRoleGetReq
  293. SysUserRoleListReq = pb.SysUserRoleListReq
  294. SysUserRoleListResp = pb.SysUserRoleListResp
  295. SysUserRoleVo = pb.SysUserRoleVo
  296. SysUserVo = pb.SysUserVo
  297. SysUserWithRoleIdsAndPermRules = pb.SysUserWithRoleIdsAndPermRules
  298. SysUserWithRolesAndPerms = pb.SysUserWithRolesAndPerms
  299. TimeRange = pb.TimeRange
  300. TipGetReq = pb.TipGetReq
  301. TipListReq = pb.TipListReq
  302. TipListResp = pb.TipListResp
  303. TipVo = pb.TipVo
  304. TransactionOperation = pb.TransactionOperation
  305. TransactionReq = pb.TransactionReq
  306. UpgradePkgPlanDetailListReq = pb.UpgradePkgPlanDetailListReq
  307. UpgradePkgPlanDetailListResp = pb.UpgradePkgPlanDetailListResp
  308. UpgradePkgPlanDetailVo = pb.UpgradePkgPlanDetailVo
  309. UpgradePkgPlanListReq = pb.UpgradePkgPlanListReq
  310. UpgradePkgPlanListResp = pb.UpgradePkgPlanListResp
  311. UpgradePkgPlanVo = pb.UpgradePkgPlanVo
  312. UpgradeResPlanDetailListReq = pb.UpgradeResPlanDetailListReq
  313. UpgradeResPlanDetailListResp = pb.UpgradeResPlanDetailListResp
  314. UpgradeResPlanDetailVo = pb.UpgradeResPlanDetailVo
  315. UpgradeResPlanListReq = pb.UpgradeResPlanListReq
  316. UpgradeResPlanListResp = pb.UpgradeResPlanListResp
  317. UpgradeResPlanVo = pb.UpgradeResPlanVo
  318. UserAddReq = pb.UserAddReq
  319. UserAddResp = pb.UserAddResp
  320. UserAppConfigGetReq = pb.UserAppConfigGetReq
  321. UserAppConfigListReq = pb.UserAppConfigListReq
  322. UserAppConfigListRes = pb.UserAppConfigListRes
  323. UserAppConfigVo = pb.UserAppConfigVo
  324. UserCredentialAddReq = pb.UserCredentialAddReq
  325. UserCredentialAddResp = pb.UserCredentialAddResp
  326. UserCredentialDelReq = pb.UserCredentialDelReq
  327. UserCredentialGetReq = pb.UserCredentialGetReq
  328. UserCredentialGetResp = pb.UserCredentialGetResp
  329. UserCredentialListReq = pb.UserCredentialListReq
  330. UserCredentialListResp = pb.UserCredentialListResp
  331. UserCredentialUpdateReq = pb.UserCredentialUpdateReq
  332. UserCredentialUpdateResp = pb.UserCredentialUpdateResp
  333. UserCredentialVo = pb.UserCredentialVo
  334. UserDelReq = pb.UserDelReq
  335. UserDeviceAddReq = pb.UserDeviceAddReq
  336. UserDeviceAddResp = pb.UserDeviceAddResp
  337. UserDeviceDelReq = pb.UserDeviceDelReq
  338. UserDeviceGetReq = pb.UserDeviceGetReq
  339. UserDeviceGetResp = pb.UserDeviceGetResp
  340. UserDeviceListReq = pb.UserDeviceListReq
  341. UserDeviceListResp = pb.UserDeviceListResp
  342. UserDeviceUpdateReq = pb.UserDeviceUpdateReq
  343. UserDeviceUpdateResp = pb.UserDeviceUpdateResp
  344. UserDeviceVo = pb.UserDeviceVo
  345. UserGetReq = pb.UserGetReq
  346. UserGetResp = pb.UserGetResp
  347. UserListReq = pb.UserListReq
  348. UserListResp = pb.UserListResp
  349. UserServiceAddReq = pb.UserServiceAddReq
  350. UserServiceAddResp = pb.UserServiceAddResp
  351. UserServiceDelReq = pb.UserServiceDelReq
  352. UserServiceGetReq = pb.UserServiceGetReq
  353. UserServiceGetResp = pb.UserServiceGetResp
  354. UserServiceListReq = pb.UserServiceListReq
  355. UserServiceListResp = pb.UserServiceListResp
  356. UserServiceUpdateReq = pb.UserServiceUpdateReq
  357. UserServiceUpdateResp = pb.UserServiceUpdateResp
  358. UserServiceVo = pb.UserServiceVo
  359. UserTestAddReq = pb.UserTestAddReq
  360. UserTestAddResp = pb.UserTestAddResp
  361. UserTestDelReq = pb.UserTestDelReq
  362. UserTestGetReq = pb.UserTestGetReq
  363. UserTestGetResp = pb.UserTestGetResp
  364. UserTestListReq = pb.UserTestListReq
  365. UserTestListResp = pb.UserTestListResp
  366. UserTestUpdateReq = pb.UserTestUpdateReq
  367. UserTestUpdateResp = pb.UserTestUpdateResp
  368. UserTestVo = pb.UserTestVo
  369. UserUpdateReq = pb.UserUpdateReq
  370. UserUpdateResp = pb.UserUpdateResp
  371. UserVo = pb.UserVo
  372. UserWhiteAddReq = pb.UserWhiteAddReq
  373. UserWhiteAddResp = pb.UserWhiteAddResp
  374. UserWhiteDelReq = pb.UserWhiteDelReq
  375. UserWhiteGetReq = pb.UserWhiteGetReq
  376. UserWhiteGetResp = pb.UserWhiteGetResp
  377. UserWhiteListReq = pb.UserWhiteListReq
  378. UserWhiteListResp = pb.UserWhiteListResp
  379. UserWhiteUpdateReq = pb.UserWhiteUpdateReq
  380. UserWhiteUpdateResp = pb.UserWhiteUpdateResp
  381. UserWhiteVo = pb.UserWhiteVo
  382. VpnConfigTemplatePlanAddReq = pb.VpnConfigTemplatePlanAddReq
  383. VpnConfigTemplatePlanAddResp = pb.VpnConfigTemplatePlanAddResp
  384. VpnConfigTemplatePlanDelReq = pb.VpnConfigTemplatePlanDelReq
  385. VpnConfigTemplatePlanDetailAddReq = pb.VpnConfigTemplatePlanDetailAddReq
  386. VpnConfigTemplatePlanDetailAddResp = pb.VpnConfigTemplatePlanDetailAddResp
  387. VpnConfigTemplatePlanDetailDelReq = pb.VpnConfigTemplatePlanDetailDelReq
  388. VpnConfigTemplatePlanDetailGetReq = pb.VpnConfigTemplatePlanDetailGetReq
  389. VpnConfigTemplatePlanDetailGetResp = pb.VpnConfigTemplatePlanDetailGetResp
  390. VpnConfigTemplatePlanDetailListReq = pb.VpnConfigTemplatePlanDetailListReq
  391. VpnConfigTemplatePlanDetailListResp = pb.VpnConfigTemplatePlanDetailListResp
  392. VpnConfigTemplatePlanDetailUpdateReq = pb.VpnConfigTemplatePlanDetailUpdateReq
  393. VpnConfigTemplatePlanDetailUpdateResp = pb.VpnConfigTemplatePlanDetailUpdateResp
  394. VpnConfigTemplatePlanDetailVo = pb.VpnConfigTemplatePlanDetailVo
  395. VpnConfigTemplatePlanGetReq = pb.VpnConfigTemplatePlanGetReq
  396. VpnConfigTemplatePlanGetResp = pb.VpnConfigTemplatePlanGetResp
  397. VpnConfigTemplatePlanListReq = pb.VpnConfigTemplatePlanListReq
  398. VpnConfigTemplatePlanListResp = pb.VpnConfigTemplatePlanListResp
  399. VpnConfigTemplatePlanUpdateReq = pb.VpnConfigTemplatePlanUpdateReq
  400. VpnConfigTemplatePlanUpdateResp = pb.VpnConfigTemplatePlanUpdateResp
  401. VpnConfigTemplatePlanVo = pb.VpnConfigTemplatePlanVo
  402. VpnGroupAddReq = pb.VpnGroupAddReq
  403. VpnGroupBatchAddReq = pb.VpnGroupBatchAddReq
  404. VpnGroupBatchAddResp = pb.VpnGroupBatchAddResp
  405. VpnGroupBatchDelReq = pb.VpnGroupBatchDelReq
  406. VpnGroupBatchUpdateReq = pb.VpnGroupBatchUpdateReq
  407. VpnGroupBatchUpdateResp = pb.VpnGroupBatchUpdateResp
  408. VpnGroupExVo = pb.VpnGroupExVo
  409. VpnGroupGetReq = pb.VpnGroupGetReq
  410. VpnGroupListReq = pb.VpnGroupListReq
  411. VpnGroupListResp = pb.VpnGroupListResp
  412. VpnGroupTagListReq = pb.VpnGroupTagListReq
  413. VpnGroupTagListResp = pb.VpnGroupTagListResp
  414. VpnGroupTagVo = pb.VpnGroupTagVo
  415. VpnGroupVo = pb.VpnGroupVo
  416. VpnLocationBatchAddReq = pb.VpnLocationBatchAddReq
  417. VpnLocationBatchAddResp = pb.VpnLocationBatchAddResp
  418. VpnLocationBatchDelReq = pb.VpnLocationBatchDelReq
  419. VpnLocationBatchUpdateReq = pb.VpnLocationBatchUpdateReq
  420. VpnLocationBatchUpdateResp = pb.VpnLocationBatchUpdateResp
  421. VpnLocationExVo = pb.VpnLocationExVo
  422. VpnLocationGetReq = pb.VpnLocationGetReq
  423. VpnLocationListReq = pb.VpnLocationListReq
  424. VpnLocationListResp = pb.VpnLocationListResp
  425. VpnLocationServerCountReq = pb.VpnLocationServerCountReq
  426. VpnLocationServerCountResp = pb.VpnLocationServerCountResp
  427. VpnLocationServerCountVo = pb.VpnLocationServerCountVo
  428. VpnLocationVo = pb.VpnLocationVo
  429. VpnProbeTaskListReq = pb.VpnProbeTaskListReq
  430. VpnProbeTaskListResp = pb.VpnProbeTaskListResp
  431. VpnProbeTaskVo = pb.VpnProbeTaskVo
  432. VpnServerAddReq = pb.VpnServerAddReq
  433. VpnServerBatchAddReq = pb.VpnServerBatchAddReq
  434. VpnServerBatchAddResp = pb.VpnServerBatchAddResp
  435. VpnServerBatchDelReq = pb.VpnServerBatchDelReq
  436. VpnServerBatchUpdateReq = pb.VpnServerBatchUpdateReq
  437. VpnServerBatchUpdateResp = pb.VpnServerBatchUpdateResp
  438. VpnServerExListResp = pb.VpnServerExListResp
  439. VpnServerExVo = pb.VpnServerExVo
  440. VpnServerListReq = pb.VpnServerListReq
  441. VpnServerListResp = pb.VpnServerListResp
  442. VpnServerLocationListReq = pb.VpnServerLocationListReq
  443. VpnServerLocationListResp = pb.VpnServerLocationListResp
  444. VpnServerLocationVo = pb.VpnServerLocationVo
  445. VpnServerVo = pb.VpnServerVo
  446. VpnTagBatchAddReq = pb.VpnTagBatchAddReq
  447. VpnTagBatchAddResp = pb.VpnTagBatchAddResp
  448. VpnTagBatchDelReq = pb.VpnTagBatchDelReq
  449. VpnTagBatchUpdateReq = pb.VpnTagBatchUpdateReq
  450. VpnTagBatchUpdateResp = pb.VpnTagBatchUpdateResp
  451. VpnTagGetReq = pb.VpnTagGetReq
  452. VpnTagListReq = pb.VpnTagListReq
  453. VpnTagListResp = pb.VpnTagListResp
  454. VpnTagVo = pb.VpnTagVo
  455. VpnWithIPAndPortReq = pb.VpnWithIPAndPortReq
  456. VpnWithIPAndPortResp = pb.VpnWithIPAndPortResp
  457. VpnipAddReq = pb.VpnipAddReq
  458. VpnipAddResp = pb.VpnipAddResp
  459. VpnipBatchAddReq = pb.VpnipBatchAddReq
  460. VpnipBatchAddResp = pb.VpnipBatchAddResp
  461. VpnipBatchUpdateReq = pb.VpnipBatchUpdateReq
  462. VpnipBatchUpdateResp = pb.VpnipBatchUpdateResp
  463. VpnipBindAddReq = pb.VpnipBindAddReq
  464. VpnipBindAddResp = pb.VpnipBindAddResp
  465. VpnipBindBatchAddReq = pb.VpnipBindBatchAddReq
  466. VpnipBindBatchAddResp = pb.VpnipBindBatchAddResp
  467. VpnipBindBatchUpdateReq = pb.VpnipBindBatchUpdateReq
  468. VpnipBindBatchUpdateResp = pb.VpnipBindBatchUpdateResp
  469. VpnipBindGetReq = pb.VpnipBindGetReq
  470. VpnipBindGetResp = pb.VpnipBindGetResp
  471. VpnipBindListReq = pb.VpnipBindListReq
  472. VpnipBindListResp = pb.VpnipBindListResp
  473. VpnipBindUpdateReq = pb.VpnipBindUpdateReq
  474. VpnipBindUpdateResp = pb.VpnipBindUpdateResp
  475. VpnipBindVo = pb.VpnipBindVo
  476. VpnipExAddReq = pb.VpnipExAddReq
  477. VpnipExAddResp = pb.VpnipExAddResp
  478. VpnipExBatchAddReq = pb.VpnipExBatchAddReq
  479. VpnipExBatchAddResp = pb.VpnipExBatchAddResp
  480. VpnipExBatchUpdateReq = pb.VpnipExBatchUpdateReq
  481. VpnipExBatchUpdateResp = pb.VpnipExBatchUpdateResp
  482. VpnipExGetResp = pb.VpnipExGetResp
  483. VpnipExListResp = pb.VpnipExListResp
  484. VpnipExUpdateReq = pb.VpnipExUpdateReq
  485. VpnipExUpdateResp = pb.VpnipExUpdateResp
  486. VpnipExVo = pb.VpnipExVo
  487. VpnipGetReq = pb.VpnipGetReq
  488. VpnipGetResp = pb.VpnipGetResp
  489. VpnipListReq = pb.VpnipListReq
  490. VpnipListResp = pb.VpnipListResp
  491. VpnipRangeAddReq = pb.VpnipRangeAddReq
  492. VpnipRangeAddResp = pb.VpnipRangeAddResp
  493. VpnipRangeBatchAddReq = pb.VpnipRangeBatchAddReq
  494. VpnipRangeBatchAddResp = pb.VpnipRangeBatchAddResp
  495. VpnipRangeBatchUpdateReq = pb.VpnipRangeBatchUpdateReq
  496. VpnipRangeBatchUpdateResp = pb.VpnipRangeBatchUpdateResp
  497. VpnipRangeExAddReq = pb.VpnipRangeExAddReq
  498. VpnipRangeExAddResp = pb.VpnipRangeExAddResp
  499. VpnipRangeExBatchAddReq = pb.VpnipRangeExBatchAddReq
  500. VpnipRangeExBatchAddResp = pb.VpnipRangeExBatchAddResp
  501. VpnipRangeExBatchUpdateReq = pb.VpnipRangeExBatchUpdateReq
  502. VpnipRangeExBatchUpdateResp = pb.VpnipRangeExBatchUpdateResp
  503. VpnipRangeExGetResp = pb.VpnipRangeExGetResp
  504. VpnipRangeExListResp = pb.VpnipRangeExListResp
  505. VpnipRangeExUpdateReq = pb.VpnipRangeExUpdateReq
  506. VpnipRangeExUpdateResp = pb.VpnipRangeExUpdateResp
  507. VpnipRangeExVo = pb.VpnipRangeExVo
  508. VpnipRangeGetReq = pb.VpnipRangeGetReq
  509. VpnipRangeGetResp = pb.VpnipRangeGetResp
  510. VpnipRangeListReq = pb.VpnipRangeListReq
  511. VpnipRangeListResp = pb.VpnipRangeListResp
  512. VpnipRangeUpdateReq = pb.VpnipRangeUpdateReq
  513. VpnipRangeUpdateResp = pb.VpnipRangeUpdateResp
  514. VpnipRangeVo = pb.VpnipRangeVo
  515. VpnipUpdateReq = pb.VpnipUpdateReq
  516. VpnipUpdateResp = pb.VpnipUpdateResp
  517. VpnipVo = pb.VpnipVo
  518. VpnipWalledAddReq = pb.VpnipWalledAddReq
  519. VpnipWalledAddResp = pb.VpnipWalledAddResp
  520. VpnipWalledBatchAddReq = pb.VpnipWalledBatchAddReq
  521. VpnipWalledBatchAddResp = pb.VpnipWalledBatchAddResp
  522. VpnipWalledBatchUpdateReq = pb.VpnipWalledBatchUpdateReq
  523. VpnipWalledBatchUpdateResp = pb.VpnipWalledBatchUpdateResp
  524. VpnipWalledGetReq = pb.VpnipWalledGetReq
  525. VpnipWalledGetResp = pb.VpnipWalledGetResp
  526. VpnipWalledListReq = pb.VpnipWalledListReq
  527. VpnipWalledListResp = pb.VpnipWalledListResp
  528. VpnipWalledUpdateReq = pb.VpnipWalledUpdateReq
  529. VpnipWalledUpdateResp = pb.VpnipWalledUpdateResp
  530. VpnipWalledVo = pb.VpnipWalledVo
  531. GoPmpClient interface {
  532. Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error)
  533. // GlobalParamVo Model
  534. GlobalParamAdd(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error)
  535. GlobalParamUpdate(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error)
  536. GlobalParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  537. GlobalParamGet(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error)
  538. GlobalParamGetWithLang(ctx context.Context, in *GlobalParamGetReq, opts ...grpc.CallOption) (*GlobalParamVo, error)
  539. GlobalParamList(ctx context.Context, in *GlobalParamListReq, opts ...grpc.CallOption) (*GlobalParamListResp, error)
  540. // ProductVo Model
  541. ProductAdd(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error)
  542. ProductUpdate(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error)
  543. ProductDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  544. ProductGet(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error)
  545. ProductList(ctx context.Context, in *ProductListReq, opts ...grpc.CallOption) (*ProductListResp, error)
  546. ProductAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*ProductListResp, error)
  547. // ProductParamVo Model
  548. ProductParamAdd(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error)
  549. ProductParamUpdate(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error)
  550. ProductParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  551. ProductParamGet(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error)
  552. ProductParamGetWithLang(ctx context.Context, in *ProductParamGetReq, opts ...grpc.CallOption) (*ProductParamVo, error)
  553. ProductParamList(ctx context.Context, in *ProductParamListReq, opts ...grpc.CallOption) (*ProductParamListResp, error)
  554. // ProductAction 产品行为配置
  555. ProductActionAdd(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error)
  556. ProductActionUpdate(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error)
  557. ProductActionDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  558. ProductActionGet(ctx context.Context, in *ProductActionReq, opts ...grpc.CallOption) (*ProductActionVo, error)
  559. ProductActionList(ctx context.Context, in *ProductActionListReq, opts ...grpc.CallOption) (*ProductActionListResp, error)
  560. // ProductActionGroup 产品行为分组
  561. ProductActionGroupAdd(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error)
  562. ProductActionGroupUpdate(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error)
  563. ProductActionGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  564. ProductActionGroupGet(ctx context.Context, in *ProductActionGroupReq, opts ...grpc.CallOption) (*ProductActionGroupVo, error)
  565. ProductActionGroupList(ctx context.Context, in *ProductActionGroupListReq, opts ...grpc.CallOption) (*ProductActionGroupListResp, error)
  566. ProductActionGroupDisable(ctx context.Context, in *ProductActionGroupDisableReq, opts ...grpc.CallOption) (*Empty, error)
  567. ProductActionGroupEnable(ctx context.Context, in *ProductActionGroupEnableReq, opts ...grpc.CallOption) (*Empty, error)
  568. // ProductActionPolicyGroup 产品行为策略分组
  569. ProductActionPolicyGroupAdd(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error)
  570. ProductActionPolicyGroupUpdate(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error)
  571. ProductActionPolicyGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  572. ProductActionPolicyGroupGet(ctx context.Context, in *ProductActionPolicyGroupReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error)
  573. ProductActionPolicyGroupList(ctx context.Context, in *ProductActionPolicyGroupListReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupListResp, error)
  574. ProductActionPolicyGroupDisable(ctx context.Context, in *ProductActionPolicyGroupDisableReq, opts ...grpc.CallOption) (*Empty, error)
  575. ProductActionPolicyGroupEnable(ctx context.Context, in *ProductActionPolicyGroupEnableReq, opts ...grpc.CallOption) (*Empty, error)
  576. // ProductActionType 产品行为类型
  577. ProductActionTypeAdd(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error)
  578. ProductActionTypeUpdate(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error)
  579. ProductActionTypeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  580. ProductActionTypeGet(ctx context.Context, in *ProductActionTypeReq, opts ...grpc.CallOption) (*ProductActionTypeVo, error)
  581. ProductActionTypeList(ctx context.Context, in *ProductActionTypeListReq, opts ...grpc.CallOption) (*ProductActionTypeListResp, error)
  582. // AreaParamVo Model
  583. AreaParamAdd(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error)
  584. AreaParamUpdate(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error)
  585. AreaParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  586. AreaParamGet(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error)
  587. AreaParamList(ctx context.Context, in *AreaParamListReq, opts ...grpc.CallOption) (*AreaParamListResp, error)
  588. // NationalLanguage Model
  589. NationalLanguageAdd(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error)
  590. NationalLanguageUpdate(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error)
  591. NationalLanguageDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  592. NationalLanguageGet(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error)
  593. NationalLanguageList(ctx context.Context, in *NationalLanguageListReq, opts ...grpc.CallOption) (*NationalLanguageListResp, error)
  594. // Tip Model
  595. TipAdd(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error)
  596. TipUpdate(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error)
  597. TipDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  598. TipGet(ctx context.Context, in *TipGetReq, opts ...grpc.CallOption) (*TipVo, error)
  599. TipList(ctx context.Context, in *TipListReq, opts ...grpc.CallOption) (*TipListResp, error)
  600. // Dict Model
  601. DictAdd(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error)
  602. DictUpdate(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error)
  603. DictDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  604. DictGet(ctx context.Context, in *DictGetReq, opts ...grpc.CallOption) (*DictVo, error)
  605. DictList(ctx context.Context, in *DictListReq, opts ...grpc.CallOption) (*DictListResp, error)
  606. // UpgradePkgPlan Model
  607. UpgradePkgPlanAdd(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error)
  608. UpgradePkgPlanUpdate(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error)
  609. UpgradePkgPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  610. UpgradePkgPlanGet(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error)
  611. UpgradePkgPlanList(ctx context.Context, in *UpgradePkgPlanListReq, opts ...grpc.CallOption) (*UpgradePkgPlanListResp, error)
  612. // UpgradePkgPlanDetail Model
  613. UpgradePkgPlanDetailAdd(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error)
  614. UpgradePkgPlanDetailUpdate(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error)
  615. UpgradePkgPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  616. UpgradePkgPlanDetailGet(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error)
  617. UpgradePkgPlanDetailList(ctx context.Context, in *UpgradePkgPlanDetailListReq, opts ...grpc.CallOption) (*UpgradePkgPlanDetailListResp, error)
  618. // UpgradeResPlan Model
  619. UpgradeResPlanAdd(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error)
  620. UpgradeResPlanUpdate(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error)
  621. UpgradeResPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  622. UpgradeResPlanGet(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error)
  623. UpgradeResPlanList(ctx context.Context, in *UpgradeResPlanListReq, opts ...grpc.CallOption) (*UpgradeResPlanListResp, error)
  624. // UpgradeResPlanDetail Model
  625. UpgradeResPlanDetailAdd(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error)
  626. UpgradeResPlanDetailUpdate(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error)
  627. UpgradeResPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  628. UpgradeResPlanDetailGet(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error)
  629. UpgradeResPlanDetailList(ctx context.Context, in *UpgradeResPlanDetailListReq, opts ...grpc.CallOption) (*UpgradeResPlanDetailListResp, error)
  630. // AdPlan Model
  631. AdPlanAdd(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error)
  632. AdPlanUpdate(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error)
  633. AdPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  634. AdPlanGet(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error)
  635. AdPlanList(ctx context.Context, in *AdPlanListReq, opts ...grpc.CallOption) (*AdPlanListResp, error)
  636. // AdPlanDetail Model
  637. AdPlanDetailAdd(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error)
  638. AdPlanDetailUpdate(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error)
  639. AdPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  640. AdPlanDetailGet(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error)
  641. AdPlanDetailList(ctx context.Context, in *AdPlanDetailListReq, opts ...grpc.CallOption) (*AdPlanDetailListResp, error)
  642. // AdGlobalConfig Model
  643. AdGlobalConfigGet(ctx context.Context, in *AdGlobalConfigGetReq, opts ...grpc.CallOption) (*AdGlobalConfigVo, error)
  644. AdGlobalConfigUpdate(ctx context.Context, in *AdGlobalConfigVo, opts ...grpc.CallOption) (*AdGlobalConfigVo, error)
  645. // JobBatch Model
  646. JobBatchAdd(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error)
  647. JobBatchAddWithTasks(ctx context.Context, in *JobBatchWithTasksVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error)
  648. JobBatchUpdate(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error)
  649. JobBatchDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  650. JobBatchGet(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error)
  651. JobBatchGetWithTasks(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error)
  652. JobBatchList(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListResp, error)
  653. JobBatchListWithTasks(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListWithTasksResp, error)
  654. // JobTasks Model
  655. JobTasksAdd(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error)
  656. JobTasksUpdate(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error)
  657. JobTasksDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  658. JobTasksGet(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error)
  659. JobTasksList(ctx context.Context, in *JobTasksListReq, opts ...grpc.CallOption) (*JobTasksListResp, error)
  660. // DeployConfig Model
  661. DeployConfigAdd(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error)
  662. DeployConfigUpdate(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error)
  663. DeployConfigDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  664. DeployConfigGet(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error)
  665. DeployConfigList(ctx context.Context, in *DeployConfigListReq, opts ...grpc.CallOption) (*DeployConfigListResp, error)
  666. // OperationLog Model
  667. OperationLogAdd(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error)
  668. OperationLogUpdate(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error)
  669. OperationLogGet(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error)
  670. OperationLogList(ctx context.Context, in *OperationLogListReq, opts ...grpc.CallOption) (*OperationLogListResp, error)
  671. // AnnouncePlan Model
  672. AnnouncePlanAdd(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error)
  673. AnnouncePlanUpdate(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error)
  674. AnnouncePlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  675. AnnouncePlanGet(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error)
  676. AnnouncePlanList(ctx context.Context, in *AnnouncePlanListReq, opts ...grpc.CallOption) (*AnnouncePlanListResp, error)
  677. // AnnouncePlanDetail Model
  678. AnnouncePlanDetailAdd(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error)
  679. AnnouncePlanDetailUpdate(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error)
  680. AnnouncePlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  681. AnnouncePlanDetailGet(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error)
  682. AnnouncePlanDetailList(ctx context.Context, in *AnnouncePlanDetailListReq, opts ...grpc.CallOption) (*AnnouncePlanDetailListResp, error)
  683. // ServiceTypes Model
  684. ServiceTypesAdd(ctx context.Context, in *ServiceTypesAddReq, opts ...grpc.CallOption) (*ServiceTypesAddResp, error)
  685. ServiceTypesUpdate(ctx context.Context, in *ServiceTypesUpdateReq, opts ...grpc.CallOption) (*ServiceTypesUpdateResp, error)
  686. ServiceTypesDel(ctx context.Context, in *ServiceTypesDelReq, opts ...grpc.CallOption) (*Empty, error)
  687. ServiceTypesGet(ctx context.Context, in *ServiceTypesGetReq, opts ...grpc.CallOption) (*ServiceTypesGetResp, error)
  688. ServiceTypesGetWithValue(ctx context.Context, in *ServiceTypesGetWithValueReq, opts ...grpc.CallOption) (*ServiceTypesGetWithValueResp, error)
  689. ServiceTypesList(ctx context.Context, in *ServiceTypesListReq, opts ...grpc.CallOption) (*ServiceTypesListResp, error)
  690. ServiceTypesListWithValue(ctx context.Context, in *ServiceTypesListWithValueReq, opts ...grpc.CallOption) (*ServiceTypesListWithValueResp, error)
  691. // ServicePlan Model
  692. ServicePlanAdd(ctx context.Context, in *ServicePlanAddReq, opts ...grpc.CallOption) (*ServicePlanAddResp, error)
  693. ServicePlanAddWithDetails(ctx context.Context, in *ServicePlanAddWithDetailsReq, opts ...grpc.CallOption) (*ServicePlanAddWithDetailsResp, error)
  694. ServicePlanUpdate(ctx context.Context, in *ServicePlanUpdateReq, opts ...grpc.CallOption) (*ServicePlanUpdateResp, error)
  695. ServicePlanUpdateWithDetails(ctx context.Context, in *ServicePlanUpdateWithDetailsReq, opts ...grpc.CallOption) (*ServicePlanUpdateWithDetailsResp, error)
  696. ServicePlanDel(ctx context.Context, in *ServicePlanDelReq, opts ...grpc.CallOption) (*Empty, error)
  697. ServicePlanGet(ctx context.Context, in *ServicePlanGetReq, opts ...grpc.CallOption) (*ServicePlanGetResp, error)
  698. ServicePlanGetWithDetails(ctx context.Context, in *ServicePlanGetWithDetailsReq, opts ...grpc.CallOption) (*ServicePlanGetWithDetailsResp, error)
  699. ServicePlanList(ctx context.Context, in *ServicePlanListReq, opts ...grpc.CallOption) (*ServicePlanListResp, error)
  700. ServicePlanListWithDetails(ctx context.Context, in *ServicePlanListWithDetailsReq, opts ...grpc.CallOption) (*ServicePlanListWithDetailsResp, error)
  701. // ServicePlanTypes Model
  702. ServicePlanTypesAdd(ctx context.Context, in *ServicePlanTypesAddReq, opts ...grpc.CallOption) (*ServicePlanTypesAddResp, error)
  703. ServicePlanTypesUpdate(ctx context.Context, in *ServicePlanTypesUpdateReq, opts ...grpc.CallOption) (*ServicePlanTypesUpdateResp, error)
  704. ServicePlanTypesDel(ctx context.Context, in *ServicePlanTypesDelReq, opts ...grpc.CallOption) (*Empty, error)
  705. ServicePlanTypesGet(ctx context.Context, in *ServicePlanTypesGetReq, opts ...grpc.CallOption) (*ServicePlanTypesGetResp, error)
  706. ServicePlanTypesList(ctx context.Context, in *ServicePlanTypesListReq, opts ...grpc.CallOption) (*ServicePlanTypesListResp, error)
  707. // ServiceGoods Model
  708. ServiceGoodsAdd(ctx context.Context, in *ServiceGoodsAddReq, opts ...grpc.CallOption) (*ServiceGoodsAddResp, error)
  709. ServiceGoodsAddWithPlans(ctx context.Context, in *ServiceGoodsAddWithPlansReq, opts ...grpc.CallOption) (*ServiceGoodsAddWithPlansResp, error)
  710. ServiceGoodsAddWithPlansAndDetails(ctx context.Context, in *ServiceGoodsAddWithPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsAddWithPlansAndDetailsResp, error)
  711. ServiceGoodsUpdate(ctx context.Context, in *ServiceGoodsUpdateReq, opts ...grpc.CallOption) (*ServiceGoodsUpdateResp, error)
  712. ServiceGoodsUpdateWithPlans(ctx context.Context, in *ServiceGoodsUpdateWithPlansReq, opts ...grpc.CallOption) (*ServiceGoodsUpdateWithPlansResp, error)
  713. ServiceGoodsUpdateWithPlansAndDetails(ctx context.Context, in *ServiceGoodsUpdateWithPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsUpdateWithPlansAndDetailsResp, error)
  714. ServiceGoodsDel(ctx context.Context, in *ServiceGoodsDelReq, opts ...grpc.CallOption) (*Empty, error)
  715. ServiceGoodsGet(ctx context.Context, in *ServiceGoodsGetReq, opts ...grpc.CallOption) (*ServiceGoodsGetResp, error)
  716. ServiceGoodsGetWithPlans(ctx context.Context, in *ServiceGoodsGetWithPlansReq, opts ...grpc.CallOption) (*ServiceGoodsGetWithPlansResp, error)
  717. ServiceGoodsGetWithPlansAndDetails(ctx context.Context, in *ServiceGoodsGetWithPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsGetWithPlansAndDetailsResp, error)
  718. ServiceGoodsList(ctx context.Context, in *ServiceGoodsListReq, opts ...grpc.CallOption) (*ServiceGoodsListResp, error)
  719. ServiceGoodsListWithPlans(ctx context.Context, in *ServiceGoodsListWithPlansReq, opts ...grpc.CallOption) (*ServiceGoodsListWithPlansResp, error)
  720. ServiceGoodsListWithPlansAndDetails(ctx context.Context, in *ServiceGoodsListWithPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsListWithPlansAndDetailsResp, error)
  721. // ServiceGoodsPlans Model
  722. ServiceGoodsPlansAdd(ctx context.Context, in *ServiceGoodsPlansAddReq, opts ...grpc.CallOption) (*ServiceGoodsPlansAddResp, error)
  723. ServiceGoodsPlansUpdate(ctx context.Context, in *ServiceGoodsPlansUpdateReq, opts ...grpc.CallOption) (*ServiceGoodsPlansUpdateResp, error)
  724. ServiceGoodsPlansDel(ctx context.Context, in *ServiceGoodsPlansDelReq, opts ...grpc.CallOption) (*Empty, error)
  725. ServiceGoodsPlansGet(ctx context.Context, in *ServiceGoodsPlansGetReq, opts ...grpc.CallOption) (*ServiceGoodsPlansGetResp, error)
  726. ServiceGoodsPlansList(ctx context.Context, in *ServiceGoodsPlansListReq, opts ...grpc.CallOption) (*ServiceGoodsPlansListResp, error)
  727. // ServiceGoodsChannel Model
  728. ServiceGoodsChannelAdd(ctx context.Context, in *ServiceGoodsChannelAddReq, opts ...grpc.CallOption) (*ServiceGoodsChannelAddResp, error)
  729. ServiceGoodsChannelUpdate(ctx context.Context, in *ServiceGoodsChannelUpdateReq, opts ...grpc.CallOption) (*ServiceGoodsChannelUpdateResp, error)
  730. ServiceGoodsChannelDel(ctx context.Context, in *ServiceGoodsChannelDelReq, opts ...grpc.CallOption) (*Empty, error)
  731. ServiceGoodsChannelGet(ctx context.Context, in *ServiceGoodsChannelGetReq, opts ...grpc.CallOption) (*ServiceGoodsChannelGetResp, error)
  732. ServiceGoodsChannelGetWithGoods(ctx context.Context, in *ServiceGoodsChannelGetWithGoodsReq, opts ...grpc.CallOption) (*ServiceGoodsChannelGetWithGoodsResp, error)
  733. ServiceGoodsChannelGetWithGoodsAndPlans(ctx context.Context, in *ServiceGoodsChannelGetWithGoodsAndPlansReq, opts ...grpc.CallOption) (*ServiceGoodsChannelGetWithGoodsAndPlansResp, error)
  734. ServiceGoodsChannelGetWithGoodsAndPlansAndDetails(ctx context.Context, in *ServiceGoodsChannelGetWithGoodsAndPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsChannelGetWithGoodsAndPlansAndDetailsResp, error)
  735. ServiceGoodsChannelList(ctx context.Context, in *ServiceGoodsChannelListReq, opts ...grpc.CallOption) (*ServiceGoodsChannelListResp, error)
  736. ServiceGoodsChannelListWithGoods(ctx context.Context, in *ServiceGoodsChannelListWithGoodsReq, opts ...grpc.CallOption) (*ServiceGoodsChannelListWithGoodsResp, error)
  737. ServiceGoodsChannelListWithGoodsAndPlans(ctx context.Context, in *ServiceGoodsChannelListWithGoodsAndPlansReq, opts ...grpc.CallOption) (*ServiceGoodsChannelListWithGoodsAndPlansResp, error)
  738. ServiceGoodsChannelListWithGoodsAndPlansAndDetails(ctx context.Context, in *ServiceGoodsChannelListWithGoodsAndPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsChannelListWithGoodsAndPlansAndDetailsResp, error)
  739. // MessagePush Model
  740. MessagePushAdd(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error)
  741. MessagePushUpdate(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error)
  742. MessagePushList(ctx context.Context, in *MessagePushListReq, opts ...grpc.CallOption) (*MessagePushListResp, error)
  743. }
  744. defaultGoPmpClient struct {
  745. cli zrpc.Client
  746. }
  747. )
  748. func NewGoPmpClient(cli zrpc.Client) GoPmpClient {
  749. return &defaultGoPmpClient{
  750. cli: cli,
  751. }
  752. }
  753. func (m *defaultGoPmpClient) Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) {
  754. client := pb.NewGoPmpClientClient(m.cli.Conn())
  755. return client.Ping(ctx, in, opts...)
  756. }
  757. // GlobalParamVo Model
  758. func (m *defaultGoPmpClient) GlobalParamAdd(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  759. client := pb.NewGoPmpClientClient(m.cli.Conn())
  760. return client.GlobalParamAdd(ctx, in, opts...)
  761. }
  762. func (m *defaultGoPmpClient) GlobalParamUpdate(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  763. client := pb.NewGoPmpClientClient(m.cli.Conn())
  764. return client.GlobalParamUpdate(ctx, in, opts...)
  765. }
  766. func (m *defaultGoPmpClient) GlobalParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  767. client := pb.NewGoPmpClientClient(m.cli.Conn())
  768. return client.GlobalParamDel(ctx, in, opts...)
  769. }
  770. func (m *defaultGoPmpClient) GlobalParamGet(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  771. client := pb.NewGoPmpClientClient(m.cli.Conn())
  772. return client.GlobalParamGet(ctx, in, opts...)
  773. }
  774. func (m *defaultGoPmpClient) GlobalParamGetWithLang(ctx context.Context, in *GlobalParamGetReq, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  775. client := pb.NewGoPmpClientClient(m.cli.Conn())
  776. return client.GlobalParamGetWithLang(ctx, in, opts...)
  777. }
  778. func (m *defaultGoPmpClient) GlobalParamList(ctx context.Context, in *GlobalParamListReq, opts ...grpc.CallOption) (*GlobalParamListResp, error) {
  779. client := pb.NewGoPmpClientClient(m.cli.Conn())
  780. return client.GlobalParamList(ctx, in, opts...)
  781. }
  782. // ProductVo Model
  783. func (m *defaultGoPmpClient) ProductAdd(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error) {
  784. client := pb.NewGoPmpClientClient(m.cli.Conn())
  785. return client.ProductAdd(ctx, in, opts...)
  786. }
  787. func (m *defaultGoPmpClient) ProductUpdate(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error) {
  788. client := pb.NewGoPmpClientClient(m.cli.Conn())
  789. return client.ProductUpdate(ctx, in, opts...)
  790. }
  791. func (m *defaultGoPmpClient) ProductDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  792. client := pb.NewGoPmpClientClient(m.cli.Conn())
  793. return client.ProductDel(ctx, in, opts...)
  794. }
  795. func (m *defaultGoPmpClient) ProductGet(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error) {
  796. client := pb.NewGoPmpClientClient(m.cli.Conn())
  797. return client.ProductGet(ctx, in, opts...)
  798. }
  799. func (m *defaultGoPmpClient) ProductList(ctx context.Context, in *ProductListReq, opts ...grpc.CallOption) (*ProductListResp, error) {
  800. client := pb.NewGoPmpClientClient(m.cli.Conn())
  801. return client.ProductList(ctx, in, opts...)
  802. }
  803. func (m *defaultGoPmpClient) ProductAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*ProductListResp, error) {
  804. client := pb.NewGoPmpClientClient(m.cli.Conn())
  805. return client.ProductAll(ctx, in, opts...)
  806. }
  807. // ProductParamVo Model
  808. func (m *defaultGoPmpClient) ProductParamAdd(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error) {
  809. client := pb.NewGoPmpClientClient(m.cli.Conn())
  810. return client.ProductParamAdd(ctx, in, opts...)
  811. }
  812. func (m *defaultGoPmpClient) ProductParamUpdate(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error) {
  813. client := pb.NewGoPmpClientClient(m.cli.Conn())
  814. return client.ProductParamUpdate(ctx, in, opts...)
  815. }
  816. func (m *defaultGoPmpClient) ProductParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  817. client := pb.NewGoPmpClientClient(m.cli.Conn())
  818. return client.ProductParamDel(ctx, in, opts...)
  819. }
  820. func (m *defaultGoPmpClient) ProductParamGet(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error) {
  821. client := pb.NewGoPmpClientClient(m.cli.Conn())
  822. return client.ProductParamGet(ctx, in, opts...)
  823. }
  824. func (m *defaultGoPmpClient) ProductParamGetWithLang(ctx context.Context, in *ProductParamGetReq, opts ...grpc.CallOption) (*ProductParamVo, error) {
  825. client := pb.NewGoPmpClientClient(m.cli.Conn())
  826. return client.ProductParamGetWithLang(ctx, in, opts...)
  827. }
  828. func (m *defaultGoPmpClient) ProductParamList(ctx context.Context, in *ProductParamListReq, opts ...grpc.CallOption) (*ProductParamListResp, error) {
  829. client := pb.NewGoPmpClientClient(m.cli.Conn())
  830. return client.ProductParamList(ctx, in, opts...)
  831. }
  832. // ProductAction 产品行为配置
  833. func (m *defaultGoPmpClient) ProductActionAdd(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error) {
  834. client := pb.NewGoPmpClientClient(m.cli.Conn())
  835. return client.ProductActionAdd(ctx, in, opts...)
  836. }
  837. func (m *defaultGoPmpClient) ProductActionUpdate(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error) {
  838. client := pb.NewGoPmpClientClient(m.cli.Conn())
  839. return client.ProductActionUpdate(ctx, in, opts...)
  840. }
  841. func (m *defaultGoPmpClient) ProductActionDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  842. client := pb.NewGoPmpClientClient(m.cli.Conn())
  843. return client.ProductActionDel(ctx, in, opts...)
  844. }
  845. func (m *defaultGoPmpClient) ProductActionGet(ctx context.Context, in *ProductActionReq, opts ...grpc.CallOption) (*ProductActionVo, error) {
  846. client := pb.NewGoPmpClientClient(m.cli.Conn())
  847. return client.ProductActionGet(ctx, in, opts...)
  848. }
  849. func (m *defaultGoPmpClient) ProductActionList(ctx context.Context, in *ProductActionListReq, opts ...grpc.CallOption) (*ProductActionListResp, error) {
  850. client := pb.NewGoPmpClientClient(m.cli.Conn())
  851. return client.ProductActionList(ctx, in, opts...)
  852. }
  853. // ProductActionGroup 产品行为分组
  854. func (m *defaultGoPmpClient) ProductActionGroupAdd(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error) {
  855. client := pb.NewGoPmpClientClient(m.cli.Conn())
  856. return client.ProductActionGroupAdd(ctx, in, opts...)
  857. }
  858. func (m *defaultGoPmpClient) ProductActionGroupUpdate(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error) {
  859. client := pb.NewGoPmpClientClient(m.cli.Conn())
  860. return client.ProductActionGroupUpdate(ctx, in, opts...)
  861. }
  862. func (m *defaultGoPmpClient) ProductActionGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  863. client := pb.NewGoPmpClientClient(m.cli.Conn())
  864. return client.ProductActionGroupDel(ctx, in, opts...)
  865. }
  866. func (m *defaultGoPmpClient) ProductActionGroupGet(ctx context.Context, in *ProductActionGroupReq, opts ...grpc.CallOption) (*ProductActionGroupVo, error) {
  867. client := pb.NewGoPmpClientClient(m.cli.Conn())
  868. return client.ProductActionGroupGet(ctx, in, opts...)
  869. }
  870. func (m *defaultGoPmpClient) ProductActionGroupList(ctx context.Context, in *ProductActionGroupListReq, opts ...grpc.CallOption) (*ProductActionGroupListResp, error) {
  871. client := pb.NewGoPmpClientClient(m.cli.Conn())
  872. return client.ProductActionGroupList(ctx, in, opts...)
  873. }
  874. func (m *defaultGoPmpClient) ProductActionGroupDisable(ctx context.Context, in *ProductActionGroupDisableReq, opts ...grpc.CallOption) (*Empty, error) {
  875. client := pb.NewGoPmpClientClient(m.cli.Conn())
  876. return client.ProductActionGroupDisable(ctx, in, opts...)
  877. }
  878. func (m *defaultGoPmpClient) ProductActionGroupEnable(ctx context.Context, in *ProductActionGroupEnableReq, opts ...grpc.CallOption) (*Empty, error) {
  879. client := pb.NewGoPmpClientClient(m.cli.Conn())
  880. return client.ProductActionGroupEnable(ctx, in, opts...)
  881. }
  882. // ProductActionPolicyGroup 产品行为策略分组
  883. func (m *defaultGoPmpClient) ProductActionPolicyGroupAdd(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error) {
  884. client := pb.NewGoPmpClientClient(m.cli.Conn())
  885. return client.ProductActionPolicyGroupAdd(ctx, in, opts...)
  886. }
  887. func (m *defaultGoPmpClient) ProductActionPolicyGroupUpdate(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error) {
  888. client := pb.NewGoPmpClientClient(m.cli.Conn())
  889. return client.ProductActionPolicyGroupUpdate(ctx, in, opts...)
  890. }
  891. func (m *defaultGoPmpClient) ProductActionPolicyGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  892. client := pb.NewGoPmpClientClient(m.cli.Conn())
  893. return client.ProductActionPolicyGroupDel(ctx, in, opts...)
  894. }
  895. func (m *defaultGoPmpClient) ProductActionPolicyGroupGet(ctx context.Context, in *ProductActionPolicyGroupReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error) {
  896. client := pb.NewGoPmpClientClient(m.cli.Conn())
  897. return client.ProductActionPolicyGroupGet(ctx, in, opts...)
  898. }
  899. func (m *defaultGoPmpClient) ProductActionPolicyGroupList(ctx context.Context, in *ProductActionPolicyGroupListReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupListResp, error) {
  900. client := pb.NewGoPmpClientClient(m.cli.Conn())
  901. return client.ProductActionPolicyGroupList(ctx, in, opts...)
  902. }
  903. func (m *defaultGoPmpClient) ProductActionPolicyGroupDisable(ctx context.Context, in *ProductActionPolicyGroupDisableReq, opts ...grpc.CallOption) (*Empty, error) {
  904. client := pb.NewGoPmpClientClient(m.cli.Conn())
  905. return client.ProductActionPolicyGroupDisable(ctx, in, opts...)
  906. }
  907. func (m *defaultGoPmpClient) ProductActionPolicyGroupEnable(ctx context.Context, in *ProductActionPolicyGroupEnableReq, opts ...grpc.CallOption) (*Empty, error) {
  908. client := pb.NewGoPmpClientClient(m.cli.Conn())
  909. return client.ProductActionPolicyGroupEnable(ctx, in, opts...)
  910. }
  911. // ProductActionType 产品行为类型
  912. func (m *defaultGoPmpClient) ProductActionTypeAdd(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error) {
  913. client := pb.NewGoPmpClientClient(m.cli.Conn())
  914. return client.ProductActionTypeAdd(ctx, in, opts...)
  915. }
  916. func (m *defaultGoPmpClient) ProductActionTypeUpdate(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error) {
  917. client := pb.NewGoPmpClientClient(m.cli.Conn())
  918. return client.ProductActionTypeUpdate(ctx, in, opts...)
  919. }
  920. func (m *defaultGoPmpClient) ProductActionTypeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  921. client := pb.NewGoPmpClientClient(m.cli.Conn())
  922. return client.ProductActionTypeDel(ctx, in, opts...)
  923. }
  924. func (m *defaultGoPmpClient) ProductActionTypeGet(ctx context.Context, in *ProductActionTypeReq, opts ...grpc.CallOption) (*ProductActionTypeVo, error) {
  925. client := pb.NewGoPmpClientClient(m.cli.Conn())
  926. return client.ProductActionTypeGet(ctx, in, opts...)
  927. }
  928. func (m *defaultGoPmpClient) ProductActionTypeList(ctx context.Context, in *ProductActionTypeListReq, opts ...grpc.CallOption) (*ProductActionTypeListResp, error) {
  929. client := pb.NewGoPmpClientClient(m.cli.Conn())
  930. return client.ProductActionTypeList(ctx, in, opts...)
  931. }
  932. // AreaParamVo Model
  933. func (m *defaultGoPmpClient) AreaParamAdd(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error) {
  934. client := pb.NewGoPmpClientClient(m.cli.Conn())
  935. return client.AreaParamAdd(ctx, in, opts...)
  936. }
  937. func (m *defaultGoPmpClient) AreaParamUpdate(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error) {
  938. client := pb.NewGoPmpClientClient(m.cli.Conn())
  939. return client.AreaParamUpdate(ctx, in, opts...)
  940. }
  941. func (m *defaultGoPmpClient) AreaParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  942. client := pb.NewGoPmpClientClient(m.cli.Conn())
  943. return client.AreaParamDel(ctx, in, opts...)
  944. }
  945. func (m *defaultGoPmpClient) AreaParamGet(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error) {
  946. client := pb.NewGoPmpClientClient(m.cli.Conn())
  947. return client.AreaParamGet(ctx, in, opts...)
  948. }
  949. func (m *defaultGoPmpClient) AreaParamList(ctx context.Context, in *AreaParamListReq, opts ...grpc.CallOption) (*AreaParamListResp, error) {
  950. client := pb.NewGoPmpClientClient(m.cli.Conn())
  951. return client.AreaParamList(ctx, in, opts...)
  952. }
  953. // NationalLanguage Model
  954. func (m *defaultGoPmpClient) NationalLanguageAdd(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error) {
  955. client := pb.NewGoPmpClientClient(m.cli.Conn())
  956. return client.NationalLanguageAdd(ctx, in, opts...)
  957. }
  958. func (m *defaultGoPmpClient) NationalLanguageUpdate(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error) {
  959. client := pb.NewGoPmpClientClient(m.cli.Conn())
  960. return client.NationalLanguageUpdate(ctx, in, opts...)
  961. }
  962. func (m *defaultGoPmpClient) NationalLanguageDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  963. client := pb.NewGoPmpClientClient(m.cli.Conn())
  964. return client.NationalLanguageDel(ctx, in, opts...)
  965. }
  966. func (m *defaultGoPmpClient) NationalLanguageGet(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error) {
  967. client := pb.NewGoPmpClientClient(m.cli.Conn())
  968. return client.NationalLanguageGet(ctx, in, opts...)
  969. }
  970. func (m *defaultGoPmpClient) NationalLanguageList(ctx context.Context, in *NationalLanguageListReq, opts ...grpc.CallOption) (*NationalLanguageListResp, error) {
  971. client := pb.NewGoPmpClientClient(m.cli.Conn())
  972. return client.NationalLanguageList(ctx, in, opts...)
  973. }
  974. // Tip Model
  975. func (m *defaultGoPmpClient) TipAdd(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error) {
  976. client := pb.NewGoPmpClientClient(m.cli.Conn())
  977. return client.TipAdd(ctx, in, opts...)
  978. }
  979. func (m *defaultGoPmpClient) TipUpdate(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error) {
  980. client := pb.NewGoPmpClientClient(m.cli.Conn())
  981. return client.TipUpdate(ctx, in, opts...)
  982. }
  983. func (m *defaultGoPmpClient) TipDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  984. client := pb.NewGoPmpClientClient(m.cli.Conn())
  985. return client.TipDel(ctx, in, opts...)
  986. }
  987. func (m *defaultGoPmpClient) TipGet(ctx context.Context, in *TipGetReq, opts ...grpc.CallOption) (*TipVo, error) {
  988. client := pb.NewGoPmpClientClient(m.cli.Conn())
  989. return client.TipGet(ctx, in, opts...)
  990. }
  991. func (m *defaultGoPmpClient) TipList(ctx context.Context, in *TipListReq, opts ...grpc.CallOption) (*TipListResp, error) {
  992. client := pb.NewGoPmpClientClient(m.cli.Conn())
  993. return client.TipList(ctx, in, opts...)
  994. }
  995. // Dict Model
  996. func (m *defaultGoPmpClient) DictAdd(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error) {
  997. client := pb.NewGoPmpClientClient(m.cli.Conn())
  998. return client.DictAdd(ctx, in, opts...)
  999. }
  1000. func (m *defaultGoPmpClient) DictUpdate(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error) {
  1001. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1002. return client.DictUpdate(ctx, in, opts...)
  1003. }
  1004. func (m *defaultGoPmpClient) DictDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1005. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1006. return client.DictDel(ctx, in, opts...)
  1007. }
  1008. func (m *defaultGoPmpClient) DictGet(ctx context.Context, in *DictGetReq, opts ...grpc.CallOption) (*DictVo, error) {
  1009. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1010. return client.DictGet(ctx, in, opts...)
  1011. }
  1012. func (m *defaultGoPmpClient) DictList(ctx context.Context, in *DictListReq, opts ...grpc.CallOption) (*DictListResp, error) {
  1013. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1014. return client.DictList(ctx, in, opts...)
  1015. }
  1016. // UpgradePkgPlan Model
  1017. func (m *defaultGoPmpClient) UpgradePkgPlanAdd(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error) {
  1018. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1019. return client.UpgradePkgPlanAdd(ctx, in, opts...)
  1020. }
  1021. func (m *defaultGoPmpClient) UpgradePkgPlanUpdate(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error) {
  1022. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1023. return client.UpgradePkgPlanUpdate(ctx, in, opts...)
  1024. }
  1025. func (m *defaultGoPmpClient) UpgradePkgPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1026. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1027. return client.UpgradePkgPlanDel(ctx, in, opts...)
  1028. }
  1029. func (m *defaultGoPmpClient) UpgradePkgPlanGet(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error) {
  1030. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1031. return client.UpgradePkgPlanGet(ctx, in, opts...)
  1032. }
  1033. func (m *defaultGoPmpClient) UpgradePkgPlanList(ctx context.Context, in *UpgradePkgPlanListReq, opts ...grpc.CallOption) (*UpgradePkgPlanListResp, error) {
  1034. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1035. return client.UpgradePkgPlanList(ctx, in, opts...)
  1036. }
  1037. // UpgradePkgPlanDetail Model
  1038. func (m *defaultGoPmpClient) UpgradePkgPlanDetailAdd(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error) {
  1039. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1040. return client.UpgradePkgPlanDetailAdd(ctx, in, opts...)
  1041. }
  1042. func (m *defaultGoPmpClient) UpgradePkgPlanDetailUpdate(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error) {
  1043. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1044. return client.UpgradePkgPlanDetailUpdate(ctx, in, opts...)
  1045. }
  1046. func (m *defaultGoPmpClient) UpgradePkgPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1047. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1048. return client.UpgradePkgPlanDetailDel(ctx, in, opts...)
  1049. }
  1050. func (m *defaultGoPmpClient) UpgradePkgPlanDetailGet(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error) {
  1051. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1052. return client.UpgradePkgPlanDetailGet(ctx, in, opts...)
  1053. }
  1054. func (m *defaultGoPmpClient) UpgradePkgPlanDetailList(ctx context.Context, in *UpgradePkgPlanDetailListReq, opts ...grpc.CallOption) (*UpgradePkgPlanDetailListResp, error) {
  1055. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1056. return client.UpgradePkgPlanDetailList(ctx, in, opts...)
  1057. }
  1058. // UpgradeResPlan Model
  1059. func (m *defaultGoPmpClient) UpgradeResPlanAdd(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error) {
  1060. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1061. return client.UpgradeResPlanAdd(ctx, in, opts...)
  1062. }
  1063. func (m *defaultGoPmpClient) UpgradeResPlanUpdate(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error) {
  1064. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1065. return client.UpgradeResPlanUpdate(ctx, in, opts...)
  1066. }
  1067. func (m *defaultGoPmpClient) UpgradeResPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1068. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1069. return client.UpgradeResPlanDel(ctx, in, opts...)
  1070. }
  1071. func (m *defaultGoPmpClient) UpgradeResPlanGet(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error) {
  1072. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1073. return client.UpgradeResPlanGet(ctx, in, opts...)
  1074. }
  1075. func (m *defaultGoPmpClient) UpgradeResPlanList(ctx context.Context, in *UpgradeResPlanListReq, opts ...grpc.CallOption) (*UpgradeResPlanListResp, error) {
  1076. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1077. return client.UpgradeResPlanList(ctx, in, opts...)
  1078. }
  1079. // UpgradeResPlanDetail Model
  1080. func (m *defaultGoPmpClient) UpgradeResPlanDetailAdd(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error) {
  1081. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1082. return client.UpgradeResPlanDetailAdd(ctx, in, opts...)
  1083. }
  1084. func (m *defaultGoPmpClient) UpgradeResPlanDetailUpdate(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error) {
  1085. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1086. return client.UpgradeResPlanDetailUpdate(ctx, in, opts...)
  1087. }
  1088. func (m *defaultGoPmpClient) UpgradeResPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1089. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1090. return client.UpgradeResPlanDetailDel(ctx, in, opts...)
  1091. }
  1092. func (m *defaultGoPmpClient) UpgradeResPlanDetailGet(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error) {
  1093. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1094. return client.UpgradeResPlanDetailGet(ctx, in, opts...)
  1095. }
  1096. func (m *defaultGoPmpClient) UpgradeResPlanDetailList(ctx context.Context, in *UpgradeResPlanDetailListReq, opts ...grpc.CallOption) (*UpgradeResPlanDetailListResp, error) {
  1097. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1098. return client.UpgradeResPlanDetailList(ctx, in, opts...)
  1099. }
  1100. // AdPlan Model
  1101. func (m *defaultGoPmpClient) AdPlanAdd(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error) {
  1102. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1103. return client.AdPlanAdd(ctx, in, opts...)
  1104. }
  1105. func (m *defaultGoPmpClient) AdPlanUpdate(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error) {
  1106. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1107. return client.AdPlanUpdate(ctx, in, opts...)
  1108. }
  1109. func (m *defaultGoPmpClient) AdPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1110. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1111. return client.AdPlanDel(ctx, in, opts...)
  1112. }
  1113. func (m *defaultGoPmpClient) AdPlanGet(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error) {
  1114. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1115. return client.AdPlanGet(ctx, in, opts...)
  1116. }
  1117. func (m *defaultGoPmpClient) AdPlanList(ctx context.Context, in *AdPlanListReq, opts ...grpc.CallOption) (*AdPlanListResp, error) {
  1118. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1119. return client.AdPlanList(ctx, in, opts...)
  1120. }
  1121. // AdPlanDetail Model
  1122. func (m *defaultGoPmpClient) AdPlanDetailAdd(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error) {
  1123. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1124. return client.AdPlanDetailAdd(ctx, in, opts...)
  1125. }
  1126. func (m *defaultGoPmpClient) AdPlanDetailUpdate(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error) {
  1127. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1128. return client.AdPlanDetailUpdate(ctx, in, opts...)
  1129. }
  1130. func (m *defaultGoPmpClient) AdPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1131. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1132. return client.AdPlanDetailDel(ctx, in, opts...)
  1133. }
  1134. func (m *defaultGoPmpClient) AdPlanDetailGet(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error) {
  1135. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1136. return client.AdPlanDetailGet(ctx, in, opts...)
  1137. }
  1138. func (m *defaultGoPmpClient) AdPlanDetailList(ctx context.Context, in *AdPlanDetailListReq, opts ...grpc.CallOption) (*AdPlanDetailListResp, error) {
  1139. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1140. return client.AdPlanDetailList(ctx, in, opts...)
  1141. }
  1142. // AdGlobalConfig Model
  1143. func (m *defaultGoPmpClient) AdGlobalConfigGet(ctx context.Context, in *AdGlobalConfigGetReq, opts ...grpc.CallOption) (*AdGlobalConfigVo, error) {
  1144. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1145. return client.AdGlobalConfigGet(ctx, in, opts...)
  1146. }
  1147. func (m *defaultGoPmpClient) AdGlobalConfigUpdate(ctx context.Context, in *AdGlobalConfigVo, opts ...grpc.CallOption) (*AdGlobalConfigVo, error) {
  1148. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1149. return client.AdGlobalConfigUpdate(ctx, in, opts...)
  1150. }
  1151. // JobBatch Model
  1152. func (m *defaultGoPmpClient) JobBatchAdd(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error) {
  1153. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1154. return client.JobBatchAdd(ctx, in, opts...)
  1155. }
  1156. func (m *defaultGoPmpClient) JobBatchAddWithTasks(ctx context.Context, in *JobBatchWithTasksVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error) {
  1157. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1158. return client.JobBatchAddWithTasks(ctx, in, opts...)
  1159. }
  1160. func (m *defaultGoPmpClient) JobBatchUpdate(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error) {
  1161. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1162. return client.JobBatchUpdate(ctx, in, opts...)
  1163. }
  1164. func (m *defaultGoPmpClient) JobBatchDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1165. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1166. return client.JobBatchDel(ctx, in, opts...)
  1167. }
  1168. func (m *defaultGoPmpClient) JobBatchGet(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error) {
  1169. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1170. return client.JobBatchGet(ctx, in, opts...)
  1171. }
  1172. func (m *defaultGoPmpClient) JobBatchGetWithTasks(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error) {
  1173. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1174. return client.JobBatchGetWithTasks(ctx, in, opts...)
  1175. }
  1176. func (m *defaultGoPmpClient) JobBatchList(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListResp, error) {
  1177. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1178. return client.JobBatchList(ctx, in, opts...)
  1179. }
  1180. func (m *defaultGoPmpClient) JobBatchListWithTasks(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListWithTasksResp, error) {
  1181. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1182. return client.JobBatchListWithTasks(ctx, in, opts...)
  1183. }
  1184. // JobTasks Model
  1185. func (m *defaultGoPmpClient) JobTasksAdd(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error) {
  1186. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1187. return client.JobTasksAdd(ctx, in, opts...)
  1188. }
  1189. func (m *defaultGoPmpClient) JobTasksUpdate(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error) {
  1190. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1191. return client.JobTasksUpdate(ctx, in, opts...)
  1192. }
  1193. func (m *defaultGoPmpClient) JobTasksDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1194. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1195. return client.JobTasksDel(ctx, in, opts...)
  1196. }
  1197. func (m *defaultGoPmpClient) JobTasksGet(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error) {
  1198. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1199. return client.JobTasksGet(ctx, in, opts...)
  1200. }
  1201. func (m *defaultGoPmpClient) JobTasksList(ctx context.Context, in *JobTasksListReq, opts ...grpc.CallOption) (*JobTasksListResp, error) {
  1202. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1203. return client.JobTasksList(ctx, in, opts...)
  1204. }
  1205. // DeployConfig Model
  1206. func (m *defaultGoPmpClient) DeployConfigAdd(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error) {
  1207. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1208. return client.DeployConfigAdd(ctx, in, opts...)
  1209. }
  1210. func (m *defaultGoPmpClient) DeployConfigUpdate(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error) {
  1211. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1212. return client.DeployConfigUpdate(ctx, in, opts...)
  1213. }
  1214. func (m *defaultGoPmpClient) DeployConfigDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1215. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1216. return client.DeployConfigDel(ctx, in, opts...)
  1217. }
  1218. func (m *defaultGoPmpClient) DeployConfigGet(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error) {
  1219. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1220. return client.DeployConfigGet(ctx, in, opts...)
  1221. }
  1222. func (m *defaultGoPmpClient) DeployConfigList(ctx context.Context, in *DeployConfigListReq, opts ...grpc.CallOption) (*DeployConfigListResp, error) {
  1223. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1224. return client.DeployConfigList(ctx, in, opts...)
  1225. }
  1226. // OperationLog Model
  1227. func (m *defaultGoPmpClient) OperationLogAdd(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error) {
  1228. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1229. return client.OperationLogAdd(ctx, in, opts...)
  1230. }
  1231. func (m *defaultGoPmpClient) OperationLogUpdate(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error) {
  1232. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1233. return client.OperationLogUpdate(ctx, in, opts...)
  1234. }
  1235. func (m *defaultGoPmpClient) OperationLogGet(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error) {
  1236. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1237. return client.OperationLogGet(ctx, in, opts...)
  1238. }
  1239. func (m *defaultGoPmpClient) OperationLogList(ctx context.Context, in *OperationLogListReq, opts ...grpc.CallOption) (*OperationLogListResp, error) {
  1240. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1241. return client.OperationLogList(ctx, in, opts...)
  1242. }
  1243. // AnnouncePlan Model
  1244. func (m *defaultGoPmpClient) AnnouncePlanAdd(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error) {
  1245. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1246. return client.AnnouncePlanAdd(ctx, in, opts...)
  1247. }
  1248. func (m *defaultGoPmpClient) AnnouncePlanUpdate(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error) {
  1249. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1250. return client.AnnouncePlanUpdate(ctx, in, opts...)
  1251. }
  1252. func (m *defaultGoPmpClient) AnnouncePlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1253. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1254. return client.AnnouncePlanDel(ctx, in, opts...)
  1255. }
  1256. func (m *defaultGoPmpClient) AnnouncePlanGet(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error) {
  1257. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1258. return client.AnnouncePlanGet(ctx, in, opts...)
  1259. }
  1260. func (m *defaultGoPmpClient) AnnouncePlanList(ctx context.Context, in *AnnouncePlanListReq, opts ...grpc.CallOption) (*AnnouncePlanListResp, error) {
  1261. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1262. return client.AnnouncePlanList(ctx, in, opts...)
  1263. }
  1264. // AnnouncePlanDetail Model
  1265. func (m *defaultGoPmpClient) AnnouncePlanDetailAdd(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error) {
  1266. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1267. return client.AnnouncePlanDetailAdd(ctx, in, opts...)
  1268. }
  1269. func (m *defaultGoPmpClient) AnnouncePlanDetailUpdate(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error) {
  1270. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1271. return client.AnnouncePlanDetailUpdate(ctx, in, opts...)
  1272. }
  1273. func (m *defaultGoPmpClient) AnnouncePlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1274. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1275. return client.AnnouncePlanDetailDel(ctx, in, opts...)
  1276. }
  1277. func (m *defaultGoPmpClient) AnnouncePlanDetailGet(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error) {
  1278. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1279. return client.AnnouncePlanDetailGet(ctx, in, opts...)
  1280. }
  1281. func (m *defaultGoPmpClient) AnnouncePlanDetailList(ctx context.Context, in *AnnouncePlanDetailListReq, opts ...grpc.CallOption) (*AnnouncePlanDetailListResp, error) {
  1282. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1283. return client.AnnouncePlanDetailList(ctx, in, opts...)
  1284. }
  1285. // ServiceTypes Model
  1286. func (m *defaultGoPmpClient) ServiceTypesAdd(ctx context.Context, in *ServiceTypesAddReq, opts ...grpc.CallOption) (*ServiceTypesAddResp, error) {
  1287. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1288. return client.ServiceTypesAdd(ctx, in, opts...)
  1289. }
  1290. func (m *defaultGoPmpClient) ServiceTypesUpdate(ctx context.Context, in *ServiceTypesUpdateReq, opts ...grpc.CallOption) (*ServiceTypesUpdateResp, error) {
  1291. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1292. return client.ServiceTypesUpdate(ctx, in, opts...)
  1293. }
  1294. func (m *defaultGoPmpClient) ServiceTypesDel(ctx context.Context, in *ServiceTypesDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1295. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1296. return client.ServiceTypesDel(ctx, in, opts...)
  1297. }
  1298. func (m *defaultGoPmpClient) ServiceTypesGet(ctx context.Context, in *ServiceTypesGetReq, opts ...grpc.CallOption) (*ServiceTypesGetResp, error) {
  1299. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1300. return client.ServiceTypesGet(ctx, in, opts...)
  1301. }
  1302. func (m *defaultGoPmpClient) ServiceTypesGetWithValue(ctx context.Context, in *ServiceTypesGetWithValueReq, opts ...grpc.CallOption) (*ServiceTypesGetWithValueResp, error) {
  1303. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1304. return client.ServiceTypesGetWithValue(ctx, in, opts...)
  1305. }
  1306. func (m *defaultGoPmpClient) ServiceTypesList(ctx context.Context, in *ServiceTypesListReq, opts ...grpc.CallOption) (*ServiceTypesListResp, error) {
  1307. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1308. return client.ServiceTypesList(ctx, in, opts...)
  1309. }
  1310. func (m *defaultGoPmpClient) ServiceTypesListWithValue(ctx context.Context, in *ServiceTypesListWithValueReq, opts ...grpc.CallOption) (*ServiceTypesListWithValueResp, error) {
  1311. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1312. return client.ServiceTypesListWithValue(ctx, in, opts...)
  1313. }
  1314. // ServicePlan Model
  1315. func (m *defaultGoPmpClient) ServicePlanAdd(ctx context.Context, in *ServicePlanAddReq, opts ...grpc.CallOption) (*ServicePlanAddResp, error) {
  1316. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1317. return client.ServicePlanAdd(ctx, in, opts...)
  1318. }
  1319. func (m *defaultGoPmpClient) ServicePlanAddWithDetails(ctx context.Context, in *ServicePlanAddWithDetailsReq, opts ...grpc.CallOption) (*ServicePlanAddWithDetailsResp, error) {
  1320. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1321. return client.ServicePlanAddWithDetails(ctx, in, opts...)
  1322. }
  1323. func (m *defaultGoPmpClient) ServicePlanUpdate(ctx context.Context, in *ServicePlanUpdateReq, opts ...grpc.CallOption) (*ServicePlanUpdateResp, error) {
  1324. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1325. return client.ServicePlanUpdate(ctx, in, opts...)
  1326. }
  1327. func (m *defaultGoPmpClient) ServicePlanUpdateWithDetails(ctx context.Context, in *ServicePlanUpdateWithDetailsReq, opts ...grpc.CallOption) (*ServicePlanUpdateWithDetailsResp, error) {
  1328. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1329. return client.ServicePlanUpdateWithDetails(ctx, in, opts...)
  1330. }
  1331. func (m *defaultGoPmpClient) ServicePlanDel(ctx context.Context, in *ServicePlanDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1332. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1333. return client.ServicePlanDel(ctx, in, opts...)
  1334. }
  1335. func (m *defaultGoPmpClient) ServicePlanGet(ctx context.Context, in *ServicePlanGetReq, opts ...grpc.CallOption) (*ServicePlanGetResp, error) {
  1336. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1337. return client.ServicePlanGet(ctx, in, opts...)
  1338. }
  1339. func (m *defaultGoPmpClient) ServicePlanGetWithDetails(ctx context.Context, in *ServicePlanGetWithDetailsReq, opts ...grpc.CallOption) (*ServicePlanGetWithDetailsResp, error) {
  1340. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1341. return client.ServicePlanGetWithDetails(ctx, in, opts...)
  1342. }
  1343. func (m *defaultGoPmpClient) ServicePlanList(ctx context.Context, in *ServicePlanListReq, opts ...grpc.CallOption) (*ServicePlanListResp, error) {
  1344. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1345. return client.ServicePlanList(ctx, in, opts...)
  1346. }
  1347. func (m *defaultGoPmpClient) ServicePlanListWithDetails(ctx context.Context, in *ServicePlanListWithDetailsReq, opts ...grpc.CallOption) (*ServicePlanListWithDetailsResp, error) {
  1348. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1349. return client.ServicePlanListWithDetails(ctx, in, opts...)
  1350. }
  1351. // ServicePlanTypes Model
  1352. func (m *defaultGoPmpClient) ServicePlanTypesAdd(ctx context.Context, in *ServicePlanTypesAddReq, opts ...grpc.CallOption) (*ServicePlanTypesAddResp, error) {
  1353. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1354. return client.ServicePlanTypesAdd(ctx, in, opts...)
  1355. }
  1356. func (m *defaultGoPmpClient) ServicePlanTypesUpdate(ctx context.Context, in *ServicePlanTypesUpdateReq, opts ...grpc.CallOption) (*ServicePlanTypesUpdateResp, error) {
  1357. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1358. return client.ServicePlanTypesUpdate(ctx, in, opts...)
  1359. }
  1360. func (m *defaultGoPmpClient) ServicePlanTypesDel(ctx context.Context, in *ServicePlanTypesDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1361. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1362. return client.ServicePlanTypesDel(ctx, in, opts...)
  1363. }
  1364. func (m *defaultGoPmpClient) ServicePlanTypesGet(ctx context.Context, in *ServicePlanTypesGetReq, opts ...grpc.CallOption) (*ServicePlanTypesGetResp, error) {
  1365. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1366. return client.ServicePlanTypesGet(ctx, in, opts...)
  1367. }
  1368. func (m *defaultGoPmpClient) ServicePlanTypesList(ctx context.Context, in *ServicePlanTypesListReq, opts ...grpc.CallOption) (*ServicePlanTypesListResp, error) {
  1369. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1370. return client.ServicePlanTypesList(ctx, in, opts...)
  1371. }
  1372. // ServiceGoods Model
  1373. func (m *defaultGoPmpClient) ServiceGoodsAdd(ctx context.Context, in *ServiceGoodsAddReq, opts ...grpc.CallOption) (*ServiceGoodsAddResp, error) {
  1374. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1375. return client.ServiceGoodsAdd(ctx, in, opts...)
  1376. }
  1377. func (m *defaultGoPmpClient) ServiceGoodsAddWithPlans(ctx context.Context, in *ServiceGoodsAddWithPlansReq, opts ...grpc.CallOption) (*ServiceGoodsAddWithPlansResp, error) {
  1378. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1379. return client.ServiceGoodsAddWithPlans(ctx, in, opts...)
  1380. }
  1381. func (m *defaultGoPmpClient) ServiceGoodsAddWithPlansAndDetails(ctx context.Context, in *ServiceGoodsAddWithPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsAddWithPlansAndDetailsResp, error) {
  1382. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1383. return client.ServiceGoodsAddWithPlansAndDetails(ctx, in, opts...)
  1384. }
  1385. func (m *defaultGoPmpClient) ServiceGoodsUpdate(ctx context.Context, in *ServiceGoodsUpdateReq, opts ...grpc.CallOption) (*ServiceGoodsUpdateResp, error) {
  1386. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1387. return client.ServiceGoodsUpdate(ctx, in, opts...)
  1388. }
  1389. func (m *defaultGoPmpClient) ServiceGoodsUpdateWithPlans(ctx context.Context, in *ServiceGoodsUpdateWithPlansReq, opts ...grpc.CallOption) (*ServiceGoodsUpdateWithPlansResp, error) {
  1390. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1391. return client.ServiceGoodsUpdateWithPlans(ctx, in, opts...)
  1392. }
  1393. func (m *defaultGoPmpClient) ServiceGoodsUpdateWithPlansAndDetails(ctx context.Context, in *ServiceGoodsUpdateWithPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsUpdateWithPlansAndDetailsResp, error) {
  1394. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1395. return client.ServiceGoodsUpdateWithPlansAndDetails(ctx, in, opts...)
  1396. }
  1397. func (m *defaultGoPmpClient) ServiceGoodsDel(ctx context.Context, in *ServiceGoodsDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1398. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1399. return client.ServiceGoodsDel(ctx, in, opts...)
  1400. }
  1401. func (m *defaultGoPmpClient) ServiceGoodsGet(ctx context.Context, in *ServiceGoodsGetReq, opts ...grpc.CallOption) (*ServiceGoodsGetResp, error) {
  1402. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1403. return client.ServiceGoodsGet(ctx, in, opts...)
  1404. }
  1405. func (m *defaultGoPmpClient) ServiceGoodsGetWithPlans(ctx context.Context, in *ServiceGoodsGetWithPlansReq, opts ...grpc.CallOption) (*ServiceGoodsGetWithPlansResp, error) {
  1406. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1407. return client.ServiceGoodsGetWithPlans(ctx, in, opts...)
  1408. }
  1409. func (m *defaultGoPmpClient) ServiceGoodsGetWithPlansAndDetails(ctx context.Context, in *ServiceGoodsGetWithPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsGetWithPlansAndDetailsResp, error) {
  1410. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1411. return client.ServiceGoodsGetWithPlansAndDetails(ctx, in, opts...)
  1412. }
  1413. func (m *defaultGoPmpClient) ServiceGoodsList(ctx context.Context, in *ServiceGoodsListReq, opts ...grpc.CallOption) (*ServiceGoodsListResp, error) {
  1414. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1415. return client.ServiceGoodsList(ctx, in, opts...)
  1416. }
  1417. func (m *defaultGoPmpClient) ServiceGoodsListWithPlans(ctx context.Context, in *ServiceGoodsListWithPlansReq, opts ...grpc.CallOption) (*ServiceGoodsListWithPlansResp, error) {
  1418. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1419. return client.ServiceGoodsListWithPlans(ctx, in, opts...)
  1420. }
  1421. func (m *defaultGoPmpClient) ServiceGoodsListWithPlansAndDetails(ctx context.Context, in *ServiceGoodsListWithPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsListWithPlansAndDetailsResp, error) {
  1422. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1423. return client.ServiceGoodsListWithPlansAndDetails(ctx, in, opts...)
  1424. }
  1425. // ServiceGoodsPlans Model
  1426. func (m *defaultGoPmpClient) ServiceGoodsPlansAdd(ctx context.Context, in *ServiceGoodsPlansAddReq, opts ...grpc.CallOption) (*ServiceGoodsPlansAddResp, error) {
  1427. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1428. return client.ServiceGoodsPlansAdd(ctx, in, opts...)
  1429. }
  1430. func (m *defaultGoPmpClient) ServiceGoodsPlansUpdate(ctx context.Context, in *ServiceGoodsPlansUpdateReq, opts ...grpc.CallOption) (*ServiceGoodsPlansUpdateResp, error) {
  1431. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1432. return client.ServiceGoodsPlansUpdate(ctx, in, opts...)
  1433. }
  1434. func (m *defaultGoPmpClient) ServiceGoodsPlansDel(ctx context.Context, in *ServiceGoodsPlansDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1435. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1436. return client.ServiceGoodsPlansDel(ctx, in, opts...)
  1437. }
  1438. func (m *defaultGoPmpClient) ServiceGoodsPlansGet(ctx context.Context, in *ServiceGoodsPlansGetReq, opts ...grpc.CallOption) (*ServiceGoodsPlansGetResp, error) {
  1439. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1440. return client.ServiceGoodsPlansGet(ctx, in, opts...)
  1441. }
  1442. func (m *defaultGoPmpClient) ServiceGoodsPlansList(ctx context.Context, in *ServiceGoodsPlansListReq, opts ...grpc.CallOption) (*ServiceGoodsPlansListResp, error) {
  1443. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1444. return client.ServiceGoodsPlansList(ctx, in, opts...)
  1445. }
  1446. // ServiceGoodsChannel Model
  1447. func (m *defaultGoPmpClient) ServiceGoodsChannelAdd(ctx context.Context, in *ServiceGoodsChannelAddReq, opts ...grpc.CallOption) (*ServiceGoodsChannelAddResp, error) {
  1448. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1449. return client.ServiceGoodsChannelAdd(ctx, in, opts...)
  1450. }
  1451. func (m *defaultGoPmpClient) ServiceGoodsChannelUpdate(ctx context.Context, in *ServiceGoodsChannelUpdateReq, opts ...grpc.CallOption) (*ServiceGoodsChannelUpdateResp, error) {
  1452. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1453. return client.ServiceGoodsChannelUpdate(ctx, in, opts...)
  1454. }
  1455. func (m *defaultGoPmpClient) ServiceGoodsChannelDel(ctx context.Context, in *ServiceGoodsChannelDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1456. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1457. return client.ServiceGoodsChannelDel(ctx, in, opts...)
  1458. }
  1459. func (m *defaultGoPmpClient) ServiceGoodsChannelGet(ctx context.Context, in *ServiceGoodsChannelGetReq, opts ...grpc.CallOption) (*ServiceGoodsChannelGetResp, error) {
  1460. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1461. return client.ServiceGoodsChannelGet(ctx, in, opts...)
  1462. }
  1463. func (m *defaultGoPmpClient) ServiceGoodsChannelGetWithGoods(ctx context.Context, in *ServiceGoodsChannelGetWithGoodsReq, opts ...grpc.CallOption) (*ServiceGoodsChannelGetWithGoodsResp, error) {
  1464. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1465. return client.ServiceGoodsChannelGetWithGoods(ctx, in, opts...)
  1466. }
  1467. func (m *defaultGoPmpClient) ServiceGoodsChannelGetWithGoodsAndPlans(ctx context.Context, in *ServiceGoodsChannelGetWithGoodsAndPlansReq, opts ...grpc.CallOption) (*ServiceGoodsChannelGetWithGoodsAndPlansResp, error) {
  1468. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1469. return client.ServiceGoodsChannelGetWithGoodsAndPlans(ctx, in, opts...)
  1470. }
  1471. func (m *defaultGoPmpClient) ServiceGoodsChannelGetWithGoodsAndPlansAndDetails(ctx context.Context, in *ServiceGoodsChannelGetWithGoodsAndPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsChannelGetWithGoodsAndPlansAndDetailsResp, error) {
  1472. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1473. return client.ServiceGoodsChannelGetWithGoodsAndPlansAndDetails(ctx, in, opts...)
  1474. }
  1475. func (m *defaultGoPmpClient) ServiceGoodsChannelList(ctx context.Context, in *ServiceGoodsChannelListReq, opts ...grpc.CallOption) (*ServiceGoodsChannelListResp, error) {
  1476. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1477. return client.ServiceGoodsChannelList(ctx, in, opts...)
  1478. }
  1479. func (m *defaultGoPmpClient) ServiceGoodsChannelListWithGoods(ctx context.Context, in *ServiceGoodsChannelListWithGoodsReq, opts ...grpc.CallOption) (*ServiceGoodsChannelListWithGoodsResp, error) {
  1480. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1481. return client.ServiceGoodsChannelListWithGoods(ctx, in, opts...)
  1482. }
  1483. func (m *defaultGoPmpClient) ServiceGoodsChannelListWithGoodsAndPlans(ctx context.Context, in *ServiceGoodsChannelListWithGoodsAndPlansReq, opts ...grpc.CallOption) (*ServiceGoodsChannelListWithGoodsAndPlansResp, error) {
  1484. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1485. return client.ServiceGoodsChannelListWithGoodsAndPlans(ctx, in, opts...)
  1486. }
  1487. func (m *defaultGoPmpClient) ServiceGoodsChannelListWithGoodsAndPlansAndDetails(ctx context.Context, in *ServiceGoodsChannelListWithGoodsAndPlansAndDetailsReq, opts ...grpc.CallOption) (*ServiceGoodsChannelListWithGoodsAndPlansAndDetailsResp, error) {
  1488. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1489. return client.ServiceGoodsChannelListWithGoodsAndPlansAndDetails(ctx, in, opts...)
  1490. }
  1491. // MessagePush Model
  1492. func (m *defaultGoPmpClient) MessagePushAdd(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error) {
  1493. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1494. return client.MessagePushAdd(ctx, in, opts...)
  1495. }
  1496. func (m *defaultGoPmpClient) MessagePushUpdate(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error) {
  1497. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1498. return client.MessagePushUpdate(ctx, in, opts...)
  1499. }
  1500. func (m *defaultGoPmpClient) MessagePushList(ctx context.Context, in *MessagePushListReq, opts ...grpc.CallOption) (*MessagePushListResp, error) {
  1501. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1502. return client.MessagePushList(ctx, in, opts...)
  1503. }