go_pmp_client.go 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329
  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. DeviceAddFirebaseTokenReq = pb.DeviceAddFirebaseTokenReq
  43. DeviceFirebaseTokenMapReq = pb.DeviceFirebaseTokenMapReq
  44. DeviceFirebaseTokenMapRes = pb.DeviceFirebaseTokenMapRes
  45. DeviceListReq = pb.DeviceListReq
  46. DeviceListRes = pb.DeviceListRes
  47. DeviceUpdateFirebaseTokenReq = pb.DeviceUpdateFirebaseTokenReq
  48. DeviceVo = pb.DeviceVo
  49. DictGetReq = pb.DictGetReq
  50. DictListReq = pb.DictListReq
  51. DictListResp = pb.DictListResp
  52. DictVo = pb.DictVo
  53. Empty = pb.Empty
  54. FindSchedulePublishListReq = pb.FindSchedulePublishListReq
  55. FindSchedulePublishListResp = pb.FindSchedulePublishListResp
  56. GameCategoryListReq = pb.GameCategoryListReq
  57. GameCategoryListRes = pb.GameCategoryListRes
  58. GameCategoryReq = pb.GameCategoryReq
  59. GameCategoryVo = pb.GameCategoryVo
  60. GameCustomerAddResp = pb.GameCustomerAddResp
  61. GameCustomerListReq = pb.GameCustomerListReq
  62. GameCustomerListRes = pb.GameCustomerListRes
  63. GameCustomerVo = pb.GameCustomerVo
  64. GameListReq = pb.GameListReq
  65. GameListRes = pb.GameListRes
  66. GameRankOption = pb.GameRankOption
  67. GameRedisHScanByNameReq = pb.GameRedisHScanByNameReq
  68. GameRedisHScanByNameResp = pb.GameRedisHScanByNameResp
  69. GameReq = pb.GameReq
  70. GameVo = pb.GameVo
  71. GlobalParamGetReq = pb.GlobalParamGetReq
  72. GlobalParamListReq = pb.GlobalParamListReq
  73. GlobalParamListResp = pb.GlobalParamListResp
  74. GlobalParamVo = pb.GlobalParamVo
  75. I18NVo = pb.I18NVo
  76. Ids = pb.Ids
  77. Int64SelectController = pb.Int64SelectController
  78. IntSelectController = pb.IntSelectController
  79. JobBatchListReq = pb.JobBatchListReq
  80. JobBatchListResp = pb.JobBatchListResp
  81. JobBatchListWithTasksResp = pb.JobBatchListWithTasksResp
  82. JobBatchVo = pb.JobBatchVo
  83. JobBatchWithTasksVo = pb.JobBatchWithTasksVo
  84. JobTasksListReq = pb.JobTasksListReq
  85. JobTasksListResp = pb.JobTasksListResp
  86. JobTasksVo = pb.JobTasksVo
  87. MessagePushListReq = pb.MessagePushListReq
  88. MessagePushListResp = pb.MessagePushListResp
  89. MessagePushVo = pb.MessagePushVo
  90. NationalLanguageListReq = pb.NationalLanguageListReq
  91. NationalLanguageListResp = pb.NationalLanguageListResp
  92. NationalLanguageVo = pb.NationalLanguageVo
  93. OperationLogListReq = pb.OperationLogListReq
  94. OperationLogListResp = pb.OperationLogListResp
  95. OperationLogVo = pb.OperationLogVo
  96. Page = pb.Page
  97. Page_OrderItem = pb.Page_OrderItem
  98. ProductActionGroupDisableReq = pb.ProductActionGroupDisableReq
  99. ProductActionGroupEnableReq = pb.ProductActionGroupEnableReq
  100. ProductActionGroupListReq = pb.ProductActionGroupListReq
  101. ProductActionGroupListResp = pb.ProductActionGroupListResp
  102. ProductActionGroupReq = pb.ProductActionGroupReq
  103. ProductActionGroupVo = pb.ProductActionGroupVo
  104. ProductActionListReq = pb.ProductActionListReq
  105. ProductActionListResp = pb.ProductActionListResp
  106. ProductActionPolicyGroupDisableReq = pb.ProductActionPolicyGroupDisableReq
  107. ProductActionPolicyGroupEnableReq = pb.ProductActionPolicyGroupEnableReq
  108. ProductActionPolicyGroupListReq = pb.ProductActionPolicyGroupListReq
  109. ProductActionPolicyGroupListResp = pb.ProductActionPolicyGroupListResp
  110. ProductActionPolicyGroupReq = pb.ProductActionPolicyGroupReq
  111. ProductActionPolicyGroupVo = pb.ProductActionPolicyGroupVo
  112. ProductActionReq = pb.ProductActionReq
  113. ProductActionTypeListReq = pb.ProductActionTypeListReq
  114. ProductActionTypeListResp = pb.ProductActionTypeListResp
  115. ProductActionTypeReq = pb.ProductActionTypeReq
  116. ProductActionTypeVo = pb.ProductActionTypeVo
  117. ProductActionVo = pb.ProductActionVo
  118. ProductListReq = pb.ProductListReq
  119. ProductListResp = pb.ProductListResp
  120. ProductParamGetReq = pb.ProductParamGetReq
  121. ProductParamListReq = pb.ProductParamListReq
  122. ProductParamListResp = pb.ProductParamListResp
  123. ProductParamVo = pb.ProductParamVo
  124. ProductVo = pb.ProductVo
  125. PublishScheduleDramaReq = pb.PublishScheduleDramaReq
  126. RelGameRankListReq = pb.RelGameRankListReq
  127. RelGameRankListRes = pb.RelGameRankListRes
  128. RelGameRankReq = pb.RelGameRankReq
  129. RelGameRankVo = pb.RelGameRankVo
  130. RelGameVpnGroupListReq = pb.RelGameVpnGroupListReq
  131. RelGameVpnGroupListRes = pb.RelGameVpnGroupListRes
  132. RelGameVpnGroupReq = pb.RelGameVpnGroupReq
  133. RelGameVpnGroupVo = pb.RelGameVpnGroupVo
  134. Request = pb.Request
  135. Response = pb.Response
  136. ServiceSetsAddReq = pb.ServiceSetsAddReq
  137. ServiceSetsDelReq = pb.ServiceSetsDelReq
  138. ServiceSetsGetReq = pb.ServiceSetsGetReq
  139. ServiceSetsListReq = pb.ServiceSetsListReq
  140. ServiceSetsListResp = pb.ServiceSetsListResp
  141. ServiceSetsUpdateReq = pb.ServiceSetsUpdateReq
  142. ServiceSetsVo = pb.ServiceSetsVo
  143. ServiceTypesAddReq = pb.ServiceTypesAddReq
  144. ServiceTypesDelReq = pb.ServiceTypesDelReq
  145. ServiceTypesGetReq = pb.ServiceTypesGetReq
  146. ServiceTypesListReq = pb.ServiceTypesListReq
  147. ServiceTypesListResp = pb.ServiceTypesListResp
  148. ServiceTypesUpdateReq = pb.ServiceTypesUpdateReq
  149. ServiceTypesVo = pb.ServiceTypesVo
  150. SetTotalStatsReq = pb.SetTotalStatsReq
  151. ShortDramaCheckNameReq = pb.ShortDramaCheckNameReq
  152. ShortDramaCheckNameResp = pb.ShortDramaCheckNameResp
  153. ShortDramaCopyrightInfoVo = pb.ShortDramaCopyrightInfoVo
  154. ShortDramaEpisodeBatchAddReq = pb.ShortDramaEpisodeBatchAddReq
  155. ShortDramaEpisodeBatchRefreshUpdateTimeReq = pb.ShortDramaEpisodeBatchRefreshUpdateTimeReq
  156. ShortDramaEpisodeCountReq = pb.ShortDramaEpisodeCountReq
  157. ShortDramaEpisodeCountResp = pb.ShortDramaEpisodeCountResp
  158. ShortDramaEpisodeCountVo = pb.ShortDramaEpisodeCountVo
  159. ShortDramaEpisodeGetReq = pb.ShortDramaEpisodeGetReq
  160. ShortDramaEpisodeListReq = pb.ShortDramaEpisodeListReq
  161. ShortDramaEpisodeListResp = pb.ShortDramaEpisodeListResp
  162. ShortDramaEpisodeVo = pb.ShortDramaEpisodeVo
  163. ShortDramaFindIdsWithCopyrightResp = pb.ShortDramaFindIdsWithCopyrightResp
  164. ShortDramaGetReq = pb.ShortDramaGetReq
  165. ShortDramaLanguageListReq = pb.ShortDramaLanguageListReq
  166. ShortDramaLanguageListResp = pb.ShortDramaLanguageListResp
  167. ShortDramaLanguageVo = pb.ShortDramaLanguageVo
  168. ShortDramaListReq = pb.ShortDramaListReq
  169. ShortDramaListResp = pb.ShortDramaListResp
  170. ShortDramaStatsPlaysTotalListReq = pb.ShortDramaStatsPlaysTotalListReq
  171. ShortDramaStatsPlaysTotalListResp = pb.ShortDramaStatsPlaysTotalListResp
  172. ShortDramaStatsPlaysTotalVo = pb.ShortDramaStatsPlaysTotalVo
  173. ShortDramaUpdateModifierReq = pb.ShortDramaUpdateModifierReq
  174. ShortDramaUpdateReleaseRegionsReq = pb.ShortDramaUpdateReleaseRegionsReq
  175. ShortDramaVo = pb.ShortDramaVo
  176. StringSelectController = pb.StringSelectController
  177. SysPermGetReq = pb.SysPermGetReq
  178. SysPermListReq = pb.SysPermListReq
  179. SysPermListResp = pb.SysPermListResp
  180. SysPermRule = pb.SysPermRule
  181. SysPermVo = pb.SysPermVo
  182. SysRoleGetReq = pb.SysRoleGetReq
  183. SysRoleListReq = pb.SysRoleListReq
  184. SysRoleListResp = pb.SysRoleListResp
  185. SysRoleListWithPermsResp = pb.SysRoleListWithPermsResp
  186. SysRolePermGetReq = pb.SysRolePermGetReq
  187. SysRolePermListReq = pb.SysRolePermListReq
  188. SysRolePermListResp = pb.SysRolePermListResp
  189. SysRolePermVo = pb.SysRolePermVo
  190. SysRoleVo = pb.SysRoleVo
  191. SysRoleWithPermIds = pb.SysRoleWithPermIds
  192. SysRoleWithPerms = pb.SysRoleWithPerms
  193. SysUserGetReq = pb.SysUserGetReq
  194. SysUserListReq = pb.SysUserListReq
  195. SysUserListResp = pb.SysUserListResp
  196. SysUserListWithRolesAndPermsResp = pb.SysUserListWithRolesAndPermsResp
  197. SysUserPermGetReq = pb.SysUserPermGetReq
  198. SysUserPermListReq = pb.SysUserPermListReq
  199. SysUserPermListResp = pb.SysUserPermListResp
  200. SysUserPermVo = pb.SysUserPermVo
  201. SysUserRoleGetReq = pb.SysUserRoleGetReq
  202. SysUserRoleListReq = pb.SysUserRoleListReq
  203. SysUserRoleListResp = pb.SysUserRoleListResp
  204. SysUserRoleVo = pb.SysUserRoleVo
  205. SysUserVo = pb.SysUserVo
  206. SysUserWithRoleIdsAndPermRules = pb.SysUserWithRoleIdsAndPermRules
  207. SysUserWithRolesAndPerms = pb.SysUserWithRolesAndPerms
  208. TimeRange = pb.TimeRange
  209. TipGetReq = pb.TipGetReq
  210. TipListReq = pb.TipListReq
  211. TipListResp = pb.TipListResp
  212. TipVo = pb.TipVo
  213. TransactionOperation = pb.TransactionOperation
  214. TransactionReq = pb.TransactionReq
  215. UpgradePkgPlanDetailListReq = pb.UpgradePkgPlanDetailListReq
  216. UpgradePkgPlanDetailListResp = pb.UpgradePkgPlanDetailListResp
  217. UpgradePkgPlanDetailVo = pb.UpgradePkgPlanDetailVo
  218. UpgradePkgPlanListReq = pb.UpgradePkgPlanListReq
  219. UpgradePkgPlanListResp = pb.UpgradePkgPlanListResp
  220. UpgradePkgPlanVo = pb.UpgradePkgPlanVo
  221. UpgradeResPlanDetailListReq = pb.UpgradeResPlanDetailListReq
  222. UpgradeResPlanDetailListResp = pb.UpgradeResPlanDetailListResp
  223. UpgradeResPlanDetailVo = pb.UpgradeResPlanDetailVo
  224. UpgradeResPlanListReq = pb.UpgradeResPlanListReq
  225. UpgradeResPlanListResp = pb.UpgradeResPlanListResp
  226. UpgradeResPlanVo = pb.UpgradeResPlanVo
  227. UserAddReq = pb.UserAddReq
  228. UserAddResp = pb.UserAddResp
  229. UserAppConfigGetReq = pb.UserAppConfigGetReq
  230. UserAppConfigListReq = pb.UserAppConfigListReq
  231. UserAppConfigListRes = pb.UserAppConfigListRes
  232. UserAppConfigVo = pb.UserAppConfigVo
  233. UserCredentialAddReq = pb.UserCredentialAddReq
  234. UserCredentialAddResp = pb.UserCredentialAddResp
  235. UserCredentialDelReq = pb.UserCredentialDelReq
  236. UserCredentialGetReq = pb.UserCredentialGetReq
  237. UserCredentialGetResp = pb.UserCredentialGetResp
  238. UserCredentialListReq = pb.UserCredentialListReq
  239. UserCredentialListResp = pb.UserCredentialListResp
  240. UserCredentialUpdateReq = pb.UserCredentialUpdateReq
  241. UserCredentialUpdateResp = pb.UserCredentialUpdateResp
  242. UserCredentialVo = pb.UserCredentialVo
  243. UserDelReq = pb.UserDelReq
  244. UserDeviceAddReq = pb.UserDeviceAddReq
  245. UserDeviceAddResp = pb.UserDeviceAddResp
  246. UserDeviceDelReq = pb.UserDeviceDelReq
  247. UserDeviceGetReq = pb.UserDeviceGetReq
  248. UserDeviceGetResp = pb.UserDeviceGetResp
  249. UserDeviceListReq = pb.UserDeviceListReq
  250. UserDeviceListResp = pb.UserDeviceListResp
  251. UserDeviceUpdateReq = pb.UserDeviceUpdateReq
  252. UserDeviceUpdateResp = pb.UserDeviceUpdateResp
  253. UserDeviceVo = pb.UserDeviceVo
  254. UserGetReq = pb.UserGetReq
  255. UserGetResp = pb.UserGetResp
  256. UserListReq = pb.UserListReq
  257. UserListResp = pb.UserListResp
  258. UserTestListReq = pb.UserTestListReq
  259. UserTestListResp = pb.UserTestListResp
  260. UserTestVo = pb.UserTestVo
  261. UserUpdateReq = pb.UserUpdateReq
  262. UserUpdateResp = pb.UserUpdateResp
  263. UserVo = pb.UserVo
  264. UserWhiteListReq = pb.UserWhiteListReq
  265. UserWhiteListResp = pb.UserWhiteListResp
  266. UserWhiteVo = pb.UserWhiteVo
  267. VpnConfigTemplatePlanAddReq = pb.VpnConfigTemplatePlanAddReq
  268. VpnConfigTemplatePlanAddResp = pb.VpnConfigTemplatePlanAddResp
  269. VpnConfigTemplatePlanDelReq = pb.VpnConfigTemplatePlanDelReq
  270. VpnConfigTemplatePlanDetailAddReq = pb.VpnConfigTemplatePlanDetailAddReq
  271. VpnConfigTemplatePlanDetailAddResp = pb.VpnConfigTemplatePlanDetailAddResp
  272. VpnConfigTemplatePlanDetailDelReq = pb.VpnConfigTemplatePlanDetailDelReq
  273. VpnConfigTemplatePlanDetailGetReq = pb.VpnConfigTemplatePlanDetailGetReq
  274. VpnConfigTemplatePlanDetailGetResp = pb.VpnConfigTemplatePlanDetailGetResp
  275. VpnConfigTemplatePlanDetailListReq = pb.VpnConfigTemplatePlanDetailListReq
  276. VpnConfigTemplatePlanDetailListResp = pb.VpnConfigTemplatePlanDetailListResp
  277. VpnConfigTemplatePlanDetailUpdateReq = pb.VpnConfigTemplatePlanDetailUpdateReq
  278. VpnConfigTemplatePlanDetailUpdateResp = pb.VpnConfigTemplatePlanDetailUpdateResp
  279. VpnConfigTemplatePlanDetailVo = pb.VpnConfigTemplatePlanDetailVo
  280. VpnConfigTemplatePlanGetReq = pb.VpnConfigTemplatePlanGetReq
  281. VpnConfigTemplatePlanGetResp = pb.VpnConfigTemplatePlanGetResp
  282. VpnConfigTemplatePlanListReq = pb.VpnConfigTemplatePlanListReq
  283. VpnConfigTemplatePlanListResp = pb.VpnConfigTemplatePlanListResp
  284. VpnConfigTemplatePlanUpdateReq = pb.VpnConfigTemplatePlanUpdateReq
  285. VpnConfigTemplatePlanUpdateResp = pb.VpnConfigTemplatePlanUpdateResp
  286. VpnConfigTemplatePlanVo = pb.VpnConfigTemplatePlanVo
  287. VpnGroupAddReq = pb.VpnGroupAddReq
  288. VpnGroupBatchAddReq = pb.VpnGroupBatchAddReq
  289. VpnGroupBatchAddResp = pb.VpnGroupBatchAddResp
  290. VpnGroupBatchDelReq = pb.VpnGroupBatchDelReq
  291. VpnGroupBatchUpdateReq = pb.VpnGroupBatchUpdateReq
  292. VpnGroupBatchUpdateResp = pb.VpnGroupBatchUpdateResp
  293. VpnGroupExVo = pb.VpnGroupExVo
  294. VpnGroupGetReq = pb.VpnGroupGetReq
  295. VpnGroupListReq = pb.VpnGroupListReq
  296. VpnGroupListResp = pb.VpnGroupListResp
  297. VpnGroupTagListReq = pb.VpnGroupTagListReq
  298. VpnGroupTagListResp = pb.VpnGroupTagListResp
  299. VpnGroupTagVo = pb.VpnGroupTagVo
  300. VpnGroupVo = pb.VpnGroupVo
  301. VpnLocationBatchAddReq = pb.VpnLocationBatchAddReq
  302. VpnLocationBatchAddResp = pb.VpnLocationBatchAddResp
  303. VpnLocationBatchDelReq = pb.VpnLocationBatchDelReq
  304. VpnLocationBatchUpdateReq = pb.VpnLocationBatchUpdateReq
  305. VpnLocationBatchUpdateResp = pb.VpnLocationBatchUpdateResp
  306. VpnLocationExVo = pb.VpnLocationExVo
  307. VpnLocationGetReq = pb.VpnLocationGetReq
  308. VpnLocationListReq = pb.VpnLocationListReq
  309. VpnLocationListResp = pb.VpnLocationListResp
  310. VpnLocationServerCountReq = pb.VpnLocationServerCountReq
  311. VpnLocationServerCountResp = pb.VpnLocationServerCountResp
  312. VpnLocationServerCountVo = pb.VpnLocationServerCountVo
  313. VpnLocationVo = pb.VpnLocationVo
  314. VpnProbeTaskListReq = pb.VpnProbeTaskListReq
  315. VpnProbeTaskListResp = pb.VpnProbeTaskListResp
  316. VpnProbeTaskVo = pb.VpnProbeTaskVo
  317. VpnServerAddReq = pb.VpnServerAddReq
  318. VpnServerBatchAddReq = pb.VpnServerBatchAddReq
  319. VpnServerBatchAddResp = pb.VpnServerBatchAddResp
  320. VpnServerBatchDelReq = pb.VpnServerBatchDelReq
  321. VpnServerBatchUpdateReq = pb.VpnServerBatchUpdateReq
  322. VpnServerBatchUpdateResp = pb.VpnServerBatchUpdateResp
  323. VpnServerExListResp = pb.VpnServerExListResp
  324. VpnServerExVo = pb.VpnServerExVo
  325. VpnServerListReq = pb.VpnServerListReq
  326. VpnServerListResp = pb.VpnServerListResp
  327. VpnServerLocationListReq = pb.VpnServerLocationListReq
  328. VpnServerLocationListResp = pb.VpnServerLocationListResp
  329. VpnServerLocationVo = pb.VpnServerLocationVo
  330. VpnServerVo = pb.VpnServerVo
  331. VpnTagBatchAddReq = pb.VpnTagBatchAddReq
  332. VpnTagBatchAddResp = pb.VpnTagBatchAddResp
  333. VpnTagBatchDelReq = pb.VpnTagBatchDelReq
  334. VpnTagBatchUpdateReq = pb.VpnTagBatchUpdateReq
  335. VpnTagBatchUpdateResp = pb.VpnTagBatchUpdateResp
  336. VpnTagGetReq = pb.VpnTagGetReq
  337. VpnTagListReq = pb.VpnTagListReq
  338. VpnTagListResp = pb.VpnTagListResp
  339. VpnTagVo = pb.VpnTagVo
  340. VpnWithIPAndPortItem = pb.VpnWithIPAndPortItem
  341. VpnWithIPAndPortReq = pb.VpnWithIPAndPortReq
  342. VpnWithIPAndPortResp = pb.VpnWithIPAndPortResp
  343. VpnipAddReq = pb.VpnipAddReq
  344. VpnipAddResp = pb.VpnipAddResp
  345. VpnipBatchAddReq = pb.VpnipBatchAddReq
  346. VpnipBatchAddResp = pb.VpnipBatchAddResp
  347. VpnipBatchUpdateReq = pb.VpnipBatchUpdateReq
  348. VpnipBatchUpdateResp = pb.VpnipBatchUpdateResp
  349. VpnipBindAddReq = pb.VpnipBindAddReq
  350. VpnipBindAddResp = pb.VpnipBindAddResp
  351. VpnipBindBatchAddReq = pb.VpnipBindBatchAddReq
  352. VpnipBindBatchAddResp = pb.VpnipBindBatchAddResp
  353. VpnipBindBatchUpdateReq = pb.VpnipBindBatchUpdateReq
  354. VpnipBindBatchUpdateResp = pb.VpnipBindBatchUpdateResp
  355. VpnipBindGetReq = pb.VpnipBindGetReq
  356. VpnipBindGetResp = pb.VpnipBindGetResp
  357. VpnipBindListReq = pb.VpnipBindListReq
  358. VpnipBindListResp = pb.VpnipBindListResp
  359. VpnipBindUpdateReq = pb.VpnipBindUpdateReq
  360. VpnipBindUpdateResp = pb.VpnipBindUpdateResp
  361. VpnipBindVo = pb.VpnipBindVo
  362. VpnipExAddReq = pb.VpnipExAddReq
  363. VpnipExAddResp = pb.VpnipExAddResp
  364. VpnipExBatchAddReq = pb.VpnipExBatchAddReq
  365. VpnipExBatchAddResp = pb.VpnipExBatchAddResp
  366. VpnipExBatchUpdateReq = pb.VpnipExBatchUpdateReq
  367. VpnipExBatchUpdateResp = pb.VpnipExBatchUpdateResp
  368. VpnipExGetResp = pb.VpnipExGetResp
  369. VpnipExListResp = pb.VpnipExListResp
  370. VpnipExUpdateReq = pb.VpnipExUpdateReq
  371. VpnipExUpdateResp = pb.VpnipExUpdateResp
  372. VpnipExVo = pb.VpnipExVo
  373. VpnipGetReq = pb.VpnipGetReq
  374. VpnipGetResp = pb.VpnipGetResp
  375. VpnipListReq = pb.VpnipListReq
  376. VpnipListResp = pb.VpnipListResp
  377. VpnipRangeAddReq = pb.VpnipRangeAddReq
  378. VpnipRangeAddResp = pb.VpnipRangeAddResp
  379. VpnipRangeBatchAddReq = pb.VpnipRangeBatchAddReq
  380. VpnipRangeBatchAddResp = pb.VpnipRangeBatchAddResp
  381. VpnipRangeBatchUpdateReq = pb.VpnipRangeBatchUpdateReq
  382. VpnipRangeBatchUpdateResp = pb.VpnipRangeBatchUpdateResp
  383. VpnipRangeExAddReq = pb.VpnipRangeExAddReq
  384. VpnipRangeExAddResp = pb.VpnipRangeExAddResp
  385. VpnipRangeExBatchAddReq = pb.VpnipRangeExBatchAddReq
  386. VpnipRangeExBatchAddResp = pb.VpnipRangeExBatchAddResp
  387. VpnipRangeExBatchUpdateReq = pb.VpnipRangeExBatchUpdateReq
  388. VpnipRangeExBatchUpdateResp = pb.VpnipRangeExBatchUpdateResp
  389. VpnipRangeExGetResp = pb.VpnipRangeExGetResp
  390. VpnipRangeExListResp = pb.VpnipRangeExListResp
  391. VpnipRangeExUpdateReq = pb.VpnipRangeExUpdateReq
  392. VpnipRangeExUpdateResp = pb.VpnipRangeExUpdateResp
  393. VpnipRangeExVo = pb.VpnipRangeExVo
  394. VpnipRangeGetReq = pb.VpnipRangeGetReq
  395. VpnipRangeGetResp = pb.VpnipRangeGetResp
  396. VpnipRangeListReq = pb.VpnipRangeListReq
  397. VpnipRangeListResp = pb.VpnipRangeListResp
  398. VpnipRangeUpdateReq = pb.VpnipRangeUpdateReq
  399. VpnipRangeUpdateResp = pb.VpnipRangeUpdateResp
  400. VpnipRangeVo = pb.VpnipRangeVo
  401. VpnipUpdateReq = pb.VpnipUpdateReq
  402. VpnipUpdateResp = pb.VpnipUpdateResp
  403. VpnipVo = pb.VpnipVo
  404. VpnipWalledAddReq = pb.VpnipWalledAddReq
  405. VpnipWalledAddResp = pb.VpnipWalledAddResp
  406. VpnipWalledBatchAddReq = pb.VpnipWalledBatchAddReq
  407. VpnipWalledBatchAddResp = pb.VpnipWalledBatchAddResp
  408. VpnipWalledBatchUpdateReq = pb.VpnipWalledBatchUpdateReq
  409. VpnipWalledBatchUpdateResp = pb.VpnipWalledBatchUpdateResp
  410. VpnipWalledGetReq = pb.VpnipWalledGetReq
  411. VpnipWalledGetResp = pb.VpnipWalledGetResp
  412. VpnipWalledListReq = pb.VpnipWalledListReq
  413. VpnipWalledListResp = pb.VpnipWalledListResp
  414. VpnipWalledUpdateReq = pb.VpnipWalledUpdateReq
  415. VpnipWalledUpdateResp = pb.VpnipWalledUpdateResp
  416. VpnipWalledVo = pb.VpnipWalledVo
  417. GoPmpClient interface {
  418. Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error)
  419. // GlobalParamVo Model
  420. GlobalParamAdd(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error)
  421. GlobalParamUpdate(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error)
  422. GlobalParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  423. GlobalParamGet(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error)
  424. GlobalParamGetWithLang(ctx context.Context, in *GlobalParamGetReq, opts ...grpc.CallOption) (*GlobalParamVo, error)
  425. GlobalParamList(ctx context.Context, in *GlobalParamListReq, opts ...grpc.CallOption) (*GlobalParamListResp, error)
  426. // ProductVo Model
  427. ProductAdd(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error)
  428. ProductUpdate(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error)
  429. ProductDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  430. ProductGet(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error)
  431. ProductList(ctx context.Context, in *ProductListReq, opts ...grpc.CallOption) (*ProductListResp, error)
  432. ProductAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*ProductListResp, error)
  433. // ProductParamVo Model
  434. ProductParamAdd(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error)
  435. ProductParamUpdate(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error)
  436. ProductParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  437. ProductParamGet(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error)
  438. ProductParamGetWithLang(ctx context.Context, in *ProductParamGetReq, opts ...grpc.CallOption) (*ProductParamVo, error)
  439. ProductParamList(ctx context.Context, in *ProductParamListReq, opts ...grpc.CallOption) (*ProductParamListResp, error)
  440. // ProductAction 产品行为配置
  441. ProductActionAdd(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error)
  442. ProductActionUpdate(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error)
  443. ProductActionDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  444. ProductActionGet(ctx context.Context, in *ProductActionReq, opts ...grpc.CallOption) (*ProductActionVo, error)
  445. ProductActionList(ctx context.Context, in *ProductActionListReq, opts ...grpc.CallOption) (*ProductActionListResp, error)
  446. // ProductActionGroup 产品行为分组
  447. ProductActionGroupAdd(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error)
  448. ProductActionGroupUpdate(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error)
  449. ProductActionGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  450. ProductActionGroupGet(ctx context.Context, in *ProductActionGroupReq, opts ...grpc.CallOption) (*ProductActionGroupVo, error)
  451. ProductActionGroupList(ctx context.Context, in *ProductActionGroupListReq, opts ...grpc.CallOption) (*ProductActionGroupListResp, error)
  452. ProductActionGroupDisable(ctx context.Context, in *ProductActionGroupDisableReq, opts ...grpc.CallOption) (*Empty, error)
  453. ProductActionGroupEnable(ctx context.Context, in *ProductActionGroupEnableReq, opts ...grpc.CallOption) (*Empty, error)
  454. // ProductActionPolicyGroup 产品行为策略分组
  455. ProductActionPolicyGroupAdd(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error)
  456. ProductActionPolicyGroupUpdate(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error)
  457. ProductActionPolicyGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  458. ProductActionPolicyGroupGet(ctx context.Context, in *ProductActionPolicyGroupReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error)
  459. ProductActionPolicyGroupList(ctx context.Context, in *ProductActionPolicyGroupListReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupListResp, error)
  460. ProductActionPolicyGroupDisable(ctx context.Context, in *ProductActionPolicyGroupDisableReq, opts ...grpc.CallOption) (*Empty, error)
  461. ProductActionPolicyGroupEnable(ctx context.Context, in *ProductActionPolicyGroupEnableReq, opts ...grpc.CallOption) (*Empty, error)
  462. // ProductActionType 产品行为类型
  463. ProductActionTypeAdd(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error)
  464. ProductActionTypeUpdate(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error)
  465. ProductActionTypeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  466. ProductActionTypeGet(ctx context.Context, in *ProductActionTypeReq, opts ...grpc.CallOption) (*ProductActionTypeVo, error)
  467. ProductActionTypeList(ctx context.Context, in *ProductActionTypeListReq, opts ...grpc.CallOption) (*ProductActionTypeListResp, error)
  468. // AreaParamVo Model
  469. AreaParamAdd(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error)
  470. AreaParamUpdate(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error)
  471. AreaParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  472. AreaParamGet(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error)
  473. AreaParamList(ctx context.Context, in *AreaParamListReq, opts ...grpc.CallOption) (*AreaParamListResp, error)
  474. // NationalLanguage Model
  475. NationalLanguageAdd(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error)
  476. NationalLanguageUpdate(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error)
  477. NationalLanguageDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  478. NationalLanguageGet(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error)
  479. NationalLanguageList(ctx context.Context, in *NationalLanguageListReq, opts ...grpc.CallOption) (*NationalLanguageListResp, error)
  480. // Tip Model
  481. TipAdd(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error)
  482. TipUpdate(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error)
  483. TipDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  484. TipGet(ctx context.Context, in *TipGetReq, opts ...grpc.CallOption) (*TipVo, error)
  485. TipList(ctx context.Context, in *TipListReq, opts ...grpc.CallOption) (*TipListResp, error)
  486. // Dict Model
  487. DictAdd(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error)
  488. DictUpdate(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error)
  489. DictDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  490. DictGet(ctx context.Context, in *DictGetReq, opts ...grpc.CallOption) (*DictVo, error)
  491. DictList(ctx context.Context, in *DictListReq, opts ...grpc.CallOption) (*DictListResp, error)
  492. // UpgradePkgPlan Model
  493. UpgradePkgPlanAdd(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error)
  494. UpgradePkgPlanUpdate(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error)
  495. UpgradePkgPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  496. UpgradePkgPlanGet(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error)
  497. UpgradePkgPlanList(ctx context.Context, in *UpgradePkgPlanListReq, opts ...grpc.CallOption) (*UpgradePkgPlanListResp, error)
  498. // UpgradePkgPlanDetail Model
  499. UpgradePkgPlanDetailAdd(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error)
  500. UpgradePkgPlanDetailUpdate(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error)
  501. UpgradePkgPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  502. UpgradePkgPlanDetailGet(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error)
  503. UpgradePkgPlanDetailList(ctx context.Context, in *UpgradePkgPlanDetailListReq, opts ...grpc.CallOption) (*UpgradePkgPlanDetailListResp, error)
  504. // UpgradeResPlan Model
  505. UpgradeResPlanAdd(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error)
  506. UpgradeResPlanUpdate(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error)
  507. UpgradeResPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  508. UpgradeResPlanGet(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error)
  509. UpgradeResPlanList(ctx context.Context, in *UpgradeResPlanListReq, opts ...grpc.CallOption) (*UpgradeResPlanListResp, error)
  510. // UpgradeResPlanDetail Model
  511. UpgradeResPlanDetailAdd(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error)
  512. UpgradeResPlanDetailUpdate(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error)
  513. UpgradeResPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  514. UpgradeResPlanDetailGet(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error)
  515. UpgradeResPlanDetailList(ctx context.Context, in *UpgradeResPlanDetailListReq, opts ...grpc.CallOption) (*UpgradeResPlanDetailListResp, error)
  516. // AdPlan Model
  517. AdPlanAdd(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error)
  518. AdPlanUpdate(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error)
  519. AdPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  520. AdPlanGet(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error)
  521. AdPlanList(ctx context.Context, in *AdPlanListReq, opts ...grpc.CallOption) (*AdPlanListResp, error)
  522. // AdPlanDetail Model
  523. AdPlanDetailAdd(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error)
  524. AdPlanDetailUpdate(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error)
  525. AdPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  526. AdPlanDetailGet(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error)
  527. AdPlanDetailList(ctx context.Context, in *AdPlanDetailListReq, opts ...grpc.CallOption) (*AdPlanDetailListResp, error)
  528. // AdGlobalConfig Model
  529. AdGlobalConfigGet(ctx context.Context, in *AdGlobalConfigGetReq, opts ...grpc.CallOption) (*AdGlobalConfigVo, error)
  530. AdGlobalConfigUpdate(ctx context.Context, in *AdGlobalConfigVo, opts ...grpc.CallOption) (*AdGlobalConfigVo, error)
  531. // JobBatch Model
  532. JobBatchAdd(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error)
  533. JobBatchAddWithTasks(ctx context.Context, in *JobBatchWithTasksVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error)
  534. JobBatchUpdate(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error)
  535. JobBatchDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  536. JobBatchGet(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error)
  537. JobBatchGetWithTasks(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error)
  538. JobBatchList(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListResp, error)
  539. JobBatchListWithTasks(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListWithTasksResp, error)
  540. // JobTasks Model
  541. JobTasksAdd(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error)
  542. JobTasksUpdate(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error)
  543. JobTasksDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  544. JobTasksGet(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error)
  545. JobTasksList(ctx context.Context, in *JobTasksListReq, opts ...grpc.CallOption) (*JobTasksListResp, error)
  546. // DeployConfig Model
  547. DeployConfigAdd(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error)
  548. DeployConfigUpdate(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error)
  549. DeployConfigDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  550. DeployConfigGet(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error)
  551. DeployConfigList(ctx context.Context, in *DeployConfigListReq, opts ...grpc.CallOption) (*DeployConfigListResp, error)
  552. // OperationLog Model
  553. OperationLogAdd(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error)
  554. OperationLogUpdate(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error)
  555. OperationLogGet(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error)
  556. OperationLogList(ctx context.Context, in *OperationLogListReq, opts ...grpc.CallOption) (*OperationLogListResp, error)
  557. // AnnouncePlan Model
  558. AnnouncePlanAdd(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error)
  559. AnnouncePlanUpdate(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error)
  560. AnnouncePlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  561. AnnouncePlanGet(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error)
  562. AnnouncePlanList(ctx context.Context, in *AnnouncePlanListReq, opts ...grpc.CallOption) (*AnnouncePlanListResp, error)
  563. // AnnouncePlanDetail Model
  564. AnnouncePlanDetailAdd(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error)
  565. AnnouncePlanDetailUpdate(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error)
  566. AnnouncePlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error)
  567. AnnouncePlanDetailGet(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error)
  568. AnnouncePlanDetailList(ctx context.Context, in *AnnouncePlanDetailListReq, opts ...grpc.CallOption) (*AnnouncePlanDetailListResp, error)
  569. // ServiceTypes Model
  570. ServiceTypesAdd(ctx context.Context, in *ServiceTypesAddReq, opts ...grpc.CallOption) (*ServiceTypesVo, error)
  571. ServiceTypesUpdate(ctx context.Context, in *ServiceTypesUpdateReq, opts ...grpc.CallOption) (*ServiceTypesVo, error)
  572. ServiceTypesDel(ctx context.Context, in *ServiceTypesDelReq, opts ...grpc.CallOption) (*Empty, error)
  573. ServiceTypesGet(ctx context.Context, in *ServiceTypesGetReq, opts ...grpc.CallOption) (*ServiceTypesVo, error)
  574. ServiceTypesList(ctx context.Context, in *ServiceTypesListReq, opts ...grpc.CallOption) (*ServiceTypesListResp, error)
  575. // ServiceSets Model
  576. ServiceSetsAdd(ctx context.Context, in *ServiceSetsAddReq, opts ...grpc.CallOption) (*ServiceSetsVo, error)
  577. ServiceSetsUpdate(ctx context.Context, in *ServiceSetsUpdateReq, opts ...grpc.CallOption) (*ServiceSetsVo, error)
  578. ServiceSetsDel(ctx context.Context, in *ServiceSetsDelReq, opts ...grpc.CallOption) (*Empty, error)
  579. ServiceSetsGet(ctx context.Context, in *ServiceSetsGetReq, opts ...grpc.CallOption) (*ServiceSetsVo, error)
  580. ServiceSetsList(ctx context.Context, in *ServiceSetsListReq, opts ...grpc.CallOption) (*ServiceSetsListResp, error)
  581. // MessagePush Model
  582. MessagePushAdd(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error)
  583. MessagePushUpdate(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error)
  584. MessagePushList(ctx context.Context, in *MessagePushListReq, opts ...grpc.CallOption) (*MessagePushListResp, error)
  585. }
  586. defaultGoPmpClient struct {
  587. cli zrpc.Client
  588. }
  589. )
  590. func NewGoPmpClient(cli zrpc.Client) GoPmpClient {
  591. return &defaultGoPmpClient{
  592. cli: cli,
  593. }
  594. }
  595. func (m *defaultGoPmpClient) Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) {
  596. client := pb.NewGoPmpClientClient(m.cli.Conn())
  597. return client.Ping(ctx, in, opts...)
  598. }
  599. // GlobalParamVo Model
  600. func (m *defaultGoPmpClient) GlobalParamAdd(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  601. client := pb.NewGoPmpClientClient(m.cli.Conn())
  602. return client.GlobalParamAdd(ctx, in, opts...)
  603. }
  604. func (m *defaultGoPmpClient) GlobalParamUpdate(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  605. client := pb.NewGoPmpClientClient(m.cli.Conn())
  606. return client.GlobalParamUpdate(ctx, in, opts...)
  607. }
  608. func (m *defaultGoPmpClient) GlobalParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  609. client := pb.NewGoPmpClientClient(m.cli.Conn())
  610. return client.GlobalParamDel(ctx, in, opts...)
  611. }
  612. func (m *defaultGoPmpClient) GlobalParamGet(ctx context.Context, in *GlobalParamVo, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  613. client := pb.NewGoPmpClientClient(m.cli.Conn())
  614. return client.GlobalParamGet(ctx, in, opts...)
  615. }
  616. func (m *defaultGoPmpClient) GlobalParamGetWithLang(ctx context.Context, in *GlobalParamGetReq, opts ...grpc.CallOption) (*GlobalParamVo, error) {
  617. client := pb.NewGoPmpClientClient(m.cli.Conn())
  618. return client.GlobalParamGetWithLang(ctx, in, opts...)
  619. }
  620. func (m *defaultGoPmpClient) GlobalParamList(ctx context.Context, in *GlobalParamListReq, opts ...grpc.CallOption) (*GlobalParamListResp, error) {
  621. client := pb.NewGoPmpClientClient(m.cli.Conn())
  622. return client.GlobalParamList(ctx, in, opts...)
  623. }
  624. // ProductVo Model
  625. func (m *defaultGoPmpClient) ProductAdd(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error) {
  626. client := pb.NewGoPmpClientClient(m.cli.Conn())
  627. return client.ProductAdd(ctx, in, opts...)
  628. }
  629. func (m *defaultGoPmpClient) ProductUpdate(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error) {
  630. client := pb.NewGoPmpClientClient(m.cli.Conn())
  631. return client.ProductUpdate(ctx, in, opts...)
  632. }
  633. func (m *defaultGoPmpClient) ProductDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  634. client := pb.NewGoPmpClientClient(m.cli.Conn())
  635. return client.ProductDel(ctx, in, opts...)
  636. }
  637. func (m *defaultGoPmpClient) ProductGet(ctx context.Context, in *ProductVo, opts ...grpc.CallOption) (*ProductVo, error) {
  638. client := pb.NewGoPmpClientClient(m.cli.Conn())
  639. return client.ProductGet(ctx, in, opts...)
  640. }
  641. func (m *defaultGoPmpClient) ProductList(ctx context.Context, in *ProductListReq, opts ...grpc.CallOption) (*ProductListResp, error) {
  642. client := pb.NewGoPmpClientClient(m.cli.Conn())
  643. return client.ProductList(ctx, in, opts...)
  644. }
  645. func (m *defaultGoPmpClient) ProductAll(ctx context.Context, in *Request, opts ...grpc.CallOption) (*ProductListResp, error) {
  646. client := pb.NewGoPmpClientClient(m.cli.Conn())
  647. return client.ProductAll(ctx, in, opts...)
  648. }
  649. // ProductParamVo Model
  650. func (m *defaultGoPmpClient) ProductParamAdd(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error) {
  651. client := pb.NewGoPmpClientClient(m.cli.Conn())
  652. return client.ProductParamAdd(ctx, in, opts...)
  653. }
  654. func (m *defaultGoPmpClient) ProductParamUpdate(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error) {
  655. client := pb.NewGoPmpClientClient(m.cli.Conn())
  656. return client.ProductParamUpdate(ctx, in, opts...)
  657. }
  658. func (m *defaultGoPmpClient) ProductParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  659. client := pb.NewGoPmpClientClient(m.cli.Conn())
  660. return client.ProductParamDel(ctx, in, opts...)
  661. }
  662. func (m *defaultGoPmpClient) ProductParamGet(ctx context.Context, in *ProductParamVo, opts ...grpc.CallOption) (*ProductParamVo, error) {
  663. client := pb.NewGoPmpClientClient(m.cli.Conn())
  664. return client.ProductParamGet(ctx, in, opts...)
  665. }
  666. func (m *defaultGoPmpClient) ProductParamGetWithLang(ctx context.Context, in *ProductParamGetReq, opts ...grpc.CallOption) (*ProductParamVo, error) {
  667. client := pb.NewGoPmpClientClient(m.cli.Conn())
  668. return client.ProductParamGetWithLang(ctx, in, opts...)
  669. }
  670. func (m *defaultGoPmpClient) ProductParamList(ctx context.Context, in *ProductParamListReq, opts ...grpc.CallOption) (*ProductParamListResp, error) {
  671. client := pb.NewGoPmpClientClient(m.cli.Conn())
  672. return client.ProductParamList(ctx, in, opts...)
  673. }
  674. // ProductAction 产品行为配置
  675. func (m *defaultGoPmpClient) ProductActionAdd(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error) {
  676. client := pb.NewGoPmpClientClient(m.cli.Conn())
  677. return client.ProductActionAdd(ctx, in, opts...)
  678. }
  679. func (m *defaultGoPmpClient) ProductActionUpdate(ctx context.Context, in *ProductActionVo, opts ...grpc.CallOption) (*ProductActionVo, error) {
  680. client := pb.NewGoPmpClientClient(m.cli.Conn())
  681. return client.ProductActionUpdate(ctx, in, opts...)
  682. }
  683. func (m *defaultGoPmpClient) ProductActionDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  684. client := pb.NewGoPmpClientClient(m.cli.Conn())
  685. return client.ProductActionDel(ctx, in, opts...)
  686. }
  687. func (m *defaultGoPmpClient) ProductActionGet(ctx context.Context, in *ProductActionReq, opts ...grpc.CallOption) (*ProductActionVo, error) {
  688. client := pb.NewGoPmpClientClient(m.cli.Conn())
  689. return client.ProductActionGet(ctx, in, opts...)
  690. }
  691. func (m *defaultGoPmpClient) ProductActionList(ctx context.Context, in *ProductActionListReq, opts ...grpc.CallOption) (*ProductActionListResp, error) {
  692. client := pb.NewGoPmpClientClient(m.cli.Conn())
  693. return client.ProductActionList(ctx, in, opts...)
  694. }
  695. // ProductActionGroup 产品行为分组
  696. func (m *defaultGoPmpClient) ProductActionGroupAdd(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error) {
  697. client := pb.NewGoPmpClientClient(m.cli.Conn())
  698. return client.ProductActionGroupAdd(ctx, in, opts...)
  699. }
  700. func (m *defaultGoPmpClient) ProductActionGroupUpdate(ctx context.Context, in *ProductActionGroupVo, opts ...grpc.CallOption) (*ProductActionGroupVo, error) {
  701. client := pb.NewGoPmpClientClient(m.cli.Conn())
  702. return client.ProductActionGroupUpdate(ctx, in, opts...)
  703. }
  704. func (m *defaultGoPmpClient) ProductActionGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  705. client := pb.NewGoPmpClientClient(m.cli.Conn())
  706. return client.ProductActionGroupDel(ctx, in, opts...)
  707. }
  708. func (m *defaultGoPmpClient) ProductActionGroupGet(ctx context.Context, in *ProductActionGroupReq, opts ...grpc.CallOption) (*ProductActionGroupVo, error) {
  709. client := pb.NewGoPmpClientClient(m.cli.Conn())
  710. return client.ProductActionGroupGet(ctx, in, opts...)
  711. }
  712. func (m *defaultGoPmpClient) ProductActionGroupList(ctx context.Context, in *ProductActionGroupListReq, opts ...grpc.CallOption) (*ProductActionGroupListResp, error) {
  713. client := pb.NewGoPmpClientClient(m.cli.Conn())
  714. return client.ProductActionGroupList(ctx, in, opts...)
  715. }
  716. func (m *defaultGoPmpClient) ProductActionGroupDisable(ctx context.Context, in *ProductActionGroupDisableReq, opts ...grpc.CallOption) (*Empty, error) {
  717. client := pb.NewGoPmpClientClient(m.cli.Conn())
  718. return client.ProductActionGroupDisable(ctx, in, opts...)
  719. }
  720. func (m *defaultGoPmpClient) ProductActionGroupEnable(ctx context.Context, in *ProductActionGroupEnableReq, opts ...grpc.CallOption) (*Empty, error) {
  721. client := pb.NewGoPmpClientClient(m.cli.Conn())
  722. return client.ProductActionGroupEnable(ctx, in, opts...)
  723. }
  724. // ProductActionPolicyGroup 产品行为策略分组
  725. func (m *defaultGoPmpClient) ProductActionPolicyGroupAdd(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error) {
  726. client := pb.NewGoPmpClientClient(m.cli.Conn())
  727. return client.ProductActionPolicyGroupAdd(ctx, in, opts...)
  728. }
  729. func (m *defaultGoPmpClient) ProductActionPolicyGroupUpdate(ctx context.Context, in *ProductActionPolicyGroupVo, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error) {
  730. client := pb.NewGoPmpClientClient(m.cli.Conn())
  731. return client.ProductActionPolicyGroupUpdate(ctx, in, opts...)
  732. }
  733. func (m *defaultGoPmpClient) ProductActionPolicyGroupDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  734. client := pb.NewGoPmpClientClient(m.cli.Conn())
  735. return client.ProductActionPolicyGroupDel(ctx, in, opts...)
  736. }
  737. func (m *defaultGoPmpClient) ProductActionPolicyGroupGet(ctx context.Context, in *ProductActionPolicyGroupReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupVo, error) {
  738. client := pb.NewGoPmpClientClient(m.cli.Conn())
  739. return client.ProductActionPolicyGroupGet(ctx, in, opts...)
  740. }
  741. func (m *defaultGoPmpClient) ProductActionPolicyGroupList(ctx context.Context, in *ProductActionPolicyGroupListReq, opts ...grpc.CallOption) (*ProductActionPolicyGroupListResp, error) {
  742. client := pb.NewGoPmpClientClient(m.cli.Conn())
  743. return client.ProductActionPolicyGroupList(ctx, in, opts...)
  744. }
  745. func (m *defaultGoPmpClient) ProductActionPolicyGroupDisable(ctx context.Context, in *ProductActionPolicyGroupDisableReq, opts ...grpc.CallOption) (*Empty, error) {
  746. client := pb.NewGoPmpClientClient(m.cli.Conn())
  747. return client.ProductActionPolicyGroupDisable(ctx, in, opts...)
  748. }
  749. func (m *defaultGoPmpClient) ProductActionPolicyGroupEnable(ctx context.Context, in *ProductActionPolicyGroupEnableReq, opts ...grpc.CallOption) (*Empty, error) {
  750. client := pb.NewGoPmpClientClient(m.cli.Conn())
  751. return client.ProductActionPolicyGroupEnable(ctx, in, opts...)
  752. }
  753. // ProductActionType 产品行为类型
  754. func (m *defaultGoPmpClient) ProductActionTypeAdd(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error) {
  755. client := pb.NewGoPmpClientClient(m.cli.Conn())
  756. return client.ProductActionTypeAdd(ctx, in, opts...)
  757. }
  758. func (m *defaultGoPmpClient) ProductActionTypeUpdate(ctx context.Context, in *ProductActionTypeVo, opts ...grpc.CallOption) (*ProductActionTypeVo, error) {
  759. client := pb.NewGoPmpClientClient(m.cli.Conn())
  760. return client.ProductActionTypeUpdate(ctx, in, opts...)
  761. }
  762. func (m *defaultGoPmpClient) ProductActionTypeDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  763. client := pb.NewGoPmpClientClient(m.cli.Conn())
  764. return client.ProductActionTypeDel(ctx, in, opts...)
  765. }
  766. func (m *defaultGoPmpClient) ProductActionTypeGet(ctx context.Context, in *ProductActionTypeReq, opts ...grpc.CallOption) (*ProductActionTypeVo, error) {
  767. client := pb.NewGoPmpClientClient(m.cli.Conn())
  768. return client.ProductActionTypeGet(ctx, in, opts...)
  769. }
  770. func (m *defaultGoPmpClient) ProductActionTypeList(ctx context.Context, in *ProductActionTypeListReq, opts ...grpc.CallOption) (*ProductActionTypeListResp, error) {
  771. client := pb.NewGoPmpClientClient(m.cli.Conn())
  772. return client.ProductActionTypeList(ctx, in, opts...)
  773. }
  774. // AreaParamVo Model
  775. func (m *defaultGoPmpClient) AreaParamAdd(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error) {
  776. client := pb.NewGoPmpClientClient(m.cli.Conn())
  777. return client.AreaParamAdd(ctx, in, opts...)
  778. }
  779. func (m *defaultGoPmpClient) AreaParamUpdate(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error) {
  780. client := pb.NewGoPmpClientClient(m.cli.Conn())
  781. return client.AreaParamUpdate(ctx, in, opts...)
  782. }
  783. func (m *defaultGoPmpClient) AreaParamDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  784. client := pb.NewGoPmpClientClient(m.cli.Conn())
  785. return client.AreaParamDel(ctx, in, opts...)
  786. }
  787. func (m *defaultGoPmpClient) AreaParamGet(ctx context.Context, in *AreaParamVo, opts ...grpc.CallOption) (*AreaParamVo, error) {
  788. client := pb.NewGoPmpClientClient(m.cli.Conn())
  789. return client.AreaParamGet(ctx, in, opts...)
  790. }
  791. func (m *defaultGoPmpClient) AreaParamList(ctx context.Context, in *AreaParamListReq, opts ...grpc.CallOption) (*AreaParamListResp, error) {
  792. client := pb.NewGoPmpClientClient(m.cli.Conn())
  793. return client.AreaParamList(ctx, in, opts...)
  794. }
  795. // NationalLanguage Model
  796. func (m *defaultGoPmpClient) NationalLanguageAdd(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error) {
  797. client := pb.NewGoPmpClientClient(m.cli.Conn())
  798. return client.NationalLanguageAdd(ctx, in, opts...)
  799. }
  800. func (m *defaultGoPmpClient) NationalLanguageUpdate(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error) {
  801. client := pb.NewGoPmpClientClient(m.cli.Conn())
  802. return client.NationalLanguageUpdate(ctx, in, opts...)
  803. }
  804. func (m *defaultGoPmpClient) NationalLanguageDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  805. client := pb.NewGoPmpClientClient(m.cli.Conn())
  806. return client.NationalLanguageDel(ctx, in, opts...)
  807. }
  808. func (m *defaultGoPmpClient) NationalLanguageGet(ctx context.Context, in *NationalLanguageVo, opts ...grpc.CallOption) (*NationalLanguageVo, error) {
  809. client := pb.NewGoPmpClientClient(m.cli.Conn())
  810. return client.NationalLanguageGet(ctx, in, opts...)
  811. }
  812. func (m *defaultGoPmpClient) NationalLanguageList(ctx context.Context, in *NationalLanguageListReq, opts ...grpc.CallOption) (*NationalLanguageListResp, error) {
  813. client := pb.NewGoPmpClientClient(m.cli.Conn())
  814. return client.NationalLanguageList(ctx, in, opts...)
  815. }
  816. // Tip Model
  817. func (m *defaultGoPmpClient) TipAdd(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error) {
  818. client := pb.NewGoPmpClientClient(m.cli.Conn())
  819. return client.TipAdd(ctx, in, opts...)
  820. }
  821. func (m *defaultGoPmpClient) TipUpdate(ctx context.Context, in *TipVo, opts ...grpc.CallOption) (*TipVo, error) {
  822. client := pb.NewGoPmpClientClient(m.cli.Conn())
  823. return client.TipUpdate(ctx, in, opts...)
  824. }
  825. func (m *defaultGoPmpClient) TipDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  826. client := pb.NewGoPmpClientClient(m.cli.Conn())
  827. return client.TipDel(ctx, in, opts...)
  828. }
  829. func (m *defaultGoPmpClient) TipGet(ctx context.Context, in *TipGetReq, opts ...grpc.CallOption) (*TipVo, error) {
  830. client := pb.NewGoPmpClientClient(m.cli.Conn())
  831. return client.TipGet(ctx, in, opts...)
  832. }
  833. func (m *defaultGoPmpClient) TipList(ctx context.Context, in *TipListReq, opts ...grpc.CallOption) (*TipListResp, error) {
  834. client := pb.NewGoPmpClientClient(m.cli.Conn())
  835. return client.TipList(ctx, in, opts...)
  836. }
  837. // Dict Model
  838. func (m *defaultGoPmpClient) DictAdd(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error) {
  839. client := pb.NewGoPmpClientClient(m.cli.Conn())
  840. return client.DictAdd(ctx, in, opts...)
  841. }
  842. func (m *defaultGoPmpClient) DictUpdate(ctx context.Context, in *DictVo, opts ...grpc.CallOption) (*DictVo, error) {
  843. client := pb.NewGoPmpClientClient(m.cli.Conn())
  844. return client.DictUpdate(ctx, in, opts...)
  845. }
  846. func (m *defaultGoPmpClient) DictDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  847. client := pb.NewGoPmpClientClient(m.cli.Conn())
  848. return client.DictDel(ctx, in, opts...)
  849. }
  850. func (m *defaultGoPmpClient) DictGet(ctx context.Context, in *DictGetReq, opts ...grpc.CallOption) (*DictVo, error) {
  851. client := pb.NewGoPmpClientClient(m.cli.Conn())
  852. return client.DictGet(ctx, in, opts...)
  853. }
  854. func (m *defaultGoPmpClient) DictList(ctx context.Context, in *DictListReq, opts ...grpc.CallOption) (*DictListResp, error) {
  855. client := pb.NewGoPmpClientClient(m.cli.Conn())
  856. return client.DictList(ctx, in, opts...)
  857. }
  858. // UpgradePkgPlan Model
  859. func (m *defaultGoPmpClient) UpgradePkgPlanAdd(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error) {
  860. client := pb.NewGoPmpClientClient(m.cli.Conn())
  861. return client.UpgradePkgPlanAdd(ctx, in, opts...)
  862. }
  863. func (m *defaultGoPmpClient) UpgradePkgPlanUpdate(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error) {
  864. client := pb.NewGoPmpClientClient(m.cli.Conn())
  865. return client.UpgradePkgPlanUpdate(ctx, in, opts...)
  866. }
  867. func (m *defaultGoPmpClient) UpgradePkgPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  868. client := pb.NewGoPmpClientClient(m.cli.Conn())
  869. return client.UpgradePkgPlanDel(ctx, in, opts...)
  870. }
  871. func (m *defaultGoPmpClient) UpgradePkgPlanGet(ctx context.Context, in *UpgradePkgPlanVo, opts ...grpc.CallOption) (*UpgradePkgPlanVo, error) {
  872. client := pb.NewGoPmpClientClient(m.cli.Conn())
  873. return client.UpgradePkgPlanGet(ctx, in, opts...)
  874. }
  875. func (m *defaultGoPmpClient) UpgradePkgPlanList(ctx context.Context, in *UpgradePkgPlanListReq, opts ...grpc.CallOption) (*UpgradePkgPlanListResp, error) {
  876. client := pb.NewGoPmpClientClient(m.cli.Conn())
  877. return client.UpgradePkgPlanList(ctx, in, opts...)
  878. }
  879. // UpgradePkgPlanDetail Model
  880. func (m *defaultGoPmpClient) UpgradePkgPlanDetailAdd(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error) {
  881. client := pb.NewGoPmpClientClient(m.cli.Conn())
  882. return client.UpgradePkgPlanDetailAdd(ctx, in, opts...)
  883. }
  884. func (m *defaultGoPmpClient) UpgradePkgPlanDetailUpdate(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error) {
  885. client := pb.NewGoPmpClientClient(m.cli.Conn())
  886. return client.UpgradePkgPlanDetailUpdate(ctx, in, opts...)
  887. }
  888. func (m *defaultGoPmpClient) UpgradePkgPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  889. client := pb.NewGoPmpClientClient(m.cli.Conn())
  890. return client.UpgradePkgPlanDetailDel(ctx, in, opts...)
  891. }
  892. func (m *defaultGoPmpClient) UpgradePkgPlanDetailGet(ctx context.Context, in *UpgradePkgPlanDetailVo, opts ...grpc.CallOption) (*UpgradePkgPlanDetailVo, error) {
  893. client := pb.NewGoPmpClientClient(m.cli.Conn())
  894. return client.UpgradePkgPlanDetailGet(ctx, in, opts...)
  895. }
  896. func (m *defaultGoPmpClient) UpgradePkgPlanDetailList(ctx context.Context, in *UpgradePkgPlanDetailListReq, opts ...grpc.CallOption) (*UpgradePkgPlanDetailListResp, error) {
  897. client := pb.NewGoPmpClientClient(m.cli.Conn())
  898. return client.UpgradePkgPlanDetailList(ctx, in, opts...)
  899. }
  900. // UpgradeResPlan Model
  901. func (m *defaultGoPmpClient) UpgradeResPlanAdd(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error) {
  902. client := pb.NewGoPmpClientClient(m.cli.Conn())
  903. return client.UpgradeResPlanAdd(ctx, in, opts...)
  904. }
  905. func (m *defaultGoPmpClient) UpgradeResPlanUpdate(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error) {
  906. client := pb.NewGoPmpClientClient(m.cli.Conn())
  907. return client.UpgradeResPlanUpdate(ctx, in, opts...)
  908. }
  909. func (m *defaultGoPmpClient) UpgradeResPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  910. client := pb.NewGoPmpClientClient(m.cli.Conn())
  911. return client.UpgradeResPlanDel(ctx, in, opts...)
  912. }
  913. func (m *defaultGoPmpClient) UpgradeResPlanGet(ctx context.Context, in *UpgradeResPlanVo, opts ...grpc.CallOption) (*UpgradeResPlanVo, error) {
  914. client := pb.NewGoPmpClientClient(m.cli.Conn())
  915. return client.UpgradeResPlanGet(ctx, in, opts...)
  916. }
  917. func (m *defaultGoPmpClient) UpgradeResPlanList(ctx context.Context, in *UpgradeResPlanListReq, opts ...grpc.CallOption) (*UpgradeResPlanListResp, error) {
  918. client := pb.NewGoPmpClientClient(m.cli.Conn())
  919. return client.UpgradeResPlanList(ctx, in, opts...)
  920. }
  921. // UpgradeResPlanDetail Model
  922. func (m *defaultGoPmpClient) UpgradeResPlanDetailAdd(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error) {
  923. client := pb.NewGoPmpClientClient(m.cli.Conn())
  924. return client.UpgradeResPlanDetailAdd(ctx, in, opts...)
  925. }
  926. func (m *defaultGoPmpClient) UpgradeResPlanDetailUpdate(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error) {
  927. client := pb.NewGoPmpClientClient(m.cli.Conn())
  928. return client.UpgradeResPlanDetailUpdate(ctx, in, opts...)
  929. }
  930. func (m *defaultGoPmpClient) UpgradeResPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  931. client := pb.NewGoPmpClientClient(m.cli.Conn())
  932. return client.UpgradeResPlanDetailDel(ctx, in, opts...)
  933. }
  934. func (m *defaultGoPmpClient) UpgradeResPlanDetailGet(ctx context.Context, in *UpgradeResPlanDetailVo, opts ...grpc.CallOption) (*UpgradeResPlanDetailVo, error) {
  935. client := pb.NewGoPmpClientClient(m.cli.Conn())
  936. return client.UpgradeResPlanDetailGet(ctx, in, opts...)
  937. }
  938. func (m *defaultGoPmpClient) UpgradeResPlanDetailList(ctx context.Context, in *UpgradeResPlanDetailListReq, opts ...grpc.CallOption) (*UpgradeResPlanDetailListResp, error) {
  939. client := pb.NewGoPmpClientClient(m.cli.Conn())
  940. return client.UpgradeResPlanDetailList(ctx, in, opts...)
  941. }
  942. // AdPlan Model
  943. func (m *defaultGoPmpClient) AdPlanAdd(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error) {
  944. client := pb.NewGoPmpClientClient(m.cli.Conn())
  945. return client.AdPlanAdd(ctx, in, opts...)
  946. }
  947. func (m *defaultGoPmpClient) AdPlanUpdate(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error) {
  948. client := pb.NewGoPmpClientClient(m.cli.Conn())
  949. return client.AdPlanUpdate(ctx, in, opts...)
  950. }
  951. func (m *defaultGoPmpClient) AdPlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  952. client := pb.NewGoPmpClientClient(m.cli.Conn())
  953. return client.AdPlanDel(ctx, in, opts...)
  954. }
  955. func (m *defaultGoPmpClient) AdPlanGet(ctx context.Context, in *AdPlanVo, opts ...grpc.CallOption) (*AdPlanVo, error) {
  956. client := pb.NewGoPmpClientClient(m.cli.Conn())
  957. return client.AdPlanGet(ctx, in, opts...)
  958. }
  959. func (m *defaultGoPmpClient) AdPlanList(ctx context.Context, in *AdPlanListReq, opts ...grpc.CallOption) (*AdPlanListResp, error) {
  960. client := pb.NewGoPmpClientClient(m.cli.Conn())
  961. return client.AdPlanList(ctx, in, opts...)
  962. }
  963. // AdPlanDetail Model
  964. func (m *defaultGoPmpClient) AdPlanDetailAdd(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error) {
  965. client := pb.NewGoPmpClientClient(m.cli.Conn())
  966. return client.AdPlanDetailAdd(ctx, in, opts...)
  967. }
  968. func (m *defaultGoPmpClient) AdPlanDetailUpdate(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error) {
  969. client := pb.NewGoPmpClientClient(m.cli.Conn())
  970. return client.AdPlanDetailUpdate(ctx, in, opts...)
  971. }
  972. func (m *defaultGoPmpClient) AdPlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  973. client := pb.NewGoPmpClientClient(m.cli.Conn())
  974. return client.AdPlanDetailDel(ctx, in, opts...)
  975. }
  976. func (m *defaultGoPmpClient) AdPlanDetailGet(ctx context.Context, in *AdPlanDetailVo, opts ...grpc.CallOption) (*AdPlanDetailVo, error) {
  977. client := pb.NewGoPmpClientClient(m.cli.Conn())
  978. return client.AdPlanDetailGet(ctx, in, opts...)
  979. }
  980. func (m *defaultGoPmpClient) AdPlanDetailList(ctx context.Context, in *AdPlanDetailListReq, opts ...grpc.CallOption) (*AdPlanDetailListResp, error) {
  981. client := pb.NewGoPmpClientClient(m.cli.Conn())
  982. return client.AdPlanDetailList(ctx, in, opts...)
  983. }
  984. // AdGlobalConfig Model
  985. func (m *defaultGoPmpClient) AdGlobalConfigGet(ctx context.Context, in *AdGlobalConfigGetReq, opts ...grpc.CallOption) (*AdGlobalConfigVo, error) {
  986. client := pb.NewGoPmpClientClient(m.cli.Conn())
  987. return client.AdGlobalConfigGet(ctx, in, opts...)
  988. }
  989. func (m *defaultGoPmpClient) AdGlobalConfigUpdate(ctx context.Context, in *AdGlobalConfigVo, opts ...grpc.CallOption) (*AdGlobalConfigVo, error) {
  990. client := pb.NewGoPmpClientClient(m.cli.Conn())
  991. return client.AdGlobalConfigUpdate(ctx, in, opts...)
  992. }
  993. // JobBatch Model
  994. func (m *defaultGoPmpClient) JobBatchAdd(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error) {
  995. client := pb.NewGoPmpClientClient(m.cli.Conn())
  996. return client.JobBatchAdd(ctx, in, opts...)
  997. }
  998. func (m *defaultGoPmpClient) JobBatchAddWithTasks(ctx context.Context, in *JobBatchWithTasksVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error) {
  999. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1000. return client.JobBatchAddWithTasks(ctx, in, opts...)
  1001. }
  1002. func (m *defaultGoPmpClient) JobBatchUpdate(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error) {
  1003. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1004. return client.JobBatchUpdate(ctx, in, opts...)
  1005. }
  1006. func (m *defaultGoPmpClient) JobBatchDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1007. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1008. return client.JobBatchDel(ctx, in, opts...)
  1009. }
  1010. func (m *defaultGoPmpClient) JobBatchGet(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchVo, error) {
  1011. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1012. return client.JobBatchGet(ctx, in, opts...)
  1013. }
  1014. func (m *defaultGoPmpClient) JobBatchGetWithTasks(ctx context.Context, in *JobBatchVo, opts ...grpc.CallOption) (*JobBatchWithTasksVo, error) {
  1015. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1016. return client.JobBatchGetWithTasks(ctx, in, opts...)
  1017. }
  1018. func (m *defaultGoPmpClient) JobBatchList(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListResp, error) {
  1019. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1020. return client.JobBatchList(ctx, in, opts...)
  1021. }
  1022. func (m *defaultGoPmpClient) JobBatchListWithTasks(ctx context.Context, in *JobBatchListReq, opts ...grpc.CallOption) (*JobBatchListWithTasksResp, error) {
  1023. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1024. return client.JobBatchListWithTasks(ctx, in, opts...)
  1025. }
  1026. // JobTasks Model
  1027. func (m *defaultGoPmpClient) JobTasksAdd(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error) {
  1028. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1029. return client.JobTasksAdd(ctx, in, opts...)
  1030. }
  1031. func (m *defaultGoPmpClient) JobTasksUpdate(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error) {
  1032. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1033. return client.JobTasksUpdate(ctx, in, opts...)
  1034. }
  1035. func (m *defaultGoPmpClient) JobTasksDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1036. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1037. return client.JobTasksDel(ctx, in, opts...)
  1038. }
  1039. func (m *defaultGoPmpClient) JobTasksGet(ctx context.Context, in *JobTasksVo, opts ...grpc.CallOption) (*JobTasksVo, error) {
  1040. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1041. return client.JobTasksGet(ctx, in, opts...)
  1042. }
  1043. func (m *defaultGoPmpClient) JobTasksList(ctx context.Context, in *JobTasksListReq, opts ...grpc.CallOption) (*JobTasksListResp, error) {
  1044. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1045. return client.JobTasksList(ctx, in, opts...)
  1046. }
  1047. // DeployConfig Model
  1048. func (m *defaultGoPmpClient) DeployConfigAdd(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error) {
  1049. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1050. return client.DeployConfigAdd(ctx, in, opts...)
  1051. }
  1052. func (m *defaultGoPmpClient) DeployConfigUpdate(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error) {
  1053. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1054. return client.DeployConfigUpdate(ctx, in, opts...)
  1055. }
  1056. func (m *defaultGoPmpClient) DeployConfigDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1057. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1058. return client.DeployConfigDel(ctx, in, opts...)
  1059. }
  1060. func (m *defaultGoPmpClient) DeployConfigGet(ctx context.Context, in *DeployConfigVo, opts ...grpc.CallOption) (*DeployConfigVo, error) {
  1061. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1062. return client.DeployConfigGet(ctx, in, opts...)
  1063. }
  1064. func (m *defaultGoPmpClient) DeployConfigList(ctx context.Context, in *DeployConfigListReq, opts ...grpc.CallOption) (*DeployConfigListResp, error) {
  1065. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1066. return client.DeployConfigList(ctx, in, opts...)
  1067. }
  1068. // OperationLog Model
  1069. func (m *defaultGoPmpClient) OperationLogAdd(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error) {
  1070. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1071. return client.OperationLogAdd(ctx, in, opts...)
  1072. }
  1073. func (m *defaultGoPmpClient) OperationLogUpdate(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error) {
  1074. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1075. return client.OperationLogUpdate(ctx, in, opts...)
  1076. }
  1077. func (m *defaultGoPmpClient) OperationLogGet(ctx context.Context, in *OperationLogVo, opts ...grpc.CallOption) (*OperationLogVo, error) {
  1078. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1079. return client.OperationLogGet(ctx, in, opts...)
  1080. }
  1081. func (m *defaultGoPmpClient) OperationLogList(ctx context.Context, in *OperationLogListReq, opts ...grpc.CallOption) (*OperationLogListResp, error) {
  1082. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1083. return client.OperationLogList(ctx, in, opts...)
  1084. }
  1085. // AnnouncePlan Model
  1086. func (m *defaultGoPmpClient) AnnouncePlanAdd(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error) {
  1087. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1088. return client.AnnouncePlanAdd(ctx, in, opts...)
  1089. }
  1090. func (m *defaultGoPmpClient) AnnouncePlanUpdate(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error) {
  1091. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1092. return client.AnnouncePlanUpdate(ctx, in, opts...)
  1093. }
  1094. func (m *defaultGoPmpClient) AnnouncePlanDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1095. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1096. return client.AnnouncePlanDel(ctx, in, opts...)
  1097. }
  1098. func (m *defaultGoPmpClient) AnnouncePlanGet(ctx context.Context, in *AnnouncePlanVo, opts ...grpc.CallOption) (*AnnouncePlanVo, error) {
  1099. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1100. return client.AnnouncePlanGet(ctx, in, opts...)
  1101. }
  1102. func (m *defaultGoPmpClient) AnnouncePlanList(ctx context.Context, in *AnnouncePlanListReq, opts ...grpc.CallOption) (*AnnouncePlanListResp, error) {
  1103. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1104. return client.AnnouncePlanList(ctx, in, opts...)
  1105. }
  1106. // AnnouncePlanDetail Model
  1107. func (m *defaultGoPmpClient) AnnouncePlanDetailAdd(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error) {
  1108. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1109. return client.AnnouncePlanDetailAdd(ctx, in, opts...)
  1110. }
  1111. func (m *defaultGoPmpClient) AnnouncePlanDetailUpdate(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error) {
  1112. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1113. return client.AnnouncePlanDetailUpdate(ctx, in, opts...)
  1114. }
  1115. func (m *defaultGoPmpClient) AnnouncePlanDetailDel(ctx context.Context, in *Ids, opts ...grpc.CallOption) (*Empty, error) {
  1116. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1117. return client.AnnouncePlanDetailDel(ctx, in, opts...)
  1118. }
  1119. func (m *defaultGoPmpClient) AnnouncePlanDetailGet(ctx context.Context, in *AnnouncePlanDetailVo, opts ...grpc.CallOption) (*AnnouncePlanDetailVo, error) {
  1120. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1121. return client.AnnouncePlanDetailGet(ctx, in, opts...)
  1122. }
  1123. func (m *defaultGoPmpClient) AnnouncePlanDetailList(ctx context.Context, in *AnnouncePlanDetailListReq, opts ...grpc.CallOption) (*AnnouncePlanDetailListResp, error) {
  1124. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1125. return client.AnnouncePlanDetailList(ctx, in, opts...)
  1126. }
  1127. // ServiceTypes Model
  1128. func (m *defaultGoPmpClient) ServiceTypesAdd(ctx context.Context, in *ServiceTypesAddReq, opts ...grpc.CallOption) (*ServiceTypesVo, error) {
  1129. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1130. return client.ServiceTypesAdd(ctx, in, opts...)
  1131. }
  1132. func (m *defaultGoPmpClient) ServiceTypesUpdate(ctx context.Context, in *ServiceTypesUpdateReq, opts ...grpc.CallOption) (*ServiceTypesVo, error) {
  1133. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1134. return client.ServiceTypesUpdate(ctx, in, opts...)
  1135. }
  1136. func (m *defaultGoPmpClient) ServiceTypesDel(ctx context.Context, in *ServiceTypesDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1137. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1138. return client.ServiceTypesDel(ctx, in, opts...)
  1139. }
  1140. func (m *defaultGoPmpClient) ServiceTypesGet(ctx context.Context, in *ServiceTypesGetReq, opts ...grpc.CallOption) (*ServiceTypesVo, error) {
  1141. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1142. return client.ServiceTypesGet(ctx, in, opts...)
  1143. }
  1144. func (m *defaultGoPmpClient) ServiceTypesList(ctx context.Context, in *ServiceTypesListReq, opts ...grpc.CallOption) (*ServiceTypesListResp, error) {
  1145. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1146. return client.ServiceTypesList(ctx, in, opts...)
  1147. }
  1148. // ServiceSets Model
  1149. func (m *defaultGoPmpClient) ServiceSetsAdd(ctx context.Context, in *ServiceSetsAddReq, opts ...grpc.CallOption) (*ServiceSetsVo, error) {
  1150. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1151. return client.ServiceSetsAdd(ctx, in, opts...)
  1152. }
  1153. func (m *defaultGoPmpClient) ServiceSetsUpdate(ctx context.Context, in *ServiceSetsUpdateReq, opts ...grpc.CallOption) (*ServiceSetsVo, error) {
  1154. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1155. return client.ServiceSetsUpdate(ctx, in, opts...)
  1156. }
  1157. func (m *defaultGoPmpClient) ServiceSetsDel(ctx context.Context, in *ServiceSetsDelReq, opts ...grpc.CallOption) (*Empty, error) {
  1158. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1159. return client.ServiceSetsDel(ctx, in, opts...)
  1160. }
  1161. func (m *defaultGoPmpClient) ServiceSetsGet(ctx context.Context, in *ServiceSetsGetReq, opts ...grpc.CallOption) (*ServiceSetsVo, error) {
  1162. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1163. return client.ServiceSetsGet(ctx, in, opts...)
  1164. }
  1165. func (m *defaultGoPmpClient) ServiceSetsList(ctx context.Context, in *ServiceSetsListReq, opts ...grpc.CallOption) (*ServiceSetsListResp, error) {
  1166. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1167. return client.ServiceSetsList(ctx, in, opts...)
  1168. }
  1169. // MessagePush Model
  1170. func (m *defaultGoPmpClient) MessagePushAdd(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error) {
  1171. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1172. return client.MessagePushAdd(ctx, in, opts...)
  1173. }
  1174. func (m *defaultGoPmpClient) MessagePushUpdate(ctx context.Context, in *MessagePushVo, opts ...grpc.CallOption) (*MessagePushVo, error) {
  1175. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1176. return client.MessagePushUpdate(ctx, in, opts...)
  1177. }
  1178. func (m *defaultGoPmpClient) MessagePushList(ctx context.Context, in *MessagePushListReq, opts ...grpc.CallOption) (*MessagePushListResp, error) {
  1179. client := pb.NewGoPmpClientClient(m.cli.Conn())
  1180. return client.MessagePushList(ctx, in, opts...)
  1181. }