|
@@ -1,4 +1,4 @@
|
|
|
-// Code generated by goctl. DO NOT EDIT!
|
|
|
+// Code generated by goctl. DO NOT EDIT.
|
|
|
// Source: bxsubscribe.proto
|
|
|
|
|
|
package bxsubscribe
|
|
@@ -15,6 +15,9 @@ import (
|
|
|
type (
|
|
|
ByPushHistoryResp = bxsubscribe.ByPushHistoryResp
|
|
|
CityList = bxsubscribe.CityList
|
|
|
+ Derive = bxsubscribe.Derive
|
|
|
+ DeriveReq = bxsubscribe.DeriveReq
|
|
|
+ DeriveRes = bxsubscribe.DeriveRes
|
|
|
DistributorResp = bxsubscribe.DistributorResp
|
|
|
GetDistributorReq = bxsubscribe.GetDistributorReq
|
|
|
GetKeyReq = bxsubscribe.GetKeyReq
|
|
@@ -23,6 +26,7 @@ type (
|
|
|
Key = bxsubscribe.Key
|
|
|
KeyItems = bxsubscribe.KeyItems
|
|
|
KeyResp = bxsubscribe.KeyResp
|
|
|
+ KeyWord = bxsubscribe.KeyWord
|
|
|
Keys = bxsubscribe.Keys
|
|
|
List = bxsubscribe.List
|
|
|
MsgDistributorReq = bxsubscribe.MsgDistributorReq
|
|
@@ -65,6 +69,10 @@ type (
|
|
|
GetDistributor(ctx context.Context, in *GetDistributorReq, opts ...grpc.CallOption) (*DistributorResp, error)
|
|
|
// 查看状态
|
|
|
GetViewStatus(ctx context.Context, in *GetViewStatusReq, opts ...grpc.CallOption) (*ViewStatusResp, error)
|
|
|
+ // 自动数据导出筛选条件查询
|
|
|
+ DeriveShow(ctx context.Context, in *DeriveReq, opts ...grpc.CallOption) (*DeriveRes, error)
|
|
|
+ // 删除自动数据导出筛选条件
|
|
|
+ DeriveDel(ctx context.Context, in *DeriveReq, opts ...grpc.CallOption) (*StatusResp, error)
|
|
|
}
|
|
|
|
|
|
defaultBxsubscribe struct {
|
|
@@ -137,3 +145,15 @@ func (m *defaultBxsubscribe) GetViewStatus(ctx context.Context, in *GetViewStatu
|
|
|
client := bxsubscribe.NewBxsubscribeClient(m.cli.Conn())
|
|
|
return client.GetViewStatus(ctx, in, opts...)
|
|
|
}
|
|
|
+
|
|
|
+// 自动数据导出筛选条件查询
|
|
|
+func (m *defaultBxsubscribe) DeriveShow(ctx context.Context, in *DeriveReq, opts ...grpc.CallOption) (*DeriveRes, error) {
|
|
|
+ client := bxsubscribe.NewBxsubscribeClient(m.cli.Conn())
|
|
|
+ return client.DeriveShow(ctx, in, opts...)
|
|
|
+}
|
|
|
+
|
|
|
+// 删除自动数据导出筛选条件
|
|
|
+func (m *defaultBxsubscribe) DeriveDel(ctx context.Context, in *DeriveReq, opts ...grpc.CallOption) (*StatusResp, error) {
|
|
|
+ client := bxsubscribe.NewBxsubscribeClient(m.cli.Conn())
|
|
|
+ return client.DeriveDel(ctx, in, opts...)
|
|
|
+}
|