From 8efae215240439e937cb8fc12f3dbf80c0513614 Mon Sep 17 00:00:00 2001 From: "jiaji.H" Date: Thu, 11 Jun 2026 10:27:32 +0800 Subject: [PATCH 1/2] =?UTF-8?q?Update=EF=BC=9A=E5=A2=9E=E5=8A=A0=E5=85=88?= =?UTF-8?q?=E7=94=A8=E5=90=8E=E4=BB=98=E4=BD=99=E9=87=8F=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/controller/bundleExtend.go | 7 +- internal/dao/bundleExtend.go | 6 + internal/logic/bundleExtendLogic.go | 18 + pb/bundle.proto | 9 +- pb/bundle/bundle.pb.go | 3024 ++++++++++++++------------- pb/bundle/bundle.validator.pb.go | 10 + pb/bundle/bundle_triple.pb.go | 45 + 7 files changed, 1652 insertions(+), 1467 deletions(-) diff --git a/internal/controller/bundleExtend.go b/internal/controller/bundleExtend.go index 5b8c4ae..a2ed47f 100644 --- a/internal/controller/bundleExtend.go +++ b/internal/controller/bundleExtend.go @@ -93,11 +93,16 @@ func (b *BundleProvider) BundleActivate(_ context.Context, req *bundle.BundleAct return nil, logic.BundleActivate(req) } -// 套餐余额导出 +// 普通套餐余额导出 func (b *BundleProvider) BundleBalanceExport(_ context.Context, req *bundle.BundleBalanceExportReq) (*bundle.BundleBalanceExportResp, error) { return logic.BundleBalanceExport(req) } +// 先用后付套餐余额导出 +func (b *BundleProvider) PayLaterBundleBalanceExport(_ context.Context, req *bundle.BundleBalanceExportReq) (*bundle.PayLaterBundleBalanceExportResp, error) { + return logic.PayLaterBundleBalanceExport(req) +} + func (b *BundleProvider) GetBundleBalanceLayout(_ context.Context, req *bundle.GetBundleBalanceLayoutReq) (*bundle.GetBundleBalanceLayoutResp, error) { return logic.GetBundleBalanceLayout(req) } diff --git a/internal/dao/bundleExtend.go b/internal/dao/bundleExtend.go index a0e7fb4..819c2cb 100644 --- a/internal/dao/bundleExtend.go +++ b/internal/dao/bundleExtend.go @@ -226,6 +226,12 @@ func GetPayLaterBundleBalanceList(req *bundle.GetPayLaterBundleBalanceListReq) ( if req.ExpiredTimeStart != 0 { session = session.Where("lb.expired_at >= ?", time.UnixMilli(req.ExpiredTimeStart)) } + if req.StartTimeStart != 0 { + session = session.Where("bor.created_at >= ?", time.UnixMilli(req.StartTimeStart)) + } + if req.StartTimeEnd != 0 { + session = session.Where("bor.created_at <= ?", time.UnixMilli(req.StartTimeEnd)) + } err = session.Count(&total).Error if err != nil { return diff --git a/internal/logic/bundleExtendLogic.go b/internal/logic/bundleExtendLogic.go index 83fe2c3..ec0aaf3 100644 --- a/internal/logic/bundleExtendLogic.go +++ b/internal/logic/bundleExtendLogic.go @@ -764,6 +764,24 @@ func BundleBalanceExport(req *bundle.BundleBalanceExportReq) (*bundle.BundleBala return &bundle.BundleBalanceExportResp{Total: int64(len(items)), Data: items}, nil } +func PayLaterBundleBalanceExport(req *bundle.BundleBalanceExportReq) (*bundle.PayLaterBundleBalanceExportResp, error) { + data, err := GetPayLaterBundleBalanceList(&bundle.GetPayLaterBundleBalanceListReq{ + Month: req.Month, + UserName: req.UserName, + ExpiredTimeStart: int64(req.ExpiredTimeStart), + ExpiredTimeEnd: int64(req.ExpiredTimeEnd), + Page: 1, + PageSize: 99999, + }) + if err != nil { + return nil, errors.New("先用后付套餐余量导出失败") + } + return &bundle.PayLaterBundleBalanceExportResp{ + Total: data.Total, + Data: data.Data, + }, nil +} + func GetBundleBalanceLayout(req *bundle.GetBundleBalanceLayoutReq) (*bundle.GetBundleBalanceLayoutResp, error) { data, err := dao.GetBundleBalanceLayout(req) if err != nil { // 返回默认值 diff --git a/pb/bundle.proto b/pb/bundle.proto index 2e7bd72..2a5daa6 100644 --- a/pb/bundle.proto +++ b/pb/bundle.proto @@ -63,7 +63,8 @@ service Bundle { rpc CreateBundleBalance(CreateBundleBalanceReq) returns (CreateBundleBalanceResp) {} // 创建新的余量信息 rpc AddBundleBalance(AddBundleBalanceReq) returns (AddBundleBalanceResp) {} // 修改余量信息 rpc BundleActivate(BundleActivateReq) returns (BundleActivateResp) {} // 用户套餐激活 - rpc BundleBalanceExport(BundleBalanceExportReq) returns (BundleBalanceExportResp) {} // 套餐余量导出 + rpc BundleBalanceExport(BundleBalanceExportReq) returns (BundleBalanceExportResp) {} // 普通套餐余量导出 + rpc PayLaterBundleBalanceExport(BundleBalanceExportReq) returns (PayLaterBundleBalanceExportResp) {} // 先用后付套餐余量导出 rpc GetBundleBalanceLayout(GetBundleBalanceLayoutReq) returns (GetBundleBalanceLayoutResp) {} // 余量布局 rpc SetBundleBalanceLayout(SetBundleBalanceLayoutReq) returns (SetBundleBalanceLayoutResp) {} // 余量布局 @@ -1078,6 +1079,7 @@ message BundleBalanceExportReq{ uint64 expiredTimeStart = 3; uint64 expiredTimeEnd = 4; uint32 status = 5; + uint32 bundleType = 6; } message BundleBalanceExportResp{ @@ -1085,6 +1087,11 @@ message BundleBalanceExportResp{ repeated BundleBalanceExportItem data =2; } +message PayLaterBundleBalanceExportResp{ + int64 total = 1; + repeated PayLaterBundleBalanceItem data =2; +} + message GetBundleBalanceListResp{ int64 total = 1; diff --git a/pb/bundle/bundle.pb.go b/pb/bundle/bundle.pb.go index 990ba0f..7f17005 100644 --- a/pb/bundle/bundle.pb.go +++ b/pb/bundle/bundle.pb.go @@ -8413,6 +8413,7 @@ type BundleBalanceExportReq struct { ExpiredTimeStart uint64 `protobuf:"varint,3,opt,name=expiredTimeStart,proto3" json:"expiredTimeStart"` ExpiredTimeEnd uint64 `protobuf:"varint,4,opt,name=expiredTimeEnd,proto3" json:"expiredTimeEnd"` Status uint32 `protobuf:"varint,5,opt,name=status,proto3" json:"status"` + BundleType uint32 `protobuf:"varint,6,opt,name=bundleType,proto3" json:"bundleType"` } func (x *BundleBalanceExportReq) Reset() { @@ -8482,6 +8483,13 @@ func (x *BundleBalanceExportReq) GetStatus() uint32 { return 0 } +func (x *BundleBalanceExportReq) GetBundleType() uint32 { + if x != nil { + return x.BundleType + } + return 0 +} + type BundleBalanceExportResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -8537,6 +8545,61 @@ func (x *BundleBalanceExportResp) GetData() []*BundleBalanceExportItem { return nil } +type PayLaterBundleBalanceExportResp struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"` + Data []*PayLaterBundleBalanceItem `protobuf:"bytes,2,rep,name=data,proto3" json:"data"` +} + +func (x *PayLaterBundleBalanceExportResp) Reset() { + *x = PayLaterBundleBalanceExportResp{} + if protoimpl.UnsafeEnabled { + mi := &file_pb_bundle_proto_msgTypes[76] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *PayLaterBundleBalanceExportResp) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*PayLaterBundleBalanceExportResp) ProtoMessage() {} + +func (x *PayLaterBundleBalanceExportResp) ProtoReflect() protoreflect.Message { + mi := &file_pb_bundle_proto_msgTypes[76] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use PayLaterBundleBalanceExportResp.ProtoReflect.Descriptor instead. +func (*PayLaterBundleBalanceExportResp) Descriptor() ([]byte, []int) { + return file_pb_bundle_proto_rawDescGZIP(), []int{76} +} + +func (x *PayLaterBundleBalanceExportResp) GetTotal() int64 { + if x != nil { + return x.Total + } + return 0 +} + +func (x *PayLaterBundleBalanceExportResp) GetData() []*PayLaterBundleBalanceItem { + if x != nil { + return x.Data + } + return nil +} + type GetBundleBalanceListResp struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -8549,7 +8612,7 @@ type GetBundleBalanceListResp struct { func (x *GetBundleBalanceListResp) Reset() { *x = GetBundleBalanceListResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[76] + mi := &file_pb_bundle_proto_msgTypes[77] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8562,7 +8625,7 @@ func (x *GetBundleBalanceListResp) String() string { func (*GetBundleBalanceListResp) ProtoMessage() {} func (x *GetBundleBalanceListResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[76] + mi := &file_pb_bundle_proto_msgTypes[77] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8575,7 +8638,7 @@ func (x *GetBundleBalanceListResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleBalanceListResp.ProtoReflect.Descriptor instead. func (*GetBundleBalanceListResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{76} + return file_pb_bundle_proto_rawDescGZIP(), []int{77} } func (x *GetBundleBalanceListResp) GetTotal() int64 { @@ -8613,7 +8676,7 @@ type CreateBundleBalanceReq struct { func (x *CreateBundleBalanceReq) Reset() { *x = CreateBundleBalanceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[77] + mi := &file_pb_bundle_proto_msgTypes[78] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8626,7 +8689,7 @@ func (x *CreateBundleBalanceReq) String() string { func (*CreateBundleBalanceReq) ProtoMessage() {} func (x *CreateBundleBalanceReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[77] + mi := &file_pb_bundle_proto_msgTypes[78] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8639,7 +8702,7 @@ func (x *CreateBundleBalanceReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateBundleBalanceReq.ProtoReflect.Descriptor instead. func (*CreateBundleBalanceReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{77} + return file_pb_bundle_proto_rawDescGZIP(), []int{78} } func (x *CreateBundleBalanceReq) GetUserId() int32 { @@ -8728,7 +8791,7 @@ type CreateBundleBalanceResp struct { func (x *CreateBundleBalanceResp) Reset() { *x = CreateBundleBalanceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[78] + mi := &file_pb_bundle_proto_msgTypes[79] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8741,7 +8804,7 @@ func (x *CreateBundleBalanceResp) String() string { func (*CreateBundleBalanceResp) ProtoMessage() {} func (x *CreateBundleBalanceResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[78] + mi := &file_pb_bundle_proto_msgTypes[79] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8754,7 +8817,7 @@ func (x *CreateBundleBalanceResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateBundleBalanceResp.ProtoReflect.Descriptor instead. func (*CreateBundleBalanceResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{78} + return file_pb_bundle_proto_rawDescGZIP(), []int{79} } type AddBundleBalanceReq struct { @@ -8781,7 +8844,7 @@ type AddBundleBalanceReq struct { func (x *AddBundleBalanceReq) Reset() { *x = AddBundleBalanceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[79] + mi := &file_pb_bundle_proto_msgTypes[80] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8794,7 +8857,7 @@ func (x *AddBundleBalanceReq) String() string { func (*AddBundleBalanceReq) ProtoMessage() {} func (x *AddBundleBalanceReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[79] + mi := &file_pb_bundle_proto_msgTypes[80] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8807,7 +8870,7 @@ func (x *AddBundleBalanceReq) ProtoReflect() protoreflect.Message { // Deprecated: Use AddBundleBalanceReq.ProtoReflect.Descriptor instead. func (*AddBundleBalanceReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{79} + return file_pb_bundle_proto_rawDescGZIP(), []int{80} } func (x *AddBundleBalanceReq) GetId() int32 { @@ -8919,7 +8982,7 @@ type AddBundleBalanceResp struct { func (x *AddBundleBalanceResp) Reset() { *x = AddBundleBalanceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[80] + mi := &file_pb_bundle_proto_msgTypes[81] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8932,7 +8995,7 @@ func (x *AddBundleBalanceResp) String() string { func (*AddBundleBalanceResp) ProtoMessage() {} func (x *AddBundleBalanceResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[80] + mi := &file_pb_bundle_proto_msgTypes[81] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8945,7 +9008,7 @@ func (x *AddBundleBalanceResp) ProtoReflect() protoreflect.Message { // Deprecated: Use AddBundleBalanceResp.ProtoReflect.Descriptor instead. func (*AddBundleBalanceResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{80} + return file_pb_bundle_proto_rawDescGZIP(), []int{81} } func (x *AddBundleBalanceResp) GetUsedType() uint32 { @@ -8977,7 +9040,7 @@ type GetUsedRecordListReq struct { func (x *GetUsedRecordListReq) Reset() { *x = GetUsedRecordListReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[81] + mi := &file_pb_bundle_proto_msgTypes[82] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8990,7 +9053,7 @@ func (x *GetUsedRecordListReq) String() string { func (*GetUsedRecordListReq) ProtoMessage() {} func (x *GetUsedRecordListReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[81] + mi := &file_pb_bundle_proto_msgTypes[82] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9003,7 +9066,7 @@ func (x *GetUsedRecordListReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetUsedRecordListReq.ProtoReflect.Descriptor instead. func (*GetUsedRecordListReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{81} + return file_pb_bundle_proto_rawDescGZIP(), []int{82} } func (x *GetUsedRecordListReq) GetUser() string { @@ -9102,7 +9165,7 @@ type GetUsedRecordListResp struct { func (x *GetUsedRecordListResp) Reset() { *x = GetUsedRecordListResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[82] + mi := &file_pb_bundle_proto_msgTypes[83] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9115,7 +9178,7 @@ func (x *GetUsedRecordListResp) String() string { func (*GetUsedRecordListResp) ProtoMessage() {} func (x *GetUsedRecordListResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[82] + mi := &file_pb_bundle_proto_msgTypes[83] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9128,7 +9191,7 @@ func (x *GetUsedRecordListResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetUsedRecordListResp.ProtoReflect.Descriptor instead. func (*GetUsedRecordListResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{82} + return file_pb_bundle_proto_rawDescGZIP(), []int{83} } func (x *GetUsedRecordListResp) GetTotal() int64 { @@ -9171,7 +9234,7 @@ type WorkCastItem struct { func (x *WorkCastItem) Reset() { *x = WorkCastItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[83] + mi := &file_pb_bundle_proto_msgTypes[84] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9184,7 +9247,7 @@ func (x *WorkCastItem) String() string { func (*WorkCastItem) ProtoMessage() {} func (x *WorkCastItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[83] + mi := &file_pb_bundle_proto_msgTypes[84] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9197,7 +9260,7 @@ func (x *WorkCastItem) ProtoReflect() protoreflect.Message { // Deprecated: Use WorkCastItem.ProtoReflect.Descriptor instead. func (*WorkCastItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{83} + return file_pb_bundle_proto_rawDescGZIP(), []int{84} } func (x *WorkCastItem) GetArtistUuid() string { @@ -9323,7 +9386,7 @@ type GetImageWorkDetailReq struct { func (x *GetImageWorkDetailReq) Reset() { *x = GetImageWorkDetailReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[84] + mi := &file_pb_bundle_proto_msgTypes[85] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9336,7 +9399,7 @@ func (x *GetImageWorkDetailReq) String() string { func (*GetImageWorkDetailReq) ProtoMessage() {} func (x *GetImageWorkDetailReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[84] + mi := &file_pb_bundle_proto_msgTypes[85] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9349,7 +9412,7 @@ func (x *GetImageWorkDetailReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetImageWorkDetailReq.ProtoReflect.Descriptor instead. func (*GetImageWorkDetailReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{84} + return file_pb_bundle_proto_rawDescGZIP(), []int{85} } func (x *GetImageWorkDetailReq) GetWorkId() string { @@ -9370,7 +9433,7 @@ type GetVedioWorkDetailReq struct { func (x *GetVedioWorkDetailReq) Reset() { *x = GetVedioWorkDetailReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[85] + mi := &file_pb_bundle_proto_msgTypes[86] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9383,7 +9446,7 @@ func (x *GetVedioWorkDetailReq) String() string { func (*GetVedioWorkDetailReq) ProtoMessage() {} func (x *GetVedioWorkDetailReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[85] + mi := &file_pb_bundle_proto_msgTypes[86] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9396,7 +9459,7 @@ func (x *GetVedioWorkDetailReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetVedioWorkDetailReq.ProtoReflect.Descriptor instead. func (*GetVedioWorkDetailReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{85} + return file_pb_bundle_proto_rawDescGZIP(), []int{86} } func (x *GetVedioWorkDetailReq) GetWorkId() string { @@ -9420,7 +9483,7 @@ type GetImageWorkDetailResp struct { func (x *GetImageWorkDetailResp) Reset() { *x = GetImageWorkDetailResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[86] + mi := &file_pb_bundle_proto_msgTypes[87] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9433,7 +9496,7 @@ func (x *GetImageWorkDetailResp) String() string { func (*GetImageWorkDetailResp) ProtoMessage() {} func (x *GetImageWorkDetailResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[86] + mi := &file_pb_bundle_proto_msgTypes[87] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9446,7 +9509,7 @@ func (x *GetImageWorkDetailResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetImageWorkDetailResp.ProtoReflect.Descriptor instead. func (*GetImageWorkDetailResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{86} + return file_pb_bundle_proto_rawDescGZIP(), []int{87} } func (x *GetImageWorkDetailResp) GetWorkId() string { @@ -9490,7 +9553,7 @@ type GetVedioeWorkDetailResp struct { func (x *GetVedioeWorkDetailResp) Reset() { *x = GetVedioeWorkDetailResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[87] + mi := &file_pb_bundle_proto_msgTypes[88] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9503,7 +9566,7 @@ func (x *GetVedioeWorkDetailResp) String() string { func (*GetVedioeWorkDetailResp) ProtoMessage() {} func (x *GetVedioeWorkDetailResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[87] + mi := &file_pb_bundle_proto_msgTypes[88] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9516,7 +9579,7 @@ func (x *GetVedioeWorkDetailResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetVedioeWorkDetailResp.ProtoReflect.Descriptor instead. func (*GetVedioeWorkDetailResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{87} + return file_pb_bundle_proto_rawDescGZIP(), []int{88} } func (x *GetVedioeWorkDetailResp) GetWorkId() string { @@ -9553,7 +9616,7 @@ type ToBeComfirmedWorksReq struct { func (x *ToBeComfirmedWorksReq) Reset() { *x = ToBeComfirmedWorksReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[88] + mi := &file_pb_bundle_proto_msgTypes[89] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9566,7 +9629,7 @@ func (x *ToBeComfirmedWorksReq) String() string { func (*ToBeComfirmedWorksReq) ProtoMessage() {} func (x *ToBeComfirmedWorksReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[88] + mi := &file_pb_bundle_proto_msgTypes[89] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9579,7 +9642,7 @@ func (x *ToBeComfirmedWorksReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ToBeComfirmedWorksReq.ProtoReflect.Descriptor instead. func (*ToBeComfirmedWorksReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{88} + return file_pb_bundle_proto_rawDescGZIP(), []int{89} } func (x *ToBeComfirmedWorksReq) GetArtistUuid() string { @@ -9627,7 +9690,7 @@ type WorkItem struct { func (x *WorkItem) Reset() { *x = WorkItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[89] + mi := &file_pb_bundle_proto_msgTypes[90] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9640,7 +9703,7 @@ func (x *WorkItem) String() string { func (*WorkItem) ProtoMessage() {} func (x *WorkItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[89] + mi := &file_pb_bundle_proto_msgTypes[90] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9653,7 +9716,7 @@ func (x *WorkItem) ProtoReflect() protoreflect.Message { // Deprecated: Use WorkItem.ProtoReflect.Descriptor instead. func (*WorkItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{89} + return file_pb_bundle_proto_rawDescGZIP(), []int{90} } func (x *WorkItem) GetUuid() string { @@ -9767,7 +9830,7 @@ type ToBeComfirmedWorksResp struct { func (x *ToBeComfirmedWorksResp) Reset() { *x = ToBeComfirmedWorksResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[90] + mi := &file_pb_bundle_proto_msgTypes[91] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9780,7 +9843,7 @@ func (x *ToBeComfirmedWorksResp) String() string { func (*ToBeComfirmedWorksResp) ProtoMessage() {} func (x *ToBeComfirmedWorksResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[90] + mi := &file_pb_bundle_proto_msgTypes[91] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9793,7 +9856,7 @@ func (x *ToBeComfirmedWorksResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ToBeComfirmedWorksResp.ProtoReflect.Descriptor instead. func (*ToBeComfirmedWorksResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{90} + return file_pb_bundle_proto_rawDescGZIP(), []int{91} } func (x *ToBeComfirmedWorksResp) GetTotal() int64 { @@ -9829,7 +9892,7 @@ type GetBundleBalanceByUserIdReq struct { func (x *GetBundleBalanceByUserIdReq) Reset() { *x = GetBundleBalanceByUserIdReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[91] + mi := &file_pb_bundle_proto_msgTypes[92] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9842,7 +9905,7 @@ func (x *GetBundleBalanceByUserIdReq) String() string { func (*GetBundleBalanceByUserIdReq) ProtoMessage() {} func (x *GetBundleBalanceByUserIdReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[91] + mi := &file_pb_bundle_proto_msgTypes[92] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9855,7 +9918,7 @@ func (x *GetBundleBalanceByUserIdReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleBalanceByUserIdReq.ProtoReflect.Descriptor instead. func (*GetBundleBalanceByUserIdReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{91} + return file_pb_bundle_proto_rawDescGZIP(), []int{92} } func (x *GetBundleBalanceByUserIdReq) GetUserId() int32 { @@ -9918,7 +9981,7 @@ type GetBundleBalanceByUserIdResp struct { func (x *GetBundleBalanceByUserIdResp) Reset() { *x = GetBundleBalanceByUserIdResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[92] + mi := &file_pb_bundle_proto_msgTypes[93] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9931,7 +9994,7 @@ func (x *GetBundleBalanceByUserIdResp) String() string { func (*GetBundleBalanceByUserIdResp) ProtoMessage() {} func (x *GetBundleBalanceByUserIdResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[92] + mi := &file_pb_bundle_proto_msgTypes[93] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9944,7 +10007,7 @@ func (x *GetBundleBalanceByUserIdResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleBalanceByUserIdResp.ProtoReflect.Descriptor instead. func (*GetBundleBalanceByUserIdResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{92} + return file_pb_bundle_proto_rawDescGZIP(), []int{93} } func (x *GetBundleBalanceByUserIdResp) GetOrderUUID() string { @@ -10210,7 +10273,7 @@ type GetBundleOrderListByUserIdReq struct { func (x *GetBundleOrderListByUserIdReq) Reset() { *x = GetBundleOrderListByUserIdReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[93] + mi := &file_pb_bundle_proto_msgTypes[94] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10223,7 +10286,7 @@ func (x *GetBundleOrderListByUserIdReq) String() string { func (*GetBundleOrderListByUserIdReq) ProtoMessage() {} func (x *GetBundleOrderListByUserIdReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[93] + mi := &file_pb_bundle_proto_msgTypes[94] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10236,7 +10299,7 @@ func (x *GetBundleOrderListByUserIdReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleOrderListByUserIdReq.ProtoReflect.Descriptor instead. func (*GetBundleOrderListByUserIdReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{93} + return file_pb_bundle_proto_rawDescGZIP(), []int{94} } func (x *GetBundleOrderListByUserIdReq) GetUserId() int32 { @@ -10259,7 +10322,7 @@ type BalanceOrderItem struct { func (x *BalanceOrderItem) Reset() { *x = BalanceOrderItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[94] + mi := &file_pb_bundle_proto_msgTypes[95] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10272,7 +10335,7 @@ func (x *BalanceOrderItem) String() string { func (*BalanceOrderItem) ProtoMessage() {} func (x *BalanceOrderItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[94] + mi := &file_pb_bundle_proto_msgTypes[95] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10285,7 +10348,7 @@ func (x *BalanceOrderItem) ProtoReflect() protoreflect.Message { // Deprecated: Use BalanceOrderItem.ProtoReflect.Descriptor instead. func (*BalanceOrderItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{94} + return file_pb_bundle_proto_rawDescGZIP(), []int{95} } func (x *BalanceOrderItem) GetOrderUuid() string { @@ -10320,7 +10383,7 @@ type GetBundleOrderListByUserIdResp struct { func (x *GetBundleOrderListByUserIdResp) Reset() { *x = GetBundleOrderListByUserIdResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[95] + mi := &file_pb_bundle_proto_msgTypes[96] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10333,7 +10396,7 @@ func (x *GetBundleOrderListByUserIdResp) String() string { func (*GetBundleOrderListByUserIdResp) ProtoMessage() {} func (x *GetBundleOrderListByUserIdResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[95] + mi := &file_pb_bundle_proto_msgTypes[96] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10346,7 +10409,7 @@ func (x *GetBundleOrderListByUserIdResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleOrderListByUserIdResp.ProtoReflect.Descriptor instead. func (*GetBundleOrderListByUserIdResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{95} + return file_pb_bundle_proto_rawDescGZIP(), []int{96} } func (x *GetBundleOrderListByUserIdResp) GetOrderItem() []*BalanceOrderItem { @@ -10367,7 +10430,7 @@ type GetBundleBalanceByOrderUUIDReq struct { func (x *GetBundleBalanceByOrderUUIDReq) Reset() { *x = GetBundleBalanceByOrderUUIDReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[96] + mi := &file_pb_bundle_proto_msgTypes[97] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10380,7 +10443,7 @@ func (x *GetBundleBalanceByOrderUUIDReq) String() string { func (*GetBundleBalanceByOrderUUIDReq) ProtoMessage() {} func (x *GetBundleBalanceByOrderUUIDReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[96] + mi := &file_pb_bundle_proto_msgTypes[97] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10393,7 +10456,7 @@ func (x *GetBundleBalanceByOrderUUIDReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleBalanceByOrderUUIDReq.ProtoReflect.Descriptor instead. func (*GetBundleBalanceByOrderUUIDReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{96} + return file_pb_bundle_proto_rawDescGZIP(), []int{97} } func (x *GetBundleBalanceByOrderUUIDReq) GetOrderUUID() string { @@ -10415,7 +10478,7 @@ type GetBundleBalanceByOrderUUIDResp struct { func (x *GetBundleBalanceByOrderUUIDResp) Reset() { *x = GetBundleBalanceByOrderUUIDResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[97] + mi := &file_pb_bundle_proto_msgTypes[98] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10428,7 +10491,7 @@ func (x *GetBundleBalanceByOrderUUIDResp) String() string { func (*GetBundleBalanceByOrderUUIDResp) ProtoMessage() {} func (x *GetBundleBalanceByOrderUUIDResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[97] + mi := &file_pb_bundle_proto_msgTypes[98] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10441,7 +10504,7 @@ func (x *GetBundleBalanceByOrderUUIDResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleBalanceByOrderUUIDResp.ProtoReflect.Descriptor instead. func (*GetBundleBalanceByOrderUUIDResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{97} + return file_pb_bundle_proto_rawDescGZIP(), []int{98} } func (x *GetBundleBalanceByOrderUUIDResp) GetStartTime() int64 { @@ -10469,7 +10532,7 @@ type OnlyAddValueListByOrderNoRequest struct { func (x *OnlyAddValueListByOrderNoRequest) Reset() { *x = OnlyAddValueListByOrderNoRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[98] + mi := &file_pb_bundle_proto_msgTypes[99] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10482,7 +10545,7 @@ func (x *OnlyAddValueListByOrderNoRequest) String() string { func (*OnlyAddValueListByOrderNoRequest) ProtoMessage() {} func (x *OnlyAddValueListByOrderNoRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[98] + mi := &file_pb_bundle_proto_msgTypes[99] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10495,7 +10558,7 @@ func (x *OnlyAddValueListByOrderNoRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use OnlyAddValueListByOrderNoRequest.ProtoReflect.Descriptor instead. func (*OnlyAddValueListByOrderNoRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{98} + return file_pb_bundle_proto_rawDescGZIP(), []int{99} } func (x *OnlyAddValueListByOrderNoRequest) GetOrderNo() string { @@ -10516,7 +10579,7 @@ type OnlyAddValueListByOrderNoResp struct { func (x *OnlyAddValueListByOrderNoResp) Reset() { *x = OnlyAddValueListByOrderNoResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[99] + mi := &file_pb_bundle_proto_msgTypes[100] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10529,7 +10592,7 @@ func (x *OnlyAddValueListByOrderNoResp) String() string { func (*OnlyAddValueListByOrderNoResp) ProtoMessage() {} func (x *OnlyAddValueListByOrderNoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[99] + mi := &file_pb_bundle_proto_msgTypes[100] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10542,7 +10605,7 @@ func (x *OnlyAddValueListByOrderNoResp) ProtoReflect() protoreflect.Message { // Deprecated: Use OnlyAddValueListByOrderNoResp.ProtoReflect.Descriptor instead. func (*OnlyAddValueListByOrderNoResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{99} + return file_pb_bundle_proto_rawDescGZIP(), []int{100} } func (x *OnlyAddValueListByOrderNoResp) GetAddBundleInfos() []*AddBundleInfo { @@ -10567,7 +10630,7 @@ type AddBundleInfo struct { func (x *AddBundleInfo) Reset() { *x = AddBundleInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[100] + mi := &file_pb_bundle_proto_msgTypes[101] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10580,7 +10643,7 @@ func (x *AddBundleInfo) String() string { func (*AddBundleInfo) ProtoMessage() {} func (x *AddBundleInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[100] + mi := &file_pb_bundle_proto_msgTypes[101] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10593,7 +10656,7 @@ func (x *AddBundleInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AddBundleInfo.ProtoReflect.Descriptor instead. func (*AddBundleInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{100} + return file_pb_bundle_proto_rawDescGZIP(), []int{101} } func (x *AddBundleInfo) GetCustomerID() string { @@ -10644,7 +10707,7 @@ type UpdateStatusAndPayTimeBySerialNumber struct { func (x *UpdateStatusAndPayTimeBySerialNumber) Reset() { *x = UpdateStatusAndPayTimeBySerialNumber{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[101] + mi := &file_pb_bundle_proto_msgTypes[102] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10657,7 +10720,7 @@ func (x *UpdateStatusAndPayTimeBySerialNumber) String() string { func (*UpdateStatusAndPayTimeBySerialNumber) ProtoMessage() {} func (x *UpdateStatusAndPayTimeBySerialNumber) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[101] + mi := &file_pb_bundle_proto_msgTypes[102] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10670,7 +10733,7 @@ func (x *UpdateStatusAndPayTimeBySerialNumber) ProtoReflect() protoreflect.Messa // Deprecated: Use UpdateStatusAndPayTimeBySerialNumber.ProtoReflect.Descriptor instead. func (*UpdateStatusAndPayTimeBySerialNumber) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{101} + return file_pb_bundle_proto_rawDescGZIP(), []int{102} } func (x *UpdateStatusAndPayTimeBySerialNumber) GetSerialNumber() string { @@ -10705,7 +10768,7 @@ type ConfirmWorkReq struct { func (x *ConfirmWorkReq) Reset() { *x = ConfirmWorkReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[102] + mi := &file_pb_bundle_proto_msgTypes[103] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10718,7 +10781,7 @@ func (x *ConfirmWorkReq) String() string { func (*ConfirmWorkReq) ProtoMessage() {} func (x *ConfirmWorkReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[102] + mi := &file_pb_bundle_proto_msgTypes[103] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10731,7 +10794,7 @@ func (x *ConfirmWorkReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfirmWorkReq.ProtoReflect.Descriptor instead. func (*ConfirmWorkReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{102} + return file_pb_bundle_proto_rawDescGZIP(), []int{103} } func (x *ConfirmWorkReq) GetWorkUuid() string { @@ -10750,7 +10813,7 @@ type ConfirmWorkResp struct { func (x *ConfirmWorkResp) Reset() { *x = ConfirmWorkResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[103] + mi := &file_pb_bundle_proto_msgTypes[104] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10763,7 +10826,7 @@ func (x *ConfirmWorkResp) String() string { func (*ConfirmWorkResp) ProtoMessage() {} func (x *ConfirmWorkResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[103] + mi := &file_pb_bundle_proto_msgTypes[104] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10776,7 +10839,7 @@ func (x *ConfirmWorkResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfirmWorkResp.ProtoReflect.Descriptor instead. func (*ConfirmWorkResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{103} + return file_pb_bundle_proto_rawDescGZIP(), []int{104} } type ConfirmWorkItem struct { @@ -10793,7 +10856,7 @@ type ConfirmWorkItem struct { func (x *ConfirmWorkItem) Reset() { *x = ConfirmWorkItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[104] + mi := &file_pb_bundle_proto_msgTypes[105] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10806,7 +10869,7 @@ func (x *ConfirmWorkItem) String() string { func (*ConfirmWorkItem) ProtoMessage() {} func (x *ConfirmWorkItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[104] + mi := &file_pb_bundle_proto_msgTypes[105] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10819,7 +10882,7 @@ func (x *ConfirmWorkItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ConfirmWorkItem.ProtoReflect.Descriptor instead. func (*ConfirmWorkItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{104} + return file_pb_bundle_proto_rawDescGZIP(), []int{105} } func (x *ConfirmWorkItem) GetWorkUuid() string { @@ -10859,7 +10922,7 @@ type GetWaitConfirmWorkListReq struct { func (x *GetWaitConfirmWorkListReq) Reset() { *x = GetWaitConfirmWorkListReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[105] + mi := &file_pb_bundle_proto_msgTypes[106] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10872,7 +10935,7 @@ func (x *GetWaitConfirmWorkListReq) String() string { func (*GetWaitConfirmWorkListReq) ProtoMessage() {} func (x *GetWaitConfirmWorkListReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[105] + mi := &file_pb_bundle_proto_msgTypes[106] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10885,7 +10948,7 @@ func (x *GetWaitConfirmWorkListReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetWaitConfirmWorkListReq.ProtoReflect.Descriptor instead. func (*GetWaitConfirmWorkListReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{105} + return file_pb_bundle_proto_rawDescGZIP(), []int{106} } type GetWaitConfirmWorkListResp struct { @@ -10899,7 +10962,7 @@ type GetWaitConfirmWorkListResp struct { func (x *GetWaitConfirmWorkListResp) Reset() { *x = GetWaitConfirmWorkListResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[106] + mi := &file_pb_bundle_proto_msgTypes[107] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10912,7 +10975,7 @@ func (x *GetWaitConfirmWorkListResp) String() string { func (*GetWaitConfirmWorkListResp) ProtoMessage() {} func (x *GetWaitConfirmWorkListResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[106] + mi := &file_pb_bundle_proto_msgTypes[107] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10925,7 +10988,7 @@ func (x *GetWaitConfirmWorkListResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetWaitConfirmWorkListResp.ProtoReflect.Descriptor instead. func (*GetWaitConfirmWorkListResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{106} + return file_pb_bundle_proto_rawDescGZIP(), []int{107} } func (x *GetWaitConfirmWorkListResp) GetData() []*ConfirmWorkItem { @@ -10946,7 +11009,7 @@ type AutoCreateUserAndOrderRequest struct { func (x *AutoCreateUserAndOrderRequest) Reset() { *x = AutoCreateUserAndOrderRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[107] + mi := &file_pb_bundle_proto_msgTypes[108] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10959,7 +11022,7 @@ func (x *AutoCreateUserAndOrderRequest) String() string { func (*AutoCreateUserAndOrderRequest) ProtoMessage() {} func (x *AutoCreateUserAndOrderRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[107] + mi := &file_pb_bundle_proto_msgTypes[108] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10972,7 +11035,7 @@ func (x *AutoCreateUserAndOrderRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AutoCreateUserAndOrderRequest.ProtoReflect.Descriptor instead. func (*AutoCreateUserAndOrderRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{107} + return file_pb_bundle_proto_rawDescGZIP(), []int{108} } func (x *AutoCreateUserAndOrderRequest) GetNum() int32 { @@ -10993,7 +11056,7 @@ type UnfinishedInfos struct { func (x *UnfinishedInfos) Reset() { *x = UnfinishedInfos{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[108] + mi := &file_pb_bundle_proto_msgTypes[109] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11006,7 +11069,7 @@ func (x *UnfinishedInfos) String() string { func (*UnfinishedInfos) ProtoMessage() {} func (x *UnfinishedInfos) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[108] + mi := &file_pb_bundle_proto_msgTypes[109] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11019,7 +11082,7 @@ func (x *UnfinishedInfos) ProtoReflect() protoreflect.Message { // Deprecated: Use UnfinishedInfos.ProtoReflect.Descriptor instead. func (*UnfinishedInfos) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{108} + return file_pb_bundle_proto_rawDescGZIP(), []int{109} } func (x *UnfinishedInfos) GetUnfinishedInfos() []*UnfinishedInfo { @@ -11059,7 +11122,7 @@ type UnfinishedInfo struct { func (x *UnfinishedInfo) Reset() { *x = UnfinishedInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[109] + mi := &file_pb_bundle_proto_msgTypes[110] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11072,7 +11135,7 @@ func (x *UnfinishedInfo) String() string { func (*UnfinishedInfo) ProtoMessage() {} func (x *UnfinishedInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[109] + mi := &file_pb_bundle_proto_msgTypes[110] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11085,7 +11148,7 @@ func (x *UnfinishedInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UnfinishedInfo.ProtoReflect.Descriptor instead. func (*UnfinishedInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{109} + return file_pb_bundle_proto_rawDescGZIP(), []int{110} } func (x *UnfinishedInfo) GetID() uint32 { @@ -11239,7 +11302,7 @@ type SoftDeleteUnfinishedInfoRequest struct { func (x *SoftDeleteUnfinishedInfoRequest) Reset() { *x = SoftDeleteUnfinishedInfoRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[110] + mi := &file_pb_bundle_proto_msgTypes[111] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11252,7 +11315,7 @@ func (x *SoftDeleteUnfinishedInfoRequest) String() string { func (*SoftDeleteUnfinishedInfoRequest) ProtoMessage() {} func (x *SoftDeleteUnfinishedInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[110] + mi := &file_pb_bundle_proto_msgTypes[111] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11265,7 +11328,7 @@ func (x *SoftDeleteUnfinishedInfoRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SoftDeleteUnfinishedInfoRequest.ProtoReflect.Descriptor instead. func (*SoftDeleteUnfinishedInfoRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{110} + return file_pb_bundle_proto_rawDescGZIP(), []int{111} } func (x *SoftDeleteUnfinishedInfoRequest) GetID() uint32 { @@ -11286,7 +11349,7 @@ type BundleActivateReq struct { func (x *BundleActivateReq) Reset() { *x = BundleActivateReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[111] + mi := &file_pb_bundle_proto_msgTypes[112] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11299,7 +11362,7 @@ func (x *BundleActivateReq) String() string { func (*BundleActivateReq) ProtoMessage() {} func (x *BundleActivateReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[111] + mi := &file_pb_bundle_proto_msgTypes[112] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11312,7 +11375,7 @@ func (x *BundleActivateReq) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleActivateReq.ProtoReflect.Descriptor instead. func (*BundleActivateReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{111} + return file_pb_bundle_proto_rawDescGZIP(), []int{112} } func (x *BundleActivateReq) GetIds() []uint32 { @@ -11331,7 +11394,7 @@ type BundleActivateResp struct { func (x *BundleActivateResp) Reset() { *x = BundleActivateResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[112] + mi := &file_pb_bundle_proto_msgTypes[113] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11344,7 +11407,7 @@ func (x *BundleActivateResp) String() string { func (*BundleActivateResp) ProtoMessage() {} func (x *BundleActivateResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[112] + mi := &file_pb_bundle_proto_msgTypes[113] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11357,7 +11420,7 @@ func (x *BundleActivateResp) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleActivateResp.ProtoReflect.Descriptor instead. func (*BundleActivateResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{112} + return file_pb_bundle_proto_rawDescGZIP(), []int{113} } // 查询待指派任务记录 @@ -11378,7 +11441,7 @@ type TaskQueryRequest struct { func (x *TaskQueryRequest) Reset() { *x = TaskQueryRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[113] + mi := &file_pb_bundle_proto_msgTypes[114] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11391,7 +11454,7 @@ func (x *TaskQueryRequest) String() string { func (*TaskQueryRequest) ProtoMessage() {} func (x *TaskQueryRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[113] + mi := &file_pb_bundle_proto_msgTypes[114] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11404,7 +11467,7 @@ func (x *TaskQueryRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskQueryRequest.ProtoReflect.Descriptor instead. func (*TaskQueryRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{113} + return file_pb_bundle_proto_rawDescGZIP(), []int{114} } func (x *TaskQueryRequest) GetKeyword() string { @@ -11470,7 +11533,7 @@ type TaskQueryResponse struct { func (x *TaskQueryResponse) Reset() { *x = TaskQueryResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[114] + mi := &file_pb_bundle_proto_msgTypes[115] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11483,7 +11546,7 @@ func (x *TaskQueryResponse) String() string { func (*TaskQueryResponse) ProtoMessage() {} func (x *TaskQueryResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[114] + mi := &file_pb_bundle_proto_msgTypes[115] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11496,7 +11559,7 @@ func (x *TaskQueryResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskQueryResponse.ProtoReflect.Descriptor instead. func (*TaskQueryResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{114} + return file_pb_bundle_proto_rawDescGZIP(), []int{115} } func (x *TaskQueryResponse) GetTasks() []*TaskManagementInfo { @@ -11548,7 +11611,7 @@ type TaskManagementInfo struct { func (x *TaskManagementInfo) Reset() { *x = TaskManagementInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[115] + mi := &file_pb_bundle_proto_msgTypes[116] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11561,7 +11624,7 @@ func (x *TaskManagementInfo) String() string { func (*TaskManagementInfo) ProtoMessage() {} func (x *TaskManagementInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[115] + mi := &file_pb_bundle_proto_msgTypes[116] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11574,7 +11637,7 @@ func (x *TaskManagementInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskManagementInfo.ProtoReflect.Descriptor instead. func (*TaskManagementInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{115} + return file_pb_bundle_proto_rawDescGZIP(), []int{116} } func (x *TaskManagementInfo) GetSubNum() string { @@ -11679,7 +11742,7 @@ type TaskAssignRequest struct { func (x *TaskAssignRequest) Reset() { *x = TaskAssignRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[116] + mi := &file_pb_bundle_proto_msgTypes[117] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11692,7 +11755,7 @@ func (x *TaskAssignRequest) String() string { func (*TaskAssignRequest) ProtoMessage() {} func (x *TaskAssignRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[116] + mi := &file_pb_bundle_proto_msgTypes[117] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11705,7 +11768,7 @@ func (x *TaskAssignRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskAssignRequest.ProtoReflect.Descriptor instead. func (*TaskAssignRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{116} + return file_pb_bundle_proto_rawDescGZIP(), []int{117} } func (x *TaskAssignRequest) GetSubNum() string { @@ -11827,7 +11890,7 @@ type UpdatePendingCountRequest struct { func (x *UpdatePendingCountRequest) Reset() { *x = UpdatePendingCountRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[117] + mi := &file_pb_bundle_proto_msgTypes[118] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11840,7 +11903,7 @@ func (x *UpdatePendingCountRequest) String() string { func (*UpdatePendingCountRequest) ProtoMessage() {} func (x *UpdatePendingCountRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[117] + mi := &file_pb_bundle_proto_msgTypes[118] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11853,7 +11916,7 @@ func (x *UpdatePendingCountRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdatePendingCountRequest.ProtoReflect.Descriptor instead. func (*UpdatePendingCountRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{117} + return file_pb_bundle_proto_rawDescGZIP(), []int{118} } func (x *UpdatePendingCountRequest) GetSubNum() string { @@ -11938,7 +12001,7 @@ type AddHiddenTaskAssigneeRequest struct { func (x *AddHiddenTaskAssigneeRequest) Reset() { *x = AddHiddenTaskAssigneeRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[118] + mi := &file_pb_bundle_proto_msgTypes[119] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11951,7 +12014,7 @@ func (x *AddHiddenTaskAssigneeRequest) String() string { func (*AddHiddenTaskAssigneeRequest) ProtoMessage() {} func (x *AddHiddenTaskAssigneeRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[118] + mi := &file_pb_bundle_proto_msgTypes[119] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11964,7 +12027,7 @@ func (x *AddHiddenTaskAssigneeRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AddHiddenTaskAssigneeRequest.ProtoReflect.Descriptor instead. func (*AddHiddenTaskAssigneeRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{118} + return file_pb_bundle_proto_rawDescGZIP(), []int{119} } func (x *AddHiddenTaskAssigneeRequest) GetTaskAssignee() string { @@ -11993,7 +12056,7 @@ type RecentAssignRecordsRequest struct { func (x *RecentAssignRecordsRequest) Reset() { *x = RecentAssignRecordsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[119] + mi := &file_pb_bundle_proto_msgTypes[120] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12006,7 +12069,7 @@ func (x *RecentAssignRecordsRequest) String() string { func (*RecentAssignRecordsRequest) ProtoMessage() {} func (x *RecentAssignRecordsRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[119] + mi := &file_pb_bundle_proto_msgTypes[120] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12019,7 +12082,7 @@ func (x *RecentAssignRecordsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RecentAssignRecordsRequest.ProtoReflect.Descriptor instead. func (*RecentAssignRecordsRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{119} + return file_pb_bundle_proto_rawDescGZIP(), []int{120} } func (x *RecentAssignRecordsRequest) GetLimit() int32 { @@ -12041,7 +12104,7 @@ type RecentAssigneeItem struct { func (x *RecentAssigneeItem) Reset() { *x = RecentAssigneeItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[120] + mi := &file_pb_bundle_proto_msgTypes[121] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12054,7 +12117,7 @@ func (x *RecentAssigneeItem) String() string { func (*RecentAssigneeItem) ProtoMessage() {} func (x *RecentAssigneeItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[120] + mi := &file_pb_bundle_proto_msgTypes[121] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12067,7 +12130,7 @@ func (x *RecentAssigneeItem) ProtoReflect() protoreflect.Message { // Deprecated: Use RecentAssigneeItem.ProtoReflect.Descriptor instead. func (*RecentAssigneeItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{120} + return file_pb_bundle_proto_rawDescGZIP(), []int{121} } func (x *RecentAssigneeItem) GetTaskAssignee() string { @@ -12095,7 +12158,7 @@ type RecentAssignRecordsResponse struct { func (x *RecentAssignRecordsResponse) Reset() { *x = RecentAssignRecordsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[121] + mi := &file_pb_bundle_proto_msgTypes[122] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12108,7 +12171,7 @@ func (x *RecentAssignRecordsResponse) String() string { func (*RecentAssignRecordsResponse) ProtoMessage() {} func (x *RecentAssignRecordsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[121] + mi := &file_pb_bundle_proto_msgTypes[122] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12121,7 +12184,7 @@ func (x *RecentAssignRecordsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RecentAssignRecordsResponse.ProtoReflect.Descriptor instead. func (*RecentAssignRecordsResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{121} + return file_pb_bundle_proto_rawDescGZIP(), []int{122} } func (x *RecentAssignRecordsResponse) GetOperatorList() []*RecentAssigneeItem { @@ -12154,7 +12217,7 @@ type EmployeeTaskQueryRequest struct { func (x *EmployeeTaskQueryRequest) Reset() { *x = EmployeeTaskQueryRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[122] + mi := &file_pb_bundle_proto_msgTypes[123] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12167,7 +12230,7 @@ func (x *EmployeeTaskQueryRequest) String() string { func (*EmployeeTaskQueryRequest) ProtoMessage() {} func (x *EmployeeTaskQueryRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[122] + mi := &file_pb_bundle_proto_msgTypes[123] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12180,7 +12243,7 @@ func (x *EmployeeTaskQueryRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EmployeeTaskQueryRequest.ProtoReflect.Descriptor instead. func (*EmployeeTaskQueryRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{122} + return file_pb_bundle_proto_rawDescGZIP(), []int{123} } func (x *EmployeeTaskQueryRequest) GetTaskAssigneeNum() string { @@ -12281,7 +12344,7 @@ type EmployeeTaskQueryResponse struct { func (x *EmployeeTaskQueryResponse) Reset() { *x = EmployeeTaskQueryResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[123] + mi := &file_pb_bundle_proto_msgTypes[124] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12294,7 +12357,7 @@ func (x *EmployeeTaskQueryResponse) String() string { func (*EmployeeTaskQueryResponse) ProtoMessage() {} func (x *EmployeeTaskQueryResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[123] + mi := &file_pb_bundle_proto_msgTypes[124] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12307,7 +12370,7 @@ func (x *EmployeeTaskQueryResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use EmployeeTaskQueryResponse.ProtoReflect.Descriptor instead. func (*EmployeeTaskQueryResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{123} + return file_pb_bundle_proto_rawDescGZIP(), []int{124} } func (x *EmployeeTaskQueryResponse) GetRecords() []*TaskAssignRecordInfo { @@ -12374,7 +12437,7 @@ type TaskAssignRecordInfo struct { func (x *TaskAssignRecordInfo) Reset() { *x = TaskAssignRecordInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[124] + mi := &file_pb_bundle_proto_msgTypes[125] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12387,7 +12450,7 @@ func (x *TaskAssignRecordInfo) String() string { func (*TaskAssignRecordInfo) ProtoMessage() {} func (x *TaskAssignRecordInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[124] + mi := &file_pb_bundle_proto_msgTypes[125] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12400,7 +12463,7 @@ func (x *TaskAssignRecordInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskAssignRecordInfo.ProtoReflect.Descriptor instead. func (*TaskAssignRecordInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{124} + return file_pb_bundle_proto_rawDescGZIP(), []int{125} } func (x *TaskAssignRecordInfo) GetAssignRecordsUUID() string { @@ -12603,7 +12666,7 @@ type BatchAssignTaskItem struct { func (x *BatchAssignTaskItem) Reset() { *x = BatchAssignTaskItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[125] + mi := &file_pb_bundle_proto_msgTypes[126] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12616,7 +12679,7 @@ func (x *BatchAssignTaskItem) String() string { func (*BatchAssignTaskItem) ProtoMessage() {} func (x *BatchAssignTaskItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[125] + mi := &file_pb_bundle_proto_msgTypes[126] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12629,7 +12692,7 @@ func (x *BatchAssignTaskItem) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchAssignTaskItem.ProtoReflect.Descriptor instead. func (*BatchAssignTaskItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{125} + return file_pb_bundle_proto_rawDescGZIP(), []int{126} } func (x *BatchAssignTaskItem) GetSubNum() string { @@ -12741,7 +12804,7 @@ type BatchAssignTaskRequest struct { func (x *BatchAssignTaskRequest) Reset() { *x = BatchAssignTaskRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[126] + mi := &file_pb_bundle_proto_msgTypes[127] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12754,7 +12817,7 @@ func (x *BatchAssignTaskRequest) String() string { func (*BatchAssignTaskRequest) ProtoMessage() {} func (x *BatchAssignTaskRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[126] + mi := &file_pb_bundle_proto_msgTypes[127] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12767,7 +12830,7 @@ func (x *BatchAssignTaskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchAssignTaskRequest.ProtoReflect.Descriptor instead. func (*BatchAssignTaskRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{126} + return file_pb_bundle_proto_rawDescGZIP(), []int{127} } func (x *BatchAssignTaskRequest) GetItems() []*BatchAssignTaskItem { @@ -12790,7 +12853,7 @@ type CompleteTaskManuallyRequest struct { func (x *CompleteTaskManuallyRequest) Reset() { *x = CompleteTaskManuallyRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[127] + mi := &file_pb_bundle_proto_msgTypes[128] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12803,7 +12866,7 @@ func (x *CompleteTaskManuallyRequest) String() string { func (*CompleteTaskManuallyRequest) ProtoMessage() {} func (x *CompleteTaskManuallyRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[127] + mi := &file_pb_bundle_proto_msgTypes[128] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12816,7 +12879,7 @@ func (x *CompleteTaskManuallyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CompleteTaskManuallyRequest.ProtoReflect.Descriptor instead. func (*CompleteTaskManuallyRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{127} + return file_pb_bundle_proto_rawDescGZIP(), []int{128} } func (x *CompleteTaskManuallyRequest) GetAssignRecordsUUID() string { @@ -12845,7 +12908,7 @@ type TerminateTaskByUUIDRequest struct { func (x *TerminateTaskByUUIDRequest) Reset() { *x = TerminateTaskByUUIDRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[128] + mi := &file_pb_bundle_proto_msgTypes[129] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12858,7 +12921,7 @@ func (x *TerminateTaskByUUIDRequest) String() string { func (*TerminateTaskByUUIDRequest) ProtoMessage() {} func (x *TerminateTaskByUUIDRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[128] + mi := &file_pb_bundle_proto_msgTypes[129] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12871,7 +12934,7 @@ func (x *TerminateTaskByUUIDRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TerminateTaskByUUIDRequest.ProtoReflect.Descriptor instead. func (*TerminateTaskByUUIDRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{128} + return file_pb_bundle_proto_rawDescGZIP(), []int{129} } func (x *TerminateTaskByUUIDRequest) GetAssignRecordsUUID() string { @@ -12893,7 +12956,7 @@ type BatchTerminateTaskRequest struct { func (x *BatchTerminateTaskRequest) Reset() { *x = BatchTerminateTaskRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[129] + mi := &file_pb_bundle_proto_msgTypes[130] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12906,7 +12969,7 @@ func (x *BatchTerminateTaskRequest) String() string { func (*BatchTerminateTaskRequest) ProtoMessage() {} func (x *BatchTerminateTaskRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[129] + mi := &file_pb_bundle_proto_msgTypes[130] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12919,7 +12982,7 @@ func (x *BatchTerminateTaskRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchTerminateTaskRequest.ProtoReflect.Descriptor instead. func (*BatchTerminateTaskRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{129} + return file_pb_bundle_proto_rawDescGZIP(), []int{130} } func (x *BatchTerminateTaskRequest) GetAssignRecordsUUIDs() []string { @@ -12940,7 +13003,7 @@ type RevertTaskCompletionByUUIDItemRequest struct { func (x *RevertTaskCompletionByUUIDItemRequest) Reset() { *x = RevertTaskCompletionByUUIDItemRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[130] + mi := &file_pb_bundle_proto_msgTypes[131] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12953,7 +13016,7 @@ func (x *RevertTaskCompletionByUUIDItemRequest) String() string { func (*RevertTaskCompletionByUUIDItemRequest) ProtoMessage() {} func (x *RevertTaskCompletionByUUIDItemRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[130] + mi := &file_pb_bundle_proto_msgTypes[131] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12966,7 +13029,7 @@ func (x *RevertTaskCompletionByUUIDItemRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use RevertTaskCompletionByUUIDItemRequest.ProtoReflect.Descriptor instead. func (*RevertTaskCompletionByUUIDItemRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{130} + return file_pb_bundle_proto_rawDescGZIP(), []int{131} } func (x *RevertTaskCompletionByUUIDItemRequest) GetUuid() string { @@ -12987,7 +13050,7 @@ type GetTaskActualStatusByUUIDRequest struct { func (x *GetTaskActualStatusByUUIDRequest) Reset() { *x = GetTaskActualStatusByUUIDRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[131] + mi := &file_pb_bundle_proto_msgTypes[132] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13000,7 +13063,7 @@ func (x *GetTaskActualStatusByUUIDRequest) String() string { func (*GetTaskActualStatusByUUIDRequest) ProtoMessage() {} func (x *GetTaskActualStatusByUUIDRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[131] + mi := &file_pb_bundle_proto_msgTypes[132] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13013,7 +13076,7 @@ func (x *GetTaskActualStatusByUUIDRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetTaskActualStatusByUUIDRequest.ProtoReflect.Descriptor instead. func (*GetTaskActualStatusByUUIDRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{131} + return file_pb_bundle_proto_rawDescGZIP(), []int{132} } func (x *GetTaskActualStatusByUUIDRequest) GetAssignRecordsUUID() string { @@ -13034,7 +13097,7 @@ type GetTaskActualStatusByUUIDResponse struct { func (x *GetTaskActualStatusByUUIDResponse) Reset() { *x = GetTaskActualStatusByUUIDResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[132] + mi := &file_pb_bundle_proto_msgTypes[133] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13047,7 +13110,7 @@ func (x *GetTaskActualStatusByUUIDResponse) String() string { func (*GetTaskActualStatusByUUIDResponse) ProtoMessage() {} func (x *GetTaskActualStatusByUUIDResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[132] + mi := &file_pb_bundle_proto_msgTypes[133] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13060,7 +13123,7 @@ func (x *GetTaskActualStatusByUUIDResponse) ProtoReflect() protoreflect.Message // Deprecated: Use GetTaskActualStatusByUUIDResponse.ProtoReflect.Descriptor instead. func (*GetTaskActualStatusByUUIDResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{132} + return file_pb_bundle_proto_rawDescGZIP(), []int{133} } func (x *GetTaskActualStatusByUUIDResponse) GetActualStatus() int32 { @@ -13087,7 +13150,7 @@ type UpdateTaskProgressRequest struct { func (x *UpdateTaskProgressRequest) Reset() { *x = UpdateTaskProgressRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[133] + mi := &file_pb_bundle_proto_msgTypes[134] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13100,7 +13163,7 @@ func (x *UpdateTaskProgressRequest) String() string { func (*UpdateTaskProgressRequest) ProtoMessage() {} func (x *UpdateTaskProgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[133] + mi := &file_pb_bundle_proto_msgTypes[134] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13113,7 +13176,7 @@ func (x *UpdateTaskProgressRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateTaskProgressRequest.ProtoReflect.Descriptor instead. func (*UpdateTaskProgressRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{133} + return file_pb_bundle_proto_rawDescGZIP(), []int{134} } func (x *UpdateTaskProgressRequest) GetAssignRecordsUUID() string { @@ -13182,7 +13245,7 @@ type TaskAssignRecordsQueryRequest struct { func (x *TaskAssignRecordsQueryRequest) Reset() { *x = TaskAssignRecordsQueryRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[134] + mi := &file_pb_bundle_proto_msgTypes[135] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13195,7 +13258,7 @@ func (x *TaskAssignRecordsQueryRequest) String() string { func (*TaskAssignRecordsQueryRequest) ProtoMessage() {} func (x *TaskAssignRecordsQueryRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[134] + mi := &file_pb_bundle_proto_msgTypes[135] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13208,7 +13271,7 @@ func (x *TaskAssignRecordsQueryRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskAssignRecordsQueryRequest.ProtoReflect.Descriptor instead. func (*TaskAssignRecordsQueryRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{134} + return file_pb_bundle_proto_rawDescGZIP(), []int{135} } func (x *TaskAssignRecordsQueryRequest) GetKeyword() string { @@ -13313,7 +13376,7 @@ type ComResponse struct { func (x *ComResponse) Reset() { *x = ComResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[135] + mi := &file_pb_bundle_proto_msgTypes[136] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13326,7 +13389,7 @@ func (x *ComResponse) String() string { func (*ComResponse) ProtoMessage() {} func (x *ComResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[135] + mi := &file_pb_bundle_proto_msgTypes[136] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13339,7 +13402,7 @@ func (x *ComResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ComResponse.ProtoReflect.Descriptor instead. func (*ComResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{135} + return file_pb_bundle_proto_rawDescGZIP(), []int{136} } func (x *ComResponse) GetMsg() string { @@ -13364,7 +13427,7 @@ type TaskAssignRecordsQueryResponse struct { func (x *TaskAssignRecordsQueryResponse) Reset() { *x = TaskAssignRecordsQueryResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[136] + mi := &file_pb_bundle_proto_msgTypes[137] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13377,7 +13440,7 @@ func (x *TaskAssignRecordsQueryResponse) String() string { func (*TaskAssignRecordsQueryResponse) ProtoMessage() {} func (x *TaskAssignRecordsQueryResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[136] + mi := &file_pb_bundle_proto_msgTypes[137] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13390,7 +13453,7 @@ func (x *TaskAssignRecordsQueryResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskAssignRecordsQueryResponse.ProtoReflect.Descriptor instead. func (*TaskAssignRecordsQueryResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{136} + return file_pb_bundle_proto_rawDescGZIP(), []int{137} } func (x *TaskAssignRecordsQueryResponse) GetRecords() []*TaskAssignRecordInfo { @@ -13451,7 +13514,7 @@ type TaskAssignRecordsSummary struct { func (x *TaskAssignRecordsSummary) Reset() { *x = TaskAssignRecordsSummary{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[137] + mi := &file_pb_bundle_proto_msgTypes[138] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13464,7 +13527,7 @@ func (x *TaskAssignRecordsSummary) String() string { func (*TaskAssignRecordsSummary) ProtoMessage() {} func (x *TaskAssignRecordsSummary) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[137] + mi := &file_pb_bundle_proto_msgTypes[138] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13477,7 +13540,7 @@ func (x *TaskAssignRecordsSummary) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskAssignRecordsSummary.ProtoReflect.Descriptor instead. func (*TaskAssignRecordsSummary) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{137} + return file_pb_bundle_proto_rawDescGZIP(), []int{138} } func (x *TaskAssignRecordsSummary) GetTotalPendingVideoScriptCount() int32 { @@ -13605,7 +13668,7 @@ type ArtistUploadStatsItem struct { func (x *ArtistUploadStatsItem) Reset() { *x = ArtistUploadStatsItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[138] + mi := &file_pb_bundle_proto_msgTypes[139] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13618,7 +13681,7 @@ func (x *ArtistUploadStatsItem) String() string { func (*ArtistUploadStatsItem) ProtoMessage() {} func (x *ArtistUploadStatsItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[138] + mi := &file_pb_bundle_proto_msgTypes[139] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13631,7 +13694,7 @@ func (x *ArtistUploadStatsItem) ProtoReflect() protoreflect.Message { // Deprecated: Use ArtistUploadStatsItem.ProtoReflect.Descriptor instead. func (*ArtistUploadStatsItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{138} + return file_pb_bundle_proto_rawDescGZIP(), []int{139} } func (x *ArtistUploadStatsItem) GetSubNum() string { @@ -13901,7 +13964,7 @@ type ArtistUploadStatsResponse struct { func (x *ArtistUploadStatsResponse) Reset() { *x = ArtistUploadStatsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[139] + mi := &file_pb_bundle_proto_msgTypes[140] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13914,7 +13977,7 @@ func (x *ArtistUploadStatsResponse) String() string { func (*ArtistUploadStatsResponse) ProtoMessage() {} func (x *ArtistUploadStatsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[139] + mi := &file_pb_bundle_proto_msgTypes[140] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13927,7 +13990,7 @@ func (x *ArtistUploadStatsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ArtistUploadStatsResponse.ProtoReflect.Descriptor instead. func (*ArtistUploadStatsResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{139} + return file_pb_bundle_proto_rawDescGZIP(), []int{140} } func (x *ArtistUploadStatsResponse) GetItems() []*ArtistUploadStatsItem { @@ -13971,7 +14034,7 @@ type PendingUploadBreakdownRequest struct { func (x *PendingUploadBreakdownRequest) Reset() { *x = PendingUploadBreakdownRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[140] + mi := &file_pb_bundle_proto_msgTypes[141] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13984,7 +14047,7 @@ func (x *PendingUploadBreakdownRequest) String() string { func (*PendingUploadBreakdownRequest) ProtoMessage() {} func (x *PendingUploadBreakdownRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[140] + mi := &file_pb_bundle_proto_msgTypes[141] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13997,7 +14060,7 @@ func (x *PendingUploadBreakdownRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PendingUploadBreakdownRequest.ProtoReflect.Descriptor instead. func (*PendingUploadBreakdownRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{140} + return file_pb_bundle_proto_rawDescGZIP(), []int{141} } func (x *PendingUploadBreakdownRequest) GetSubNums() []string { @@ -14041,7 +14104,7 @@ type PendingUploadBreakdownItem struct { func (x *PendingUploadBreakdownItem) Reset() { *x = PendingUploadBreakdownItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[141] + mi := &file_pb_bundle_proto_msgTypes[142] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14054,7 +14117,7 @@ func (x *PendingUploadBreakdownItem) String() string { func (*PendingUploadBreakdownItem) ProtoMessage() {} func (x *PendingUploadBreakdownItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[141] + mi := &file_pb_bundle_proto_msgTypes[142] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14067,7 +14130,7 @@ func (x *PendingUploadBreakdownItem) ProtoReflect() protoreflect.Message { // Deprecated: Use PendingUploadBreakdownItem.ProtoReflect.Descriptor instead. func (*PendingUploadBreakdownItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{141} + return file_pb_bundle_proto_rawDescGZIP(), []int{142} } func (x *PendingUploadBreakdownItem) GetSubNum() string { @@ -14154,7 +14217,7 @@ type PendingUploadBreakdownResponse struct { func (x *PendingUploadBreakdownResponse) Reset() { *x = PendingUploadBreakdownResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[142] + mi := &file_pb_bundle_proto_msgTypes[143] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14167,7 +14230,7 @@ func (x *PendingUploadBreakdownResponse) String() string { func (*PendingUploadBreakdownResponse) ProtoMessage() {} func (x *PendingUploadBreakdownResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[142] + mi := &file_pb_bundle_proto_msgTypes[143] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14180,7 +14243,7 @@ func (x *PendingUploadBreakdownResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PendingUploadBreakdownResponse.ProtoReflect.Descriptor instead. func (*PendingUploadBreakdownResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{142} + return file_pb_bundle_proto_rawDescGZIP(), []int{143} } func (x *PendingUploadBreakdownResponse) GetItems() []*PendingUploadBreakdownItem { @@ -14225,7 +14288,7 @@ type PendingAssignRequest struct { func (x *PendingAssignRequest) Reset() { *x = PendingAssignRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[143] + mi := &file_pb_bundle_proto_msgTypes[144] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14238,7 +14301,7 @@ func (x *PendingAssignRequest) String() string { func (*PendingAssignRequest) ProtoMessage() {} func (x *PendingAssignRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[143] + mi := &file_pb_bundle_proto_msgTypes[144] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14251,7 +14314,7 @@ func (x *PendingAssignRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PendingAssignRequest.ProtoReflect.Descriptor instead. func (*PendingAssignRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{143} + return file_pb_bundle_proto_rawDescGZIP(), []int{144} } func (x *PendingAssignRequest) GetSubNums() []string { @@ -14294,7 +14357,7 @@ type PendingAssignItem struct { func (x *PendingAssignItem) Reset() { *x = PendingAssignItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[144] + mi := &file_pb_bundle_proto_msgTypes[145] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14307,7 +14370,7 @@ func (x *PendingAssignItem) String() string { func (*PendingAssignItem) ProtoMessage() {} func (x *PendingAssignItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[144] + mi := &file_pb_bundle_proto_msgTypes[145] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14320,7 +14383,7 @@ func (x *PendingAssignItem) ProtoReflect() protoreflect.Message { // Deprecated: Use PendingAssignItem.ProtoReflect.Descriptor instead. func (*PendingAssignItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{144} + return file_pb_bundle_proto_rawDescGZIP(), []int{145} } func (x *PendingAssignItem) GetSubNum() string { @@ -14394,7 +14457,7 @@ type PendingAssignResponse struct { func (x *PendingAssignResponse) Reset() { *x = PendingAssignResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[145] + mi := &file_pb_bundle_proto_msgTypes[146] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14407,7 +14470,7 @@ func (x *PendingAssignResponse) String() string { func (*PendingAssignResponse) ProtoMessage() {} func (x *PendingAssignResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[145] + mi := &file_pb_bundle_proto_msgTypes[146] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14420,7 +14483,7 @@ func (x *PendingAssignResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PendingAssignResponse.ProtoReflect.Descriptor instead. func (*PendingAssignResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{145} + return file_pb_bundle_proto_rawDescGZIP(), []int{146} } func (x *PendingAssignResponse) GetItems() []*PendingAssignItem { @@ -14464,7 +14527,7 @@ type ArtistBundleBalanceRequest struct { func (x *ArtistBundleBalanceRequest) Reset() { *x = ArtistBundleBalanceRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[146] + mi := &file_pb_bundle_proto_msgTypes[147] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14477,7 +14540,7 @@ func (x *ArtistBundleBalanceRequest) String() string { func (*ArtistBundleBalanceRequest) ProtoMessage() {} func (x *ArtistBundleBalanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[146] + mi := &file_pb_bundle_proto_msgTypes[147] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14490,7 +14553,7 @@ func (x *ArtistBundleBalanceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ArtistBundleBalanceRequest.ProtoReflect.Descriptor instead. func (*ArtistBundleBalanceRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{146} + return file_pb_bundle_proto_rawDescGZIP(), []int{147} } func (x *ArtistBundleBalanceRequest) GetCustomerNum() string { @@ -14534,7 +14597,7 @@ type ArtistBundleBalanceResponse struct { func (x *ArtistBundleBalanceResponse) Reset() { *x = ArtistBundleBalanceResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[147] + mi := &file_pb_bundle_proto_msgTypes[148] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14547,7 +14610,7 @@ func (x *ArtistBundleBalanceResponse) String() string { func (*ArtistBundleBalanceResponse) ProtoMessage() {} func (x *ArtistBundleBalanceResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[147] + mi := &file_pb_bundle_proto_msgTypes[148] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14560,7 +14623,7 @@ func (x *ArtistBundleBalanceResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ArtistBundleBalanceResponse.ProtoReflect.Descriptor instead. func (*ArtistBundleBalanceResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{147} + return file_pb_bundle_proto_rawDescGZIP(), []int{148} } func (x *ArtistBundleBalanceResponse) GetBundleVideoBalance() int32 { @@ -14660,7 +14723,7 @@ type SetBundleBalanceLayoutReq struct { func (x *SetBundleBalanceLayoutReq) Reset() { *x = SetBundleBalanceLayoutReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[148] + mi := &file_pb_bundle_proto_msgTypes[149] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14673,7 +14736,7 @@ func (x *SetBundleBalanceLayoutReq) String() string { func (*SetBundleBalanceLayoutReq) ProtoMessage() {} func (x *SetBundleBalanceLayoutReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[148] + mi := &file_pb_bundle_proto_msgTypes[149] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14686,7 +14749,7 @@ func (x *SetBundleBalanceLayoutReq) ProtoReflect() protoreflect.Message { // Deprecated: Use SetBundleBalanceLayoutReq.ProtoReflect.Descriptor instead. func (*SetBundleBalanceLayoutReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{148} + return file_pb_bundle_proto_rawDescGZIP(), []int{149} } func (x *SetBundleBalanceLayoutReq) GetUserId() uint32 { @@ -14719,7 +14782,7 @@ type SetBundleBalanceLayoutResp struct { func (x *SetBundleBalanceLayoutResp) Reset() { *x = SetBundleBalanceLayoutResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[149] + mi := &file_pb_bundle_proto_msgTypes[150] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14732,7 +14795,7 @@ func (x *SetBundleBalanceLayoutResp) String() string { func (*SetBundleBalanceLayoutResp) ProtoMessage() {} func (x *SetBundleBalanceLayoutResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[149] + mi := &file_pb_bundle_proto_msgTypes[150] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14745,7 +14808,7 @@ func (x *SetBundleBalanceLayoutResp) ProtoReflect() protoreflect.Message { // Deprecated: Use SetBundleBalanceLayoutResp.ProtoReflect.Descriptor instead. func (*SetBundleBalanceLayoutResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{149} + return file_pb_bundle_proto_rawDescGZIP(), []int{150} } type GetBundleBalanceLayoutReq struct { @@ -14760,7 +14823,7 @@ type GetBundleBalanceLayoutReq struct { func (x *GetBundleBalanceLayoutReq) Reset() { *x = GetBundleBalanceLayoutReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[150] + mi := &file_pb_bundle_proto_msgTypes[151] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14773,7 +14836,7 @@ func (x *GetBundleBalanceLayoutReq) String() string { func (*GetBundleBalanceLayoutReq) ProtoMessage() {} func (x *GetBundleBalanceLayoutReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[150] + mi := &file_pb_bundle_proto_msgTypes[151] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14786,7 +14849,7 @@ func (x *GetBundleBalanceLayoutReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleBalanceLayoutReq.ProtoReflect.Descriptor instead. func (*GetBundleBalanceLayoutReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{150} + return file_pb_bundle_proto_rawDescGZIP(), []int{151} } func (x *GetBundleBalanceLayoutReq) GetUserId() uint32 { @@ -14814,7 +14877,7 @@ type GetBundleBalanceLayoutResp struct { func (x *GetBundleBalanceLayoutResp) Reset() { *x = GetBundleBalanceLayoutResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[151] + mi := &file_pb_bundle_proto_msgTypes[152] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14827,7 +14890,7 @@ func (x *GetBundleBalanceLayoutResp) String() string { func (*GetBundleBalanceLayoutResp) ProtoMessage() {} func (x *GetBundleBalanceLayoutResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[151] + mi := &file_pb_bundle_proto_msgTypes[152] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14840,7 +14903,7 @@ func (x *GetBundleBalanceLayoutResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleBalanceLayoutResp.ProtoReflect.Descriptor instead. func (*GetBundleBalanceLayoutResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{151} + return file_pb_bundle_proto_rawDescGZIP(), []int{152} } func (x *GetBundleBalanceLayoutResp) GetData() string { @@ -14859,7 +14922,7 @@ type GetPendingTaskLayoutReq struct { func (x *GetPendingTaskLayoutReq) Reset() { *x = GetPendingTaskLayoutReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[152] + mi := &file_pb_bundle_proto_msgTypes[153] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14872,7 +14935,7 @@ func (x *GetPendingTaskLayoutReq) String() string { func (*GetPendingTaskLayoutReq) ProtoMessage() {} func (x *GetPendingTaskLayoutReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[152] + mi := &file_pb_bundle_proto_msgTypes[153] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14885,7 +14948,7 @@ func (x *GetPendingTaskLayoutReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPendingTaskLayoutReq.ProtoReflect.Descriptor instead. func (*GetPendingTaskLayoutReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{152} + return file_pb_bundle_proto_rawDescGZIP(), []int{153} } type GetPendingTaskLayoutResp struct { @@ -14899,7 +14962,7 @@ type GetPendingTaskLayoutResp struct { func (x *GetPendingTaskLayoutResp) Reset() { *x = GetPendingTaskLayoutResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[153] + mi := &file_pb_bundle_proto_msgTypes[154] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14912,7 +14975,7 @@ func (x *GetPendingTaskLayoutResp) String() string { func (*GetPendingTaskLayoutResp) ProtoMessage() {} func (x *GetPendingTaskLayoutResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[153] + mi := &file_pb_bundle_proto_msgTypes[154] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14925,7 +14988,7 @@ func (x *GetPendingTaskLayoutResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetPendingTaskLayoutResp.ProtoReflect.Descriptor instead. func (*GetPendingTaskLayoutResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{153} + return file_pb_bundle_proto_rawDescGZIP(), []int{154} } func (x *GetPendingTaskLayoutResp) GetData() string { @@ -14946,7 +15009,7 @@ type SetPendingTaskLayoutReq struct { func (x *SetPendingTaskLayoutReq) Reset() { *x = SetPendingTaskLayoutReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[154] + mi := &file_pb_bundle_proto_msgTypes[155] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14959,7 +15022,7 @@ func (x *SetPendingTaskLayoutReq) String() string { func (*SetPendingTaskLayoutReq) ProtoMessage() {} func (x *SetPendingTaskLayoutReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[154] + mi := &file_pb_bundle_proto_msgTypes[155] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14972,7 +15035,7 @@ func (x *SetPendingTaskLayoutReq) ProtoReflect() protoreflect.Message { // Deprecated: Use SetPendingTaskLayoutReq.ProtoReflect.Descriptor instead. func (*SetPendingTaskLayoutReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{154} + return file_pb_bundle_proto_rawDescGZIP(), []int{155} } func (x *SetPendingTaskLayoutReq) GetData() string { @@ -14991,7 +15054,7 @@ type SetPendingTaskLayoutResp struct { func (x *SetPendingTaskLayoutResp) Reset() { *x = SetPendingTaskLayoutResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[155] + mi := &file_pb_bundle_proto_msgTypes[156] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15004,7 +15067,7 @@ func (x *SetPendingTaskLayoutResp) String() string { func (*SetPendingTaskLayoutResp) ProtoMessage() {} func (x *SetPendingTaskLayoutResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[155] + mi := &file_pb_bundle_proto_msgTypes[156] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15017,7 +15080,7 @@ func (x *SetPendingTaskLayoutResp) ProtoReflect() protoreflect.Message { // Deprecated: Use SetPendingTaskLayoutResp.ProtoReflect.Descriptor instead. func (*SetPendingTaskLayoutResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{155} + return file_pb_bundle_proto_rawDescGZIP(), []int{156} } type TaskWorkLogQueryRequest struct { @@ -15038,7 +15101,7 @@ type TaskWorkLogQueryRequest struct { func (x *TaskWorkLogQueryRequest) Reset() { *x = TaskWorkLogQueryRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[156] + mi := &file_pb_bundle_proto_msgTypes[157] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15051,7 +15114,7 @@ func (x *TaskWorkLogQueryRequest) String() string { func (*TaskWorkLogQueryRequest) ProtoMessage() {} func (x *TaskWorkLogQueryRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[156] + mi := &file_pb_bundle_proto_msgTypes[157] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15064,7 +15127,7 @@ func (x *TaskWorkLogQueryRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskWorkLogQueryRequest.ProtoReflect.Descriptor instead. func (*TaskWorkLogQueryRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{156} + return file_pb_bundle_proto_rawDescGZIP(), []int{157} } func (x *TaskWorkLogQueryRequest) GetAssignRecordsUUID() string { @@ -15150,7 +15213,7 @@ type TaskWorkLogInfo struct { func (x *TaskWorkLogInfo) Reset() { *x = TaskWorkLogInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[157] + mi := &file_pb_bundle_proto_msgTypes[158] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15163,7 +15226,7 @@ func (x *TaskWorkLogInfo) String() string { func (*TaskWorkLogInfo) ProtoMessage() {} func (x *TaskWorkLogInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[157] + mi := &file_pb_bundle_proto_msgTypes[158] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15176,7 +15239,7 @@ func (x *TaskWorkLogInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskWorkLogInfo.ProtoReflect.Descriptor instead. func (*TaskWorkLogInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{157} + return file_pb_bundle_proto_rawDescGZIP(), []int{158} } func (x *TaskWorkLogInfo) GetWorkLogUUID() string { @@ -15312,7 +15375,7 @@ type TaskWorkLogQueryResponse struct { func (x *TaskWorkLogQueryResponse) Reset() { *x = TaskWorkLogQueryResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[158] + mi := &file_pb_bundle_proto_msgTypes[159] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15325,7 +15388,7 @@ func (x *TaskWorkLogQueryResponse) String() string { func (*TaskWorkLogQueryResponse) ProtoMessage() {} func (x *TaskWorkLogQueryResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[158] + mi := &file_pb_bundle_proto_msgTypes[159] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15338,7 +15401,7 @@ func (x *TaskWorkLogQueryResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use TaskWorkLogQueryResponse.ProtoReflect.Descriptor instead. func (*TaskWorkLogQueryResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{158} + return file_pb_bundle_proto_rawDescGZIP(), []int{159} } func (x *TaskWorkLogQueryResponse) GetRecords() []*TaskWorkLogInfo { @@ -15393,7 +15456,7 @@ type CreateTaskWorkLogRequest struct { func (x *CreateTaskWorkLogRequest) Reset() { *x = CreateTaskWorkLogRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[159] + mi := &file_pb_bundle_proto_msgTypes[160] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15406,7 +15469,7 @@ func (x *CreateTaskWorkLogRequest) String() string { func (*CreateTaskWorkLogRequest) ProtoMessage() {} func (x *CreateTaskWorkLogRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[159] + mi := &file_pb_bundle_proto_msgTypes[160] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15419,7 +15482,7 @@ func (x *CreateTaskWorkLogRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateTaskWorkLogRequest.ProtoReflect.Descriptor instead. func (*CreateTaskWorkLogRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{159} + return file_pb_bundle_proto_rawDescGZIP(), []int{160} } func (x *CreateTaskWorkLogRequest) GetAssignRecordsUUID() string { @@ -15526,7 +15589,7 @@ type MetricsBusinessReq struct { func (x *MetricsBusinessReq) Reset() { *x = MetricsBusinessReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[160] + mi := &file_pb_bundle_proto_msgTypes[161] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15539,7 +15602,7 @@ func (x *MetricsBusinessReq) String() string { func (*MetricsBusinessReq) ProtoMessage() {} func (x *MetricsBusinessReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[160] + mi := &file_pb_bundle_proto_msgTypes[161] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15552,7 +15615,7 @@ func (x *MetricsBusinessReq) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsBusinessReq.ProtoReflect.Descriptor instead. func (*MetricsBusinessReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{160} + return file_pb_bundle_proto_rawDescGZIP(), []int{161} } func (x *MetricsBusinessReq) GetBundleUuid() string { @@ -15629,7 +15692,7 @@ type MetricsBusinessResp struct { func (x *MetricsBusinessResp) Reset() { *x = MetricsBusinessResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[161] + mi := &file_pb_bundle_proto_msgTypes[162] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15642,7 +15705,7 @@ func (x *MetricsBusinessResp) String() string { func (*MetricsBusinessResp) ProtoMessage() {} func (x *MetricsBusinessResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[161] + mi := &file_pb_bundle_proto_msgTypes[162] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15655,7 +15718,7 @@ func (x *MetricsBusinessResp) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsBusinessResp.ProtoReflect.Descriptor instead. func (*MetricsBusinessResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{161} + return file_pb_bundle_proto_rawDescGZIP(), []int{162} } func (x *MetricsBusinessResp) GetTotalBundlePaymentAmount() string { @@ -15915,7 +15978,7 @@ type MetricsOperatingCreateReq struct { func (x *MetricsOperatingCreateReq) Reset() { *x = MetricsOperatingCreateReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[162] + mi := &file_pb_bundle_proto_msgTypes[163] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -15928,7 +15991,7 @@ func (x *MetricsOperatingCreateReq) String() string { func (*MetricsOperatingCreateReq) ProtoMessage() {} func (x *MetricsOperatingCreateReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[162] + mi := &file_pb_bundle_proto_msgTypes[163] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -15941,7 +16004,7 @@ func (x *MetricsOperatingCreateReq) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsOperatingCreateReq.ProtoReflect.Descriptor instead. func (*MetricsOperatingCreateReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{162} + return file_pb_bundle_proto_rawDescGZIP(), []int{163} } func (x *MetricsOperatingCreateReq) GetStart() string { @@ -16009,7 +16072,7 @@ type MetricsOperatingCreateResp struct { func (x *MetricsOperatingCreateResp) Reset() { *x = MetricsOperatingCreateResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[163] + mi := &file_pb_bundle_proto_msgTypes[164] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16022,7 +16085,7 @@ func (x *MetricsOperatingCreateResp) String() string { func (*MetricsOperatingCreateResp) ProtoMessage() {} func (x *MetricsOperatingCreateResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[163] + mi := &file_pb_bundle_proto_msgTypes[164] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16035,7 +16098,7 @@ func (x *MetricsOperatingCreateResp) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsOperatingCreateResp.ProtoReflect.Descriptor instead. func (*MetricsOperatingCreateResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{163} + return file_pb_bundle_proto_rawDescGZIP(), []int{164} } func (x *MetricsOperatingCreateResp) GetNewPendingUploadBundleVideoCount() int64 { @@ -16301,7 +16364,7 @@ type MetricsOperatingStatusReq struct { func (x *MetricsOperatingStatusReq) Reset() { *x = MetricsOperatingStatusReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[164] + mi := &file_pb_bundle_proto_msgTypes[165] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16314,7 +16377,7 @@ func (x *MetricsOperatingStatusReq) String() string { func (*MetricsOperatingStatusReq) ProtoMessage() {} func (x *MetricsOperatingStatusReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[164] + mi := &file_pb_bundle_proto_msgTypes[165] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16327,7 +16390,7 @@ func (x *MetricsOperatingStatusReq) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsOperatingStatusReq.ProtoReflect.Descriptor instead. func (*MetricsOperatingStatusReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{164} + return file_pb_bundle_proto_rawDescGZIP(), []int{165} } func (x *MetricsOperatingStatusReq) GetDate() string { @@ -16386,7 +16449,7 @@ type MetricsOperatingStatusResp struct { func (x *MetricsOperatingStatusResp) Reset() { *x = MetricsOperatingStatusResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[165] + mi := &file_pb_bundle_proto_msgTypes[166] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16399,7 +16462,7 @@ func (x *MetricsOperatingStatusResp) String() string { func (*MetricsOperatingStatusResp) ProtoMessage() {} func (x *MetricsOperatingStatusResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[165] + mi := &file_pb_bundle_proto_msgTypes[166] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16412,7 +16475,7 @@ func (x *MetricsOperatingStatusResp) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsOperatingStatusResp.ProtoReflect.Descriptor instead. func (*MetricsOperatingStatusResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{165} + return file_pb_bundle_proto_rawDescGZIP(), []int{166} } func (x *MetricsOperatingStatusResp) GetDraftVideoCount() int64 { @@ -16672,7 +16735,7 @@ type MetricsBundlePurchaseExportReq struct { func (x *MetricsBundlePurchaseExportReq) Reset() { *x = MetricsBundlePurchaseExportReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[166] + mi := &file_pb_bundle_proto_msgTypes[167] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16685,7 +16748,7 @@ func (x *MetricsBundlePurchaseExportReq) String() string { func (*MetricsBundlePurchaseExportReq) ProtoMessage() {} func (x *MetricsBundlePurchaseExportReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[166] + mi := &file_pb_bundle_proto_msgTypes[167] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16698,7 +16761,7 @@ func (x *MetricsBundlePurchaseExportReq) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsBundlePurchaseExportReq.ProtoReflect.Descriptor instead. func (*MetricsBundlePurchaseExportReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{166} + return file_pb_bundle_proto_rawDescGZIP(), []int{167} } func (x *MetricsBundlePurchaseExportReq) GetMonth() string { @@ -16726,7 +16789,7 @@ type MetricsBundlePurchaseExportResp struct { func (x *MetricsBundlePurchaseExportResp) Reset() { *x = MetricsBundlePurchaseExportResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[167] + mi := &file_pb_bundle_proto_msgTypes[168] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16739,7 +16802,7 @@ func (x *MetricsBundlePurchaseExportResp) String() string { func (*MetricsBundlePurchaseExportResp) ProtoMessage() {} func (x *MetricsBundlePurchaseExportResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[167] + mi := &file_pb_bundle_proto_msgTypes[168] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16752,7 +16815,7 @@ func (x *MetricsBundlePurchaseExportResp) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsBundlePurchaseExportResp.ProtoReflect.Descriptor instead. func (*MetricsBundlePurchaseExportResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{167} + return file_pb_bundle_proto_rawDescGZIP(), []int{168} } func (x *MetricsBundlePurchaseExportResp) GetData() []*MetricsBundlePurchaseItem { @@ -16785,7 +16848,7 @@ type MetricsBundlePurchaseItem struct { func (x *MetricsBundlePurchaseItem) Reset() { *x = MetricsBundlePurchaseItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[168] + mi := &file_pb_bundle_proto_msgTypes[169] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16798,7 +16861,7 @@ func (x *MetricsBundlePurchaseItem) String() string { func (*MetricsBundlePurchaseItem) ProtoMessage() {} func (x *MetricsBundlePurchaseItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[168] + mi := &file_pb_bundle_proto_msgTypes[169] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16811,7 +16874,7 @@ func (x *MetricsBundlePurchaseItem) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsBundlePurchaseItem.ProtoReflect.Descriptor instead. func (*MetricsBundlePurchaseItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{168} + return file_pb_bundle_proto_rawDescGZIP(), []int{169} } func (x *MetricsBundlePurchaseItem) GetOrderNo() string { @@ -16916,7 +16979,7 @@ type MetricsArtistAccountExportReq struct { func (x *MetricsArtistAccountExportReq) Reset() { *x = MetricsArtistAccountExportReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[169] + mi := &file_pb_bundle_proto_msgTypes[170] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16929,7 +16992,7 @@ func (x *MetricsArtistAccountExportReq) String() string { func (*MetricsArtistAccountExportReq) ProtoMessage() {} func (x *MetricsArtistAccountExportReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[169] + mi := &file_pb_bundle_proto_msgTypes[170] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16942,7 +17005,7 @@ func (x *MetricsArtistAccountExportReq) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsArtistAccountExportReq.ProtoReflect.Descriptor instead. func (*MetricsArtistAccountExportReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{169} + return file_pb_bundle_proto_rawDescGZIP(), []int{170} } func (x *MetricsArtistAccountExportReq) GetMonth() []string { @@ -16963,7 +17026,7 @@ type MetricsArtistAccountExportResp struct { func (x *MetricsArtistAccountExportResp) Reset() { *x = MetricsArtistAccountExportResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[170] + mi := &file_pb_bundle_proto_msgTypes[171] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -16976,7 +17039,7 @@ func (x *MetricsArtistAccountExportResp) String() string { func (*MetricsArtistAccountExportResp) ProtoMessage() {} func (x *MetricsArtistAccountExportResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[170] + mi := &file_pb_bundle_proto_msgTypes[171] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -16989,7 +17052,7 @@ func (x *MetricsArtistAccountExportResp) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsArtistAccountExportResp.ProtoReflect.Descriptor instead. func (*MetricsArtistAccountExportResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{170} + return file_pb_bundle_proto_rawDescGZIP(), []int{171} } func (x *MetricsArtistAccountExportResp) GetData() []*MetricsArtistAccountExportItem { @@ -17026,7 +17089,7 @@ type MetricsArtistAccountExportItem struct { func (x *MetricsArtistAccountExportItem) Reset() { *x = MetricsArtistAccountExportItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[171] + mi := &file_pb_bundle_proto_msgTypes[172] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17039,7 +17102,7 @@ func (x *MetricsArtistAccountExportItem) String() string { func (*MetricsArtistAccountExportItem) ProtoMessage() {} func (x *MetricsArtistAccountExportItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[171] + mi := &file_pb_bundle_proto_msgTypes[172] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17052,7 +17115,7 @@ func (x *MetricsArtistAccountExportItem) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsArtistAccountExportItem.ProtoReflect.Descriptor instead. func (*MetricsArtistAccountExportItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{171} + return file_pb_bundle_proto_rawDescGZIP(), []int{172} } func (x *MetricsArtistAccountExportItem) GetArtistName() string { @@ -17185,7 +17248,7 @@ type MetricsVideoSubmitExportReq struct { func (x *MetricsVideoSubmitExportReq) Reset() { *x = MetricsVideoSubmitExportReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[172] + mi := &file_pb_bundle_proto_msgTypes[173] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17198,7 +17261,7 @@ func (x *MetricsVideoSubmitExportReq) String() string { func (*MetricsVideoSubmitExportReq) ProtoMessage() {} func (x *MetricsVideoSubmitExportReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[172] + mi := &file_pb_bundle_proto_msgTypes[173] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17211,7 +17274,7 @@ func (x *MetricsVideoSubmitExportReq) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsVideoSubmitExportReq.ProtoReflect.Descriptor instead. func (*MetricsVideoSubmitExportReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{172} + return file_pb_bundle_proto_rawDescGZIP(), []int{173} } func (x *MetricsVideoSubmitExportReq) GetMonth() []string { @@ -17232,7 +17295,7 @@ type MetricsVideoSubmitExportResp struct { func (x *MetricsVideoSubmitExportResp) Reset() { *x = MetricsVideoSubmitExportResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[173] + mi := &file_pb_bundle_proto_msgTypes[174] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17245,7 +17308,7 @@ func (x *MetricsVideoSubmitExportResp) String() string { func (*MetricsVideoSubmitExportResp) ProtoMessage() {} func (x *MetricsVideoSubmitExportResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[173] + mi := &file_pb_bundle_proto_msgTypes[174] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17258,7 +17321,7 @@ func (x *MetricsVideoSubmitExportResp) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsVideoSubmitExportResp.ProtoReflect.Descriptor instead. func (*MetricsVideoSubmitExportResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{173} + return file_pb_bundle_proto_rawDescGZIP(), []int{174} } func (x *MetricsVideoSubmitExportResp) GetData() []*MetricsVideoSubmitExportItem { @@ -17284,7 +17347,7 @@ type MetricsVideoSubmitExportItem struct { func (x *MetricsVideoSubmitExportItem) Reset() { *x = MetricsVideoSubmitExportItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[174] + mi := &file_pb_bundle_proto_msgTypes[175] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17297,7 +17360,7 @@ func (x *MetricsVideoSubmitExportItem) String() string { func (*MetricsVideoSubmitExportItem) ProtoMessage() {} func (x *MetricsVideoSubmitExportItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[174] + mi := &file_pb_bundle_proto_msgTypes[175] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17310,7 +17373,7 @@ func (x *MetricsVideoSubmitExportItem) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsVideoSubmitExportItem.ProtoReflect.Descriptor instead. func (*MetricsVideoSubmitExportItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{174} + return file_pb_bundle_proto_rawDescGZIP(), []int{175} } func (x *MetricsVideoSubmitExportItem) GetArtistName() string { @@ -17366,7 +17429,7 @@ type MetricsBalanceDetailExportReq struct { func (x *MetricsBalanceDetailExportReq) Reset() { *x = MetricsBalanceDetailExportReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[175] + mi := &file_pb_bundle_proto_msgTypes[176] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17379,7 +17442,7 @@ func (x *MetricsBalanceDetailExportReq) String() string { func (*MetricsBalanceDetailExportReq) ProtoMessage() {} func (x *MetricsBalanceDetailExportReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[175] + mi := &file_pb_bundle_proto_msgTypes[176] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17392,7 +17455,7 @@ func (x *MetricsBalanceDetailExportReq) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricsBalanceDetailExportReq.ProtoReflect.Descriptor instead. func (*MetricsBalanceDetailExportReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{175} + return file_pb_bundle_proto_rawDescGZIP(), []int{176} } func (x *MetricsBalanceDetailExportReq) GetMonth() string { @@ -17418,7 +17481,7 @@ type CustomerListRequest struct { func (x *CustomerListRequest) Reset() { *x = CustomerListRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[176] + mi := &file_pb_bundle_proto_msgTypes[177] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17431,7 +17494,7 @@ func (x *CustomerListRequest) String() string { func (*CustomerListRequest) ProtoMessage() {} func (x *CustomerListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[176] + mi := &file_pb_bundle_proto_msgTypes[177] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17444,7 +17507,7 @@ func (x *CustomerListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerListRequest.ProtoReflect.Descriptor instead. func (*CustomerListRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{176} + return file_pb_bundle_proto_rawDescGZIP(), []int{177} } func (x *CustomerListRequest) GetCustomerName() string { @@ -17490,7 +17553,7 @@ type CustomerListResponse struct { func (x *CustomerListResponse) Reset() { *x = CustomerListResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[177] + mi := &file_pb_bundle_proto_msgTypes[178] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17503,7 +17566,7 @@ func (x *CustomerListResponse) String() string { func (*CustomerListResponse) ProtoMessage() {} func (x *CustomerListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[177] + mi := &file_pb_bundle_proto_msgTypes[178] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17516,7 +17579,7 @@ func (x *CustomerListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerListResponse.ProtoReflect.Descriptor instead. func (*CustomerListResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{177} + return file_pb_bundle_proto_rawDescGZIP(), []int{178} } func (x *CustomerListResponse) GetList() []*CustomerInfo { @@ -17559,7 +17622,7 @@ type CustomerDetailRequest struct { func (x *CustomerDetailRequest) Reset() { *x = CustomerDetailRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[178] + mi := &file_pb_bundle_proto_msgTypes[179] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17572,7 +17635,7 @@ func (x *CustomerDetailRequest) String() string { func (*CustomerDetailRequest) ProtoMessage() {} func (x *CustomerDetailRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[178] + mi := &file_pb_bundle_proto_msgTypes[179] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17585,7 +17648,7 @@ func (x *CustomerDetailRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerDetailRequest.ProtoReflect.Descriptor instead. func (*CustomerDetailRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{178} + return file_pb_bundle_proto_rawDescGZIP(), []int{179} } func (x *CustomerDetailRequest) GetCustomerID() string { @@ -17608,7 +17671,7 @@ type CustomerDetailResponse struct { func (x *CustomerDetailResponse) Reset() { *x = CustomerDetailResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[179] + mi := &file_pb_bundle_proto_msgTypes[180] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17621,7 +17684,7 @@ func (x *CustomerDetailResponse) String() string { func (*CustomerDetailResponse) ProtoMessage() {} func (x *CustomerDetailResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[179] + mi := &file_pb_bundle_proto_msgTypes[180] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17634,7 +17697,7 @@ func (x *CustomerDetailResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerDetailResponse.ProtoReflect.Descriptor instead. func (*CustomerDetailResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{179} + return file_pb_bundle_proto_rawDescGZIP(), []int{180} } func (x *CustomerDetailResponse) GetCustomer() *Customer { @@ -17664,7 +17727,7 @@ type CustomerUpdateRequest struct { func (x *CustomerUpdateRequest) Reset() { *x = CustomerUpdateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[180] + mi := &file_pb_bundle_proto_msgTypes[181] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17677,7 +17740,7 @@ func (x *CustomerUpdateRequest) String() string { func (*CustomerUpdateRequest) ProtoMessage() {} func (x *CustomerUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[180] + mi := &file_pb_bundle_proto_msgTypes[181] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17690,7 +17753,7 @@ func (x *CustomerUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerUpdateRequest.ProtoReflect.Descriptor instead. func (*CustomerUpdateRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{180} + return file_pb_bundle_proto_rawDescGZIP(), []int{181} } func (x *CustomerUpdateRequest) GetAction() string { @@ -17725,7 +17788,7 @@ type CustomerInfo struct { func (x *CustomerInfo) Reset() { *x = CustomerInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[181] + mi := &file_pb_bundle_proto_msgTypes[182] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17738,7 +17801,7 @@ func (x *CustomerInfo) String() string { func (*CustomerInfo) ProtoMessage() {} func (x *CustomerInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[181] + mi := &file_pb_bundle_proto_msgTypes[182] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17751,7 +17814,7 @@ func (x *CustomerInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerInfo.ProtoReflect.Descriptor instead. func (*CustomerInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{181} + return file_pb_bundle_proto_rawDescGZIP(), []int{182} } func (x *CustomerInfo) GetCustomerID() string { @@ -17824,7 +17887,7 @@ type Customer struct { func (x *Customer) Reset() { *x = Customer{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[182] + mi := &file_pb_bundle_proto_msgTypes[183] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17837,7 +17900,7 @@ func (x *Customer) String() string { func (*Customer) ProtoMessage() {} func (x *Customer) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[182] + mi := &file_pb_bundle_proto_msgTypes[183] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17850,7 +17913,7 @@ func (x *Customer) ProtoReflect() protoreflect.Message { // Deprecated: Use Customer.ProtoReflect.Descriptor instead. func (*Customer) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{182} + return file_pb_bundle_proto_rawDescGZIP(), []int{183} } func (x *Customer) GetCustomerID() string { @@ -17942,7 +18005,7 @@ type ReferralPersonListRequest struct { func (x *ReferralPersonListRequest) Reset() { *x = ReferralPersonListRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[183] + mi := &file_pb_bundle_proto_msgTypes[184] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -17955,7 +18018,7 @@ func (x *ReferralPersonListRequest) String() string { func (*ReferralPersonListRequest) ProtoMessage() {} func (x *ReferralPersonListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[183] + mi := &file_pb_bundle_proto_msgTypes[184] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -17968,7 +18031,7 @@ func (x *ReferralPersonListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReferralPersonListRequest.ProtoReflect.Descriptor instead. func (*ReferralPersonListRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{183} + return file_pb_bundle_proto_rawDescGZIP(), []int{184} } func (x *ReferralPersonListRequest) GetKeyword() string { @@ -17991,7 +18054,7 @@ type ReferralPersonListResponse struct { func (x *ReferralPersonListResponse) Reset() { *x = ReferralPersonListResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[184] + mi := &file_pb_bundle_proto_msgTypes[185] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18004,7 +18067,7 @@ func (x *ReferralPersonListResponse) String() string { func (*ReferralPersonListResponse) ProtoMessage() {} func (x *ReferralPersonListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[184] + mi := &file_pb_bundle_proto_msgTypes[185] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18017,7 +18080,7 @@ func (x *ReferralPersonListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ReferralPersonListResponse.ProtoReflect.Descriptor instead. func (*ReferralPersonListResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{184} + return file_pb_bundle_proto_rawDescGZIP(), []int{185} } func (x *ReferralPersonListResponse) GetList() []string { @@ -18047,7 +18110,7 @@ type ContractUpdateRequest struct { func (x *ContractUpdateRequest) Reset() { *x = ContractUpdateRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[185] + mi := &file_pb_bundle_proto_msgTypes[186] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18060,7 +18123,7 @@ func (x *ContractUpdateRequest) String() string { func (*ContractUpdateRequest) ProtoMessage() {} func (x *ContractUpdateRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[185] + mi := &file_pb_bundle_proto_msgTypes[186] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18073,7 +18136,7 @@ func (x *ContractUpdateRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContractUpdateRequest.ProtoReflect.Descriptor instead. func (*ContractUpdateRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{185} + return file_pb_bundle_proto_rawDescGZIP(), []int{186} } func (x *ContractUpdateRequest) GetAction() string { @@ -18106,7 +18169,7 @@ type ContractListRequest struct { func (x *ContractListRequest) Reset() { *x = ContractListRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[186] + mi := &file_pb_bundle_proto_msgTypes[187] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18119,7 +18182,7 @@ func (x *ContractListRequest) String() string { func (*ContractListRequest) ProtoMessage() {} func (x *ContractListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[186] + mi := &file_pb_bundle_proto_msgTypes[187] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18132,7 +18195,7 @@ func (x *ContractListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContractListRequest.ProtoReflect.Descriptor instead. func (*ContractListRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{186} + return file_pb_bundle_proto_rawDescGZIP(), []int{187} } func (x *ContractListRequest) GetContractName() string { @@ -18185,7 +18248,7 @@ type ContractListResponse struct { func (x *ContractListResponse) Reset() { *x = ContractListResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[187] + mi := &file_pb_bundle_proto_msgTypes[188] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18198,7 +18261,7 @@ func (x *ContractListResponse) String() string { func (*ContractListResponse) ProtoMessage() {} func (x *ContractListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[187] + mi := &file_pb_bundle_proto_msgTypes[188] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18211,7 +18274,7 @@ func (x *ContractListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContractListResponse.ProtoReflect.Descriptor instead. func (*ContractListResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{187} + return file_pb_bundle_proto_rawDescGZIP(), []int{188} } func (x *ContractListResponse) GetList() []*ContractInfo { @@ -18254,7 +18317,7 @@ type ContractDetailRequest struct { func (x *ContractDetailRequest) Reset() { *x = ContractDetailRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[188] + mi := &file_pb_bundle_proto_msgTypes[189] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18267,7 +18330,7 @@ func (x *ContractDetailRequest) String() string { func (*ContractDetailRequest) ProtoMessage() {} func (x *ContractDetailRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[188] + mi := &file_pb_bundle_proto_msgTypes[189] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18280,7 +18343,7 @@ func (x *ContractDetailRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ContractDetailRequest.ProtoReflect.Descriptor instead. func (*ContractDetailRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{188} + return file_pb_bundle_proto_rawDescGZIP(), []int{189} } func (x *ContractDetailRequest) GetContractUUID() string { @@ -18303,7 +18366,7 @@ type ContractDetailResponse struct { func (x *ContractDetailResponse) Reset() { *x = ContractDetailResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[189] + mi := &file_pb_bundle_proto_msgTypes[190] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18316,7 +18379,7 @@ func (x *ContractDetailResponse) String() string { func (*ContractDetailResponse) ProtoMessage() {} func (x *ContractDetailResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[189] + mi := &file_pb_bundle_proto_msgTypes[190] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18329,7 +18392,7 @@ func (x *ContractDetailResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ContractDetailResponse.ProtoReflect.Descriptor instead. func (*ContractDetailResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{189} + return file_pb_bundle_proto_rawDescGZIP(), []int{190} } func (x *ContractDetailResponse) GetContract() *Contract { @@ -18358,7 +18421,7 @@ type GetDevelopmentCyclesByContractUUIDRequest struct { func (x *GetDevelopmentCyclesByContractUUIDRequest) Reset() { *x = GetDevelopmentCyclesByContractUUIDRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[190] + mi := &file_pb_bundle_proto_msgTypes[191] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18371,7 +18434,7 @@ func (x *GetDevelopmentCyclesByContractUUIDRequest) String() string { func (*GetDevelopmentCyclesByContractUUIDRequest) ProtoMessage() {} func (x *GetDevelopmentCyclesByContractUUIDRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[190] + mi := &file_pb_bundle_proto_msgTypes[191] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18384,7 +18447,7 @@ func (x *GetDevelopmentCyclesByContractUUIDRequest) ProtoReflect() protoreflect. // Deprecated: Use GetDevelopmentCyclesByContractUUIDRequest.ProtoReflect.Descriptor instead. func (*GetDevelopmentCyclesByContractUUIDRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{190} + return file_pb_bundle_proto_rawDescGZIP(), []int{191} } func (x *GetDevelopmentCyclesByContractUUIDRequest) GetContractUUID() string { @@ -18407,7 +18470,7 @@ type GetDevelopmentCyclesByContractUUIDResponse struct { func (x *GetDevelopmentCyclesByContractUUIDResponse) Reset() { *x = GetDevelopmentCyclesByContractUUIDResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[191] + mi := &file_pb_bundle_proto_msgTypes[192] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18420,7 +18483,7 @@ func (x *GetDevelopmentCyclesByContractUUIDResponse) String() string { func (*GetDevelopmentCyclesByContractUUIDResponse) ProtoMessage() {} func (x *GetDevelopmentCyclesByContractUUIDResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[191] + mi := &file_pb_bundle_proto_msgTypes[192] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18433,7 +18496,7 @@ func (x *GetDevelopmentCyclesByContractUUIDResponse) ProtoReflect() protoreflect // Deprecated: Use GetDevelopmentCyclesByContractUUIDResponse.ProtoReflect.Descriptor instead. func (*GetDevelopmentCyclesByContractUUIDResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{191} + return file_pb_bundle_proto_rawDescGZIP(), []int{192} } func (x *GetDevelopmentCyclesByContractUUIDResponse) GetList() []*DevelopmentCycle { @@ -18462,7 +18525,7 @@ type GetPaymentCyclesByContractUUIDRequest struct { func (x *GetPaymentCyclesByContractUUIDRequest) Reset() { *x = GetPaymentCyclesByContractUUIDRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[192] + mi := &file_pb_bundle_proto_msgTypes[193] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18475,7 +18538,7 @@ func (x *GetPaymentCyclesByContractUUIDRequest) String() string { func (*GetPaymentCyclesByContractUUIDRequest) ProtoMessage() {} func (x *GetPaymentCyclesByContractUUIDRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[192] + mi := &file_pb_bundle_proto_msgTypes[193] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18488,7 +18551,7 @@ func (x *GetPaymentCyclesByContractUUIDRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use GetPaymentCyclesByContractUUIDRequest.ProtoReflect.Descriptor instead. func (*GetPaymentCyclesByContractUUIDRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{192} + return file_pb_bundle_proto_rawDescGZIP(), []int{193} } func (x *GetPaymentCyclesByContractUUIDRequest) GetContractUUID() string { @@ -18511,7 +18574,7 @@ type GetPaymentCyclesByContractUUIDResponse struct { func (x *GetPaymentCyclesByContractUUIDResponse) Reset() { *x = GetPaymentCyclesByContractUUIDResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[193] + mi := &file_pb_bundle_proto_msgTypes[194] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18524,7 +18587,7 @@ func (x *GetPaymentCyclesByContractUUIDResponse) String() string { func (*GetPaymentCyclesByContractUUIDResponse) ProtoMessage() {} func (x *GetPaymentCyclesByContractUUIDResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[193] + mi := &file_pb_bundle_proto_msgTypes[194] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18537,7 +18600,7 @@ func (x *GetPaymentCyclesByContractUUIDResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use GetPaymentCyclesByContractUUIDResponse.ProtoReflect.Descriptor instead. func (*GetPaymentCyclesByContractUUIDResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{193} + return file_pb_bundle_proto_rawDescGZIP(), []int{194} } func (x *GetPaymentCyclesByContractUUIDResponse) GetList() []*ContractPaymentCycle { @@ -18567,7 +18630,7 @@ type AttachmentItem struct { func (x *AttachmentItem) Reset() { *x = AttachmentItem{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[194] + mi := &file_pb_bundle_proto_msgTypes[195] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18580,7 +18643,7 @@ func (x *AttachmentItem) String() string { func (*AttachmentItem) ProtoMessage() {} func (x *AttachmentItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[194] + mi := &file_pb_bundle_proto_msgTypes[195] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18593,7 +18656,7 @@ func (x *AttachmentItem) ProtoReflect() protoreflect.Message { // Deprecated: Use AttachmentItem.ProtoReflect.Descriptor instead. func (*AttachmentItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{194} + return file_pb_bundle_proto_rawDescGZIP(), []int{195} } func (x *AttachmentItem) GetUrl() string { @@ -18641,7 +18704,7 @@ type ContractInfo struct { func (x *ContractInfo) Reset() { *x = ContractInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[195] + mi := &file_pb_bundle_proto_msgTypes[196] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18654,7 +18717,7 @@ func (x *ContractInfo) String() string { func (*ContractInfo) ProtoMessage() {} func (x *ContractInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[195] + mi := &file_pb_bundle_proto_msgTypes[196] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18667,7 +18730,7 @@ func (x *ContractInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ContractInfo.ProtoReflect.Descriptor instead. func (*ContractInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{195} + return file_pb_bundle_proto_rawDescGZIP(), []int{196} } func (x *ContractInfo) GetContractUUID() string { @@ -18845,7 +18908,7 @@ type Contract struct { func (x *Contract) Reset() { *x = Contract{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[196] + mi := &file_pb_bundle_proto_msgTypes[197] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -18858,7 +18921,7 @@ func (x *Contract) String() string { func (*Contract) ProtoMessage() {} func (x *Contract) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[196] + mi := &file_pb_bundle_proto_msgTypes[197] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -18871,7 +18934,7 @@ func (x *Contract) ProtoReflect() protoreflect.Message { // Deprecated: Use Contract.ProtoReflect.Descriptor instead. func (*Contract) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{196} + return file_pb_bundle_proto_rawDescGZIP(), []int{197} } func (x *Contract) GetContractUUID() string { @@ -19059,7 +19122,7 @@ type ContractPaymentCycle struct { func (x *ContractPaymentCycle) Reset() { *x = ContractPaymentCycle{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[197] + mi := &file_pb_bundle_proto_msgTypes[198] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19072,7 +19135,7 @@ func (x *ContractPaymentCycle) String() string { func (*ContractPaymentCycle) ProtoMessage() {} func (x *ContractPaymentCycle) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[197] + mi := &file_pb_bundle_proto_msgTypes[198] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19085,7 +19148,7 @@ func (x *ContractPaymentCycle) ProtoReflect() protoreflect.Message { // Deprecated: Use ContractPaymentCycle.ProtoReflect.Descriptor instead. func (*ContractPaymentCycle) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{197} + return file_pb_bundle_proto_rawDescGZIP(), []int{198} } func (x *ContractPaymentCycle) GetContractPaymentCycleUUID() string { @@ -19147,7 +19210,7 @@ type DevelopmentCycle struct { func (x *DevelopmentCycle) Reset() { *x = DevelopmentCycle{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[198] + mi := &file_pb_bundle_proto_msgTypes[199] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19160,7 +19223,7 @@ func (x *DevelopmentCycle) String() string { func (*DevelopmentCycle) ProtoMessage() {} func (x *DevelopmentCycle) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[198] + mi := &file_pb_bundle_proto_msgTypes[199] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19173,7 +19236,7 @@ func (x *DevelopmentCycle) ProtoReflect() protoreflect.Message { // Deprecated: Use DevelopmentCycle.ProtoReflect.Descriptor instead. func (*DevelopmentCycle) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{198} + return file_pb_bundle_proto_rawDescGZIP(), []int{199} } func (x *DevelopmentCycle) GetDevelopmentCycleUUID() string { @@ -19238,7 +19301,7 @@ type CreateInvoiceReq struct { func (x *CreateInvoiceReq) Reset() { *x = CreateInvoiceReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[199] + mi := &file_pb_bundle_proto_msgTypes[200] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19251,7 +19314,7 @@ func (x *CreateInvoiceReq) String() string { func (*CreateInvoiceReq) ProtoMessage() {} func (x *CreateInvoiceReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[199] + mi := &file_pb_bundle_proto_msgTypes[200] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19264,7 +19327,7 @@ func (x *CreateInvoiceReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateInvoiceReq.ProtoReflect.Descriptor instead. func (*CreateInvoiceReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{199} + return file_pb_bundle_proto_rawDescGZIP(), []int{200} } func (x *CreateInvoiceReq) GetUserId() string { @@ -19346,7 +19409,7 @@ type CreateInvoiceResp struct { func (x *CreateInvoiceResp) Reset() { *x = CreateInvoiceResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[200] + mi := &file_pb_bundle_proto_msgTypes[201] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19359,7 +19422,7 @@ func (x *CreateInvoiceResp) String() string { func (*CreateInvoiceResp) ProtoMessage() {} func (x *CreateInvoiceResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[200] + mi := &file_pb_bundle_proto_msgTypes[201] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19372,7 +19435,7 @@ func (x *CreateInvoiceResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateInvoiceResp.ProtoReflect.Descriptor instead. func (*CreateInvoiceResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{200} + return file_pb_bundle_proto_rawDescGZIP(), []int{201} } type CreatePaperInvoiceAddressReq struct { @@ -19396,7 +19459,7 @@ type CreatePaperInvoiceAddressReq struct { func (x *CreatePaperInvoiceAddressReq) Reset() { *x = CreatePaperInvoiceAddressReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[201] + mi := &file_pb_bundle_proto_msgTypes[202] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19409,7 +19472,7 @@ func (x *CreatePaperInvoiceAddressReq) String() string { func (*CreatePaperInvoiceAddressReq) ProtoMessage() {} func (x *CreatePaperInvoiceAddressReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[201] + mi := &file_pb_bundle_proto_msgTypes[202] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19422,7 +19485,7 @@ func (x *CreatePaperInvoiceAddressReq) ProtoReflect() protoreflect.Message { // Deprecated: Use CreatePaperInvoiceAddressReq.ProtoReflect.Descriptor instead. func (*CreatePaperInvoiceAddressReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{201} + return file_pb_bundle_proto_rawDescGZIP(), []int{202} } func (x *CreatePaperInvoiceAddressReq) GetUserId() string { @@ -19511,7 +19574,7 @@ type CreatePaperInvoiceAddressResp struct { func (x *CreatePaperInvoiceAddressResp) Reset() { *x = CreatePaperInvoiceAddressResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[202] + mi := &file_pb_bundle_proto_msgTypes[203] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19524,7 +19587,7 @@ func (x *CreatePaperInvoiceAddressResp) String() string { func (*CreatePaperInvoiceAddressResp) ProtoMessage() {} func (x *CreatePaperInvoiceAddressResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[202] + mi := &file_pb_bundle_proto_msgTypes[203] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19537,7 +19600,7 @@ func (x *CreatePaperInvoiceAddressResp) ProtoReflect() protoreflect.Message { // Deprecated: Use CreatePaperInvoiceAddressResp.ProtoReflect.Descriptor instead. func (*CreatePaperInvoiceAddressResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{202} + return file_pb_bundle_proto_rawDescGZIP(), []int{203} } type InvoiceInfo struct { @@ -19561,7 +19624,7 @@ type InvoiceInfo struct { func (x *InvoiceInfo) Reset() { *x = InvoiceInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[203] + mi := &file_pb_bundle_proto_msgTypes[204] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19574,7 +19637,7 @@ func (x *InvoiceInfo) String() string { func (*InvoiceInfo) ProtoMessage() {} func (x *InvoiceInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[203] + mi := &file_pb_bundle_proto_msgTypes[204] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19587,7 +19650,7 @@ func (x *InvoiceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use InvoiceInfo.ProtoReflect.Descriptor instead. func (*InvoiceInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{203} + return file_pb_bundle_proto_rawDescGZIP(), []int{204} } func (x *InvoiceInfo) GetName() string { @@ -19687,7 +19750,7 @@ type GetInvoiceListReq struct { func (x *GetInvoiceListReq) Reset() { *x = GetInvoiceListReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[204] + mi := &file_pb_bundle_proto_msgTypes[205] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19700,7 +19763,7 @@ func (x *GetInvoiceListReq) String() string { func (*GetInvoiceListReq) ProtoMessage() {} func (x *GetInvoiceListReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[204] + mi := &file_pb_bundle_proto_msgTypes[205] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19713,7 +19776,7 @@ func (x *GetInvoiceListReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInvoiceListReq.ProtoReflect.Descriptor instead. func (*GetInvoiceListReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{204} + return file_pb_bundle_proto_rawDescGZIP(), []int{205} } func (x *GetInvoiceListReq) GetSize() int64 { @@ -19800,7 +19863,7 @@ type GetInvoiceListResp struct { func (x *GetInvoiceListResp) Reset() { *x = GetInvoiceListResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[205] + mi := &file_pb_bundle_proto_msgTypes[206] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19813,7 +19876,7 @@ func (x *GetInvoiceListResp) String() string { func (*GetInvoiceListResp) ProtoMessage() {} func (x *GetInvoiceListResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[205] + mi := &file_pb_bundle_proto_msgTypes[206] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19826,7 +19889,7 @@ func (x *GetInvoiceListResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInvoiceListResp.ProtoReflect.Descriptor instead. func (*GetInvoiceListResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{205} + return file_pb_bundle_proto_rawDescGZIP(), []int{206} } func (x *GetInvoiceListResp) GetData() []*InvoiceInfo { @@ -19871,7 +19934,7 @@ type UpdateInvoiceExpressInfoReq struct { func (x *UpdateInvoiceExpressInfoReq) Reset() { *x = UpdateInvoiceExpressInfoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[206] + mi := &file_pb_bundle_proto_msgTypes[207] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19884,7 +19947,7 @@ func (x *UpdateInvoiceExpressInfoReq) String() string { func (*UpdateInvoiceExpressInfoReq) ProtoMessage() {} func (x *UpdateInvoiceExpressInfoReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[206] + mi := &file_pb_bundle_proto_msgTypes[207] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19897,7 +19960,7 @@ func (x *UpdateInvoiceExpressInfoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateInvoiceExpressInfoReq.ProtoReflect.Descriptor instead. func (*UpdateInvoiceExpressInfoReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{206} + return file_pb_bundle_proto_rawDescGZIP(), []int{207} } func (x *UpdateInvoiceExpressInfoReq) GetOrderNo() string { @@ -19937,7 +20000,7 @@ type UpdateInvoiceExpressInfoResp struct { func (x *UpdateInvoiceExpressInfoResp) Reset() { *x = UpdateInvoiceExpressInfoResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[207] + mi := &file_pb_bundle_proto_msgTypes[208] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19950,7 +20013,7 @@ func (x *UpdateInvoiceExpressInfoResp) String() string { func (*UpdateInvoiceExpressInfoResp) ProtoMessage() {} func (x *UpdateInvoiceExpressInfoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[207] + mi := &file_pb_bundle_proto_msgTypes[208] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -19963,7 +20026,7 @@ func (x *UpdateInvoiceExpressInfoResp) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateInvoiceExpressInfoResp.ProtoReflect.Descriptor instead. func (*UpdateInvoiceExpressInfoResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{207} + return file_pb_bundle_proto_rawDescGZIP(), []int{208} } type GetInvoiceExpressInfoReq struct { @@ -19977,7 +20040,7 @@ type GetInvoiceExpressInfoReq struct { func (x *GetInvoiceExpressInfoReq) Reset() { *x = GetInvoiceExpressInfoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[208] + mi := &file_pb_bundle_proto_msgTypes[209] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -19990,7 +20053,7 @@ func (x *GetInvoiceExpressInfoReq) String() string { func (*GetInvoiceExpressInfoReq) ProtoMessage() {} func (x *GetInvoiceExpressInfoReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[208] + mi := &file_pb_bundle_proto_msgTypes[209] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20003,7 +20066,7 @@ func (x *GetInvoiceExpressInfoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInvoiceExpressInfoReq.ProtoReflect.Descriptor instead. func (*GetInvoiceExpressInfoReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{208} + return file_pb_bundle_proto_rawDescGZIP(), []int{209} } func (x *GetInvoiceExpressInfoReq) GetOrderNo() string { @@ -20026,7 +20089,7 @@ type GetInvoiceExpressInfoResp struct { func (x *GetInvoiceExpressInfoResp) Reset() { *x = GetInvoiceExpressInfoResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[209] + mi := &file_pb_bundle_proto_msgTypes[210] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20039,7 +20102,7 @@ func (x *GetInvoiceExpressInfoResp) String() string { func (*GetInvoiceExpressInfoResp) ProtoMessage() {} func (x *GetInvoiceExpressInfoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[209] + mi := &file_pb_bundle_proto_msgTypes[210] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20052,7 +20115,7 @@ func (x *GetInvoiceExpressInfoResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInvoiceExpressInfoResp.ProtoReflect.Descriptor instead. func (*GetInvoiceExpressInfoResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{209} + return file_pb_bundle_proto_rawDescGZIP(), []int{210} } func (x *GetInvoiceExpressInfoResp) GetExpressCompany() string { @@ -20088,7 +20151,7 @@ type GetOrderInfoByOrderNoReq struct { func (x *GetOrderInfoByOrderNoReq) Reset() { *x = GetOrderInfoByOrderNoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[210] + mi := &file_pb_bundle_proto_msgTypes[211] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20101,7 +20164,7 @@ func (x *GetOrderInfoByOrderNoReq) String() string { func (*GetOrderInfoByOrderNoReq) ProtoMessage() {} func (x *GetOrderInfoByOrderNoReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[210] + mi := &file_pb_bundle_proto_msgTypes[211] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20114,7 +20177,7 @@ func (x *GetOrderInfoByOrderNoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetOrderInfoByOrderNoReq.ProtoReflect.Descriptor instead. func (*GetOrderInfoByOrderNoReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{210} + return file_pb_bundle_proto_rawDescGZIP(), []int{211} } func (x *GetOrderInfoByOrderNoReq) GetUuid() string { @@ -20151,7 +20214,7 @@ type GetOrderInfoByOrderNoResp struct { func (x *GetOrderInfoByOrderNoResp) Reset() { *x = GetOrderInfoByOrderNoResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[211] + mi := &file_pb_bundle_proto_msgTypes[212] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20164,7 +20227,7 @@ func (x *GetOrderInfoByOrderNoResp) String() string { func (*GetOrderInfoByOrderNoResp) ProtoMessage() {} func (x *GetOrderInfoByOrderNoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[211] + mi := &file_pb_bundle_proto_msgTypes[212] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20177,7 +20240,7 @@ func (x *GetOrderInfoByOrderNoResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetOrderInfoByOrderNoResp.ProtoReflect.Descriptor instead. func (*GetOrderInfoByOrderNoResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{211} + return file_pb_bundle_proto_rawDescGZIP(), []int{212} } func (x *GetOrderInfoByOrderNoResp) GetUserName() string { @@ -20271,7 +20334,7 @@ type WorkCastInfo struct { func (x *WorkCastInfo) Reset() { *x = WorkCastInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[212] + mi := &file_pb_bundle_proto_msgTypes[213] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20284,7 +20347,7 @@ func (x *WorkCastInfo) String() string { func (*WorkCastInfo) ProtoMessage() {} func (x *WorkCastInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[212] + mi := &file_pb_bundle_proto_msgTypes[213] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20297,7 +20360,7 @@ func (x *WorkCastInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use WorkCastInfo.ProtoReflect.Descriptor instead. func (*WorkCastInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{212} + return file_pb_bundle_proto_rawDescGZIP(), []int{213} } func (x *WorkCastInfo) GetCustomerName() string { @@ -20389,7 +20452,7 @@ type ExportWorkCastInfoReq struct { func (x *ExportWorkCastInfoReq) Reset() { *x = ExportWorkCastInfoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[213] + mi := &file_pb_bundle_proto_msgTypes[214] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20402,7 +20465,7 @@ func (x *ExportWorkCastInfoReq) String() string { func (*ExportWorkCastInfoReq) ProtoMessage() {} func (x *ExportWorkCastInfoReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[213] + mi := &file_pb_bundle_proto_msgTypes[214] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20415,7 +20478,7 @@ func (x *ExportWorkCastInfoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use ExportWorkCastInfoReq.ProtoReflect.Descriptor instead. func (*ExportWorkCastInfoReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{213} + return file_pb_bundle_proto_rawDescGZIP(), []int{214} } func (x *ExportWorkCastInfoReq) GetStartTime() string { @@ -20443,7 +20506,7 @@ type ExportWorkCastInfoResp struct { func (x *ExportWorkCastInfoResp) Reset() { *x = ExportWorkCastInfoResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[214] + mi := &file_pb_bundle_proto_msgTypes[215] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20456,7 +20519,7 @@ func (x *ExportWorkCastInfoResp) String() string { func (*ExportWorkCastInfoResp) ProtoMessage() {} func (x *ExportWorkCastInfoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[214] + mi := &file_pb_bundle_proto_msgTypes[215] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20469,7 +20532,7 @@ func (x *ExportWorkCastInfoResp) ProtoReflect() protoreflect.Message { // Deprecated: Use ExportWorkCastInfoResp.ProtoReflect.Descriptor instead. func (*ExportWorkCastInfoResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{214} + return file_pb_bundle_proto_rawDescGZIP(), []int{215} } func (x *ExportWorkCastInfoResp) GetData() []*WorkCastInfo { @@ -20490,7 +20553,7 @@ type OrderInfoByOrderUuidRequest struct { func (x *OrderInfoByOrderUuidRequest) Reset() { *x = OrderInfoByOrderUuidRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[215] + mi := &file_pb_bundle_proto_msgTypes[216] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20503,7 +20566,7 @@ func (x *OrderInfoByOrderUuidRequest) String() string { func (*OrderInfoByOrderUuidRequest) ProtoMessage() {} func (x *OrderInfoByOrderUuidRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[215] + mi := &file_pb_bundle_proto_msgTypes[216] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20516,7 +20579,7 @@ func (x *OrderInfoByOrderUuidRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderInfoByOrderUuidRequest.ProtoReflect.Descriptor instead. func (*OrderInfoByOrderUuidRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{215} + return file_pb_bundle_proto_rawDescGZIP(), []int{216} } func (x *OrderInfoByOrderUuidRequest) GetOrderUuid() string { @@ -20538,7 +20601,7 @@ type GetInvoiceInfoByOrderNoReq struct { func (x *GetInvoiceInfoByOrderNoReq) Reset() { *x = GetInvoiceInfoByOrderNoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[216] + mi := &file_pb_bundle_proto_msgTypes[217] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20551,7 +20614,7 @@ func (x *GetInvoiceInfoByOrderNoReq) String() string { func (*GetInvoiceInfoByOrderNoReq) ProtoMessage() {} func (x *GetInvoiceInfoByOrderNoReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[216] + mi := &file_pb_bundle_proto_msgTypes[217] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20564,7 +20627,7 @@ func (x *GetInvoiceInfoByOrderNoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInvoiceInfoByOrderNoReq.ProtoReflect.Descriptor instead. func (*GetInvoiceInfoByOrderNoReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{216} + return file_pb_bundle_proto_rawDescGZIP(), []int{217} } func (x *GetInvoiceInfoByOrderNoReq) GetUserId() string { @@ -20599,7 +20662,7 @@ type InvoiceInfoByOrderNo struct { func (x *InvoiceInfoByOrderNo) Reset() { *x = InvoiceInfoByOrderNo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[217] + mi := &file_pb_bundle_proto_msgTypes[218] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20612,7 +20675,7 @@ func (x *InvoiceInfoByOrderNo) String() string { func (*InvoiceInfoByOrderNo) ProtoMessage() {} func (x *InvoiceInfoByOrderNo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[217] + mi := &file_pb_bundle_proto_msgTypes[218] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20625,7 +20688,7 @@ func (x *InvoiceInfoByOrderNo) ProtoReflect() protoreflect.Message { // Deprecated: Use InvoiceInfoByOrderNo.ProtoReflect.Descriptor instead. func (*InvoiceInfoByOrderNo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{217} + return file_pb_bundle_proto_rawDescGZIP(), []int{218} } func (x *InvoiceInfoByOrderNo) GetOrderNo() string { @@ -20695,7 +20758,7 @@ type GetInvoiceInfoByOrderNoResp struct { func (x *GetInvoiceInfoByOrderNoResp) Reset() { *x = GetInvoiceInfoByOrderNoResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[218] + mi := &file_pb_bundle_proto_msgTypes[219] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20708,7 +20771,7 @@ func (x *GetInvoiceInfoByOrderNoResp) String() string { func (*GetInvoiceInfoByOrderNoResp) ProtoMessage() {} func (x *GetInvoiceInfoByOrderNoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[218] + mi := &file_pb_bundle_proto_msgTypes[219] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20721,7 +20784,7 @@ func (x *GetInvoiceInfoByOrderNoResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetInvoiceInfoByOrderNoResp.ProtoReflect.Descriptor instead. func (*GetInvoiceInfoByOrderNoResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{218} + return file_pb_bundle_proto_rawDescGZIP(), []int{219} } func (x *GetInvoiceInfoByOrderNoResp) GetData() []*InvoiceInfoByOrderNo { @@ -20740,7 +20803,7 @@ type GetLastInvoiceNoReq struct { func (x *GetLastInvoiceNoReq) Reset() { *x = GetLastInvoiceNoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[219] + mi := &file_pb_bundle_proto_msgTypes[220] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20753,7 +20816,7 @@ func (x *GetLastInvoiceNoReq) String() string { func (*GetLastInvoiceNoReq) ProtoMessage() {} func (x *GetLastInvoiceNoReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[219] + mi := &file_pb_bundle_proto_msgTypes[220] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20766,7 +20829,7 @@ func (x *GetLastInvoiceNoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetLastInvoiceNoReq.ProtoReflect.Descriptor instead. func (*GetLastInvoiceNoReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{219} + return file_pb_bundle_proto_rawDescGZIP(), []int{220} } type GetLastInvoiceNoResp struct { @@ -20780,7 +20843,7 @@ type GetLastInvoiceNoResp struct { func (x *GetLastInvoiceNoResp) Reset() { *x = GetLastInvoiceNoResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[220] + mi := &file_pb_bundle_proto_msgTypes[221] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20793,7 +20856,7 @@ func (x *GetLastInvoiceNoResp) String() string { func (*GetLastInvoiceNoResp) ProtoMessage() {} func (x *GetLastInvoiceNoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[220] + mi := &file_pb_bundle_proto_msgTypes[221] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20806,7 +20869,7 @@ func (x *GetLastInvoiceNoResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetLastInvoiceNoResp.ProtoReflect.Descriptor instead. func (*GetLastInvoiceNoResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{220} + return file_pb_bundle_proto_rawDescGZIP(), []int{221} } func (x *GetLastInvoiceNoResp) GetLastNo() string { @@ -20828,7 +20891,7 @@ type UpdataInvoiceInfoReq struct { func (x *UpdataInvoiceInfoReq) Reset() { *x = UpdataInvoiceInfoReq{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[221] + mi := &file_pb_bundle_proto_msgTypes[222] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20841,7 +20904,7 @@ func (x *UpdataInvoiceInfoReq) String() string { func (*UpdataInvoiceInfoReq) ProtoMessage() {} func (x *UpdataInvoiceInfoReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[221] + mi := &file_pb_bundle_proto_msgTypes[222] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20854,7 +20917,7 @@ func (x *UpdataInvoiceInfoReq) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdataInvoiceInfoReq.ProtoReflect.Descriptor instead. func (*UpdataInvoiceInfoReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{221} + return file_pb_bundle_proto_rawDescGZIP(), []int{222} } func (x *UpdataInvoiceInfoReq) GetOrderNo() string { @@ -20880,7 +20943,7 @@ type UpdataInvoiceInfoResp struct { func (x *UpdataInvoiceInfoResp) Reset() { *x = UpdataInvoiceInfoResp{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[222] + mi := &file_pb_bundle_proto_msgTypes[223] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20893,7 +20956,7 @@ func (x *UpdataInvoiceInfoResp) String() string { func (*UpdataInvoiceInfoResp) ProtoMessage() {} func (x *UpdataInvoiceInfoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[222] + mi := &file_pb_bundle_proto_msgTypes[223] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20906,7 +20969,7 @@ func (x *UpdataInvoiceInfoResp) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdataInvoiceInfoResp.ProtoReflect.Descriptor instead. func (*UpdataInvoiceInfoResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{222} + return file_pb_bundle_proto_rawDescGZIP(), []int{223} } type SendQuestionnaireSurveyRequest struct { @@ -20922,7 +20985,7 @@ type SendQuestionnaireSurveyRequest struct { func (x *SendQuestionnaireSurveyRequest) Reset() { *x = SendQuestionnaireSurveyRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[223] + mi := &file_pb_bundle_proto_msgTypes[224] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20935,7 +20998,7 @@ func (x *SendQuestionnaireSurveyRequest) String() string { func (*SendQuestionnaireSurveyRequest) ProtoMessage() {} func (x *SendQuestionnaireSurveyRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[223] + mi := &file_pb_bundle_proto_msgTypes[224] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -20948,7 +21011,7 @@ func (x *SendQuestionnaireSurveyRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SendQuestionnaireSurveyRequest.ProtoReflect.Descriptor instead. func (*SendQuestionnaireSurveyRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{223} + return file_pb_bundle_proto_rawDescGZIP(), []int{224} } func (x *SendQuestionnaireSurveyRequest) GetEndTime() string { @@ -20983,7 +21046,7 @@ type SendQuestionnaireSurveyResponse struct { func (x *SendQuestionnaireSurveyResponse) Reset() { *x = SendQuestionnaireSurveyResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[224] + mi := &file_pb_bundle_proto_msgTypes[225] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -20996,7 +21059,7 @@ func (x *SendQuestionnaireSurveyResponse) String() string { func (*SendQuestionnaireSurveyResponse) ProtoMessage() {} func (x *SendQuestionnaireSurveyResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[224] + mi := &file_pb_bundle_proto_msgTypes[225] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21009,7 +21072,7 @@ func (x *SendQuestionnaireSurveyResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SendQuestionnaireSurveyResponse.ProtoReflect.Descriptor instead. func (*SendQuestionnaireSurveyResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{224} + return file_pb_bundle_proto_rawDescGZIP(), []int{225} } func (x *SendQuestionnaireSurveyResponse) GetStatus() int32 { @@ -21030,7 +21093,7 @@ type GetQuestionnaireSurveyInfoRequest struct { func (x *GetQuestionnaireSurveyInfoRequest) Reset() { *x = GetQuestionnaireSurveyInfoRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[225] + mi := &file_pb_bundle_proto_msgTypes[226] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21043,7 +21106,7 @@ func (x *GetQuestionnaireSurveyInfoRequest) String() string { func (*GetQuestionnaireSurveyInfoRequest) ProtoMessage() {} func (x *GetQuestionnaireSurveyInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[225] + mi := &file_pb_bundle_proto_msgTypes[226] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21056,7 +21119,7 @@ func (x *GetQuestionnaireSurveyInfoRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetQuestionnaireSurveyInfoRequest.ProtoReflect.Descriptor instead. func (*GetQuestionnaireSurveyInfoRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{225} + return file_pb_bundle_proto_rawDescGZIP(), []int{226} } func (x *GetQuestionnaireSurveyInfoRequest) GetUserTel() string { @@ -21085,7 +21148,7 @@ type SurveyBundleInfo struct { func (x *SurveyBundleInfo) Reset() { *x = SurveyBundleInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[226] + mi := &file_pb_bundle_proto_msgTypes[227] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21098,7 +21161,7 @@ func (x *SurveyBundleInfo) String() string { func (*SurveyBundleInfo) ProtoMessage() {} func (x *SurveyBundleInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[226] + mi := &file_pb_bundle_proto_msgTypes[227] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21111,7 +21174,7 @@ func (x *SurveyBundleInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SurveyBundleInfo.ProtoReflect.Descriptor instead. func (*SurveyBundleInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{226} + return file_pb_bundle_proto_rawDescGZIP(), []int{227} } func (x *SurveyBundleInfo) GetBundleName() string { @@ -21189,7 +21252,7 @@ type GetQuestionnaireSurveyInfoResponse struct { func (x *GetQuestionnaireSurveyInfoResponse) Reset() { *x = GetQuestionnaireSurveyInfoResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[227] + mi := &file_pb_bundle_proto_msgTypes[228] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21202,7 +21265,7 @@ func (x *GetQuestionnaireSurveyInfoResponse) String() string { func (*GetQuestionnaireSurveyInfoResponse) ProtoMessage() {} func (x *GetQuestionnaireSurveyInfoResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[227] + mi := &file_pb_bundle_proto_msgTypes[228] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21215,7 +21278,7 @@ func (x *GetQuestionnaireSurveyInfoResponse) ProtoReflect() protoreflect.Message // Deprecated: Use GetQuestionnaireSurveyInfoResponse.ProtoReflect.Descriptor instead. func (*GetQuestionnaireSurveyInfoResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{227} + return file_pb_bundle_proto_rawDescGZIP(), []int{228} } func (x *GetQuestionnaireSurveyInfoResponse) GetUserName() string { @@ -21250,7 +21313,7 @@ type SurveyAnswer struct { func (x *SurveyAnswer) Reset() { *x = SurveyAnswer{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[228] + mi := &file_pb_bundle_proto_msgTypes[229] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21263,7 +21326,7 @@ func (x *SurveyAnswer) String() string { func (*SurveyAnswer) ProtoMessage() {} func (x *SurveyAnswer) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[228] + mi := &file_pb_bundle_proto_msgTypes[229] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21276,7 +21339,7 @@ func (x *SurveyAnswer) ProtoReflect() protoreflect.Message { // Deprecated: Use SurveyAnswer.ProtoReflect.Descriptor instead. func (*SurveyAnswer) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{228} + return file_pb_bundle_proto_rawDescGZIP(), []int{229} } func (x *SurveyAnswer) GetBundleAccountScore() int32 { @@ -21348,7 +21411,7 @@ type SurveyFeedback struct { func (x *SurveyFeedback) Reset() { *x = SurveyFeedback{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[229] + mi := &file_pb_bundle_proto_msgTypes[230] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21361,7 +21424,7 @@ func (x *SurveyFeedback) String() string { func (*SurveyFeedback) ProtoMessage() {} func (x *SurveyFeedback) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[229] + mi := &file_pb_bundle_proto_msgTypes[230] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21374,7 +21437,7 @@ func (x *SurveyFeedback) ProtoReflect() protoreflect.Message { // Deprecated: Use SurveyFeedback.ProtoReflect.Descriptor instead. func (*SurveyFeedback) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{229} + return file_pb_bundle_proto_rawDescGZIP(), []int{230} } func (x *SurveyFeedback) GetMeritsReview() string { @@ -21417,7 +21480,7 @@ type CreateQuestionnaireSurveyAnswerRequest struct { func (x *CreateQuestionnaireSurveyAnswerRequest) Reset() { *x = CreateQuestionnaireSurveyAnswerRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[230] + mi := &file_pb_bundle_proto_msgTypes[231] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21430,7 +21493,7 @@ func (x *CreateQuestionnaireSurveyAnswerRequest) String() string { func (*CreateQuestionnaireSurveyAnswerRequest) ProtoMessage() {} func (x *CreateQuestionnaireSurveyAnswerRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[230] + mi := &file_pb_bundle_proto_msgTypes[231] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21443,7 +21506,7 @@ func (x *CreateQuestionnaireSurveyAnswerRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use CreateQuestionnaireSurveyAnswerRequest.ProtoReflect.Descriptor instead. func (*CreateQuestionnaireSurveyAnswerRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{230} + return file_pb_bundle_proto_rawDescGZIP(), []int{231} } func (x *CreateQuestionnaireSurveyAnswerRequest) GetUserTel() string { @@ -21518,7 +21581,7 @@ type CreateQuestionnaireSurveyAnswerResponse struct { func (x *CreateQuestionnaireSurveyAnswerResponse) Reset() { *x = CreateQuestionnaireSurveyAnswerResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[231] + mi := &file_pb_bundle_proto_msgTypes[232] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21531,7 +21594,7 @@ func (x *CreateQuestionnaireSurveyAnswerResponse) String() string { func (*CreateQuestionnaireSurveyAnswerResponse) ProtoMessage() {} func (x *CreateQuestionnaireSurveyAnswerResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[231] + mi := &file_pb_bundle_proto_msgTypes[232] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21544,7 +21607,7 @@ func (x *CreateQuestionnaireSurveyAnswerResponse) ProtoReflect() protoreflect.Me // Deprecated: Use CreateQuestionnaireSurveyAnswerResponse.ProtoReflect.Descriptor instead. func (*CreateQuestionnaireSurveyAnswerResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{231} + return file_pb_bundle_proto_rawDescGZIP(), []int{232} } type GetQuestionnaireSurveyListRequest struct { @@ -21562,7 +21625,7 @@ type GetQuestionnaireSurveyListRequest struct { func (x *GetQuestionnaireSurveyListRequest) Reset() { *x = GetQuestionnaireSurveyListRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[232] + mi := &file_pb_bundle_proto_msgTypes[233] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21575,7 +21638,7 @@ func (x *GetQuestionnaireSurveyListRequest) String() string { func (*GetQuestionnaireSurveyListRequest) ProtoMessage() {} func (x *GetQuestionnaireSurveyListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[232] + mi := &file_pb_bundle_proto_msgTypes[233] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21588,7 +21651,7 @@ func (x *GetQuestionnaireSurveyListRequest) ProtoReflect() protoreflect.Message // Deprecated: Use GetQuestionnaireSurveyListRequest.ProtoReflect.Descriptor instead. func (*GetQuestionnaireSurveyListRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{232} + return file_pb_bundle_proto_rawDescGZIP(), []int{233} } func (x *GetQuestionnaireSurveyListRequest) GetPage() int32 { @@ -21642,7 +21705,7 @@ type SurveyListInfo struct { func (x *SurveyListInfo) Reset() { *x = SurveyListInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[233] + mi := &file_pb_bundle_proto_msgTypes[234] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21655,7 +21718,7 @@ func (x *SurveyListInfo) String() string { func (*SurveyListInfo) ProtoMessage() {} func (x *SurveyListInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[233] + mi := &file_pb_bundle_proto_msgTypes[234] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21668,7 +21731,7 @@ func (x *SurveyListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SurveyListInfo.ProtoReflect.Descriptor instead. func (*SurveyListInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{233} + return file_pb_bundle_proto_rawDescGZIP(), []int{234} } func (x *SurveyListInfo) GetUserName() string { @@ -21727,7 +21790,7 @@ type GetQuestionnaireSurveyListResponse struct { func (x *GetQuestionnaireSurveyListResponse) Reset() { *x = GetQuestionnaireSurveyListResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[234] + mi := &file_pb_bundle_proto_msgTypes[235] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -21740,7 +21803,7 @@ func (x *GetQuestionnaireSurveyListResponse) String() string { func (*GetQuestionnaireSurveyListResponse) ProtoMessage() {} func (x *GetQuestionnaireSurveyListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[234] + mi := &file_pb_bundle_proto_msgTypes[235] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -21753,7 +21816,7 @@ func (x *GetQuestionnaireSurveyListResponse) ProtoReflect() protoreflect.Message // Deprecated: Use GetQuestionnaireSurveyListResponse.ProtoReflect.Descriptor instead. func (*GetQuestionnaireSurveyListResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{234} + return file_pb_bundle_proto_rawDescGZIP(), []int{235} } func (x *GetQuestionnaireSurveyListResponse) GetSurveyList() []*SurveyListInfo { @@ -23712,7 +23775,7 @@ var file_pb_bundle_proto_rawDesc = []byte{ 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x55, 0x20, 0x01, 0x28, 0x09, 0x52, 0x24, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79, 0x49, 0x6e, 0x63, 0x72, 0x65, 0x61, 0x73, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x50, - 0x72, 0x69, 0x63, 0x65, 0x22, 0xb6, 0x01, 0x0a, 0x16, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, + 0x72, 0x69, 0x63, 0x65, 0x22, 0xd6, 0x01, 0x0a, 0x16, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, @@ -23723,13 +23786,22 @@ var file_pb_bundle_proto_rawDesc = []byte{ 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x45, 0x6e, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x45, 0x6e, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, - 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x64, 0x0a, + 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, + 0x0a, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, + 0x0d, 0x52, 0x0a, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x64, 0x0a, 0x17, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x33, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x04, 0x64, + 0x61, 0x74, 0x61, 0x22, 0x6e, 0x0a, 0x1f, 0x50, 0x61, 0x79, 0x4c, 0x61, 0x74, 0x65, 0x72, 0x42, + 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x70, 0x6f, + 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x35, 0x0a, 0x04, + 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x62, 0x75, 0x6e, + 0x64, 0x6c, 0x65, 0x2e, 0x50, 0x61, 0x79, 0x4c, 0x61, 0x74, 0x65, 0x72, 0x42, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x5f, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, @@ -26202,7 +26274,7 @@ var file_pb_bundle_proto_rawDesc = []byte{ 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, - 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x32, 0xc0, 0x51, + 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x32, 0xaa, 0x52, 0x0a, 0x06, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x12, 0x3f, 0x0a, 0x0c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x12, 0x15, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x1a, @@ -26455,408 +26527,414 @@ var file_pb_bundle_proto_rawDesc = []byte{ 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, - 0x12, 0x61, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, - 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, - 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x22, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x73, - 0x70, 0x22, 0x00, 0x12, 0x61, 0x0a, 0x16, 0x53, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x12, 0x21, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x71, - 0x1a, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x74, 0x42, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, - 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, - 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x62, 0x75, - 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, - 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, - 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, - 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x12, 0x47, 0x65, - 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, - 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6d, 0x61, - 0x67, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x1a, - 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6d, 0x61, 0x67, - 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x22, - 0x00, 0x12, 0x56, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x56, 0x65, 0x64, 0x69, 0x6f, 0x57, 0x6f, 0x72, - 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x2e, 0x47, 0x65, 0x74, 0x56, 0x65, 0x64, 0x69, 0x6f, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, - 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, - 0x47, 0x65, 0x74, 0x56, 0x65, 0x64, 0x69, 0x6f, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, - 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x12, 0x54, 0x6f, 0x42, - 0x65, 0x43, 0x6f, 0x6d, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x12, - 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x6f, 0x42, 0x65, 0x43, 0x6f, 0x6d, - 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x1e, - 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x6f, 0x42, 0x65, 0x43, 0x6f, 0x6d, 0x66, - 0x69, 0x72, 0x6d, 0x65, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, - 0x12, 0x40, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x12, - 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, - 0x57, 0x6f, 0x72, 0x6b, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x52, 0x65, 0x73, 0x70, - 0x22, 0x00, 0x12, 0x61, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x61, 0x69, 0x74, 0x43, 0x6f, 0x6e, - 0x66, 0x69, 0x72, 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x62, - 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x61, 0x69, 0x74, 0x43, 0x6f, 0x6e, - 0x66, 0x69, 0x72, 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, - 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x61, 0x69, 0x74, - 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x52, - 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, - 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, - 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6e, - 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, - 0x1a, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, - 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, - 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, - 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, - 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, - 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x2e, 0x62, 0x75, - 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x00, 0x12, 0x72, 0x0a, 0x28, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6e, - 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, - 0x79, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x2c, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, - 0x74, 0x75, 0x73, 0x41, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x79, 0x53, - 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x1a, 0x16, 0x2e, 0x62, 0x75, - 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x6e, 0x66, - 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x12, 0x25, 0x2e, 0x62, - 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x55, 0x73, 0x65, 0x72, 0x41, 0x6e, 0x64, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x6e, 0x66, - 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x22, 0x00, 0x12, 0x5d, - 0x0a, 0x18, 0x53, 0x6f, 0x66, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x6e, 0x66, 0x69, - 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x27, 0x2e, 0x62, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x6f, 0x66, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x6e, - 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, - 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, - 0x12, 0x47, 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, - 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, - 0x6b, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x51, 0x75, 0x65, 0x72, 0x79, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x0a, 0x41, 0x73, - 0x73, 0x69, 0x67, 0x6e, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x19, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, - 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, - 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, - 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x43, 0x6f, - 0x75, 0x6e, 0x74, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x70, 0x64, - 0x61, 0x74, 0x65, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, - 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, - 0x12, 0x63, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x73, - 0x69, 0x67, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x12, 0x22, 0x2e, 0x62, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, - 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, - 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x73, - 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x61, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x45, 0x6d, 0x70, 0x6c, - 0x6f, 0x79, 0x65, 0x65, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x54, 0x61, 0x73, 0x6b, - 0x73, 0x12, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x45, 0x6d, 0x70, 0x6c, 0x6f, - 0x79, 0x65, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x45, 0x6d, 0x70, - 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x14, 0x43, 0x6f, 0x6d, 0x70, - 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x6c, 0x79, - 0x12, 0x23, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, - 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, + 0x12, 0x68, 0x0a, 0x1b, 0x50, 0x61, 0x79, 0x4c, 0x61, 0x74, 0x65, 0x72, 0x42, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, + 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, + 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, + 0x27, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x50, 0x61, 0x79, 0x4c, 0x61, 0x74, 0x65, + 0x72, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x78, + 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x61, 0x0a, 0x16, 0x47, 0x65, + 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, + 0x79, 0x6f, 0x75, 0x74, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, + 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, + 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x47, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, + 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x61, 0x0a, + 0x16, 0x53, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, + 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x53, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, + 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x22, 0x2e, 0x62, 0x75, 0x6e, + 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, + 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, + 0x12, 0x52, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, + 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, + 0x65, 0x74, 0x55, 0x73, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, + 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, + 0x55, 0x73, 0x65, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, + 0x73, 0x70, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, + 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, + 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x57, 0x6f, 0x72, 0x6b, + 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x44, + 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x56, 0x0a, 0x12, 0x47, + 0x65, 0x74, 0x56, 0x65, 0x64, 0x69, 0x6f, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, + 0x6c, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x56, 0x65, + 0x64, 0x69, 0x6f, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, + 0x1a, 0x1f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x56, 0x65, 0x64, + 0x69, 0x6f, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, + 0x70, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x12, 0x54, 0x6f, 0x42, 0x65, 0x43, 0x6f, 0x6d, 0x66, 0x69, + 0x72, 0x6d, 0x65, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x54, 0x6f, 0x42, 0x65, 0x43, 0x6f, 0x6d, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, + 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x65, 0x2e, 0x54, 0x6f, 0x42, 0x65, 0x43, 0x6f, 0x6d, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x57, + 0x6f, 0x72, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x0b, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x12, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x52, 0x65, + 0x71, 0x1a, 0x17, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, + 0x72, 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x61, 0x0a, 0x16, + 0x47, 0x65, 0x74, 0x57, 0x61, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x57, 0x6f, + 0x72, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, + 0x47, 0x65, 0x74, 0x57, 0x61, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x57, 0x6f, + 0x72, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x61, 0x69, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, + 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, + 0x5e, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x65, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x62, 0x75, 0x6e, + 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, + 0x4c, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, + 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, + 0x6e, 0x66, 0x6f, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, + 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, + 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x52, + 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, + 0x6f, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x28, 0x55, + 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x53, 0x65, 0x72, 0x69, 0x61, + 0x6c, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x2c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x41, 0x6e, 0x64, + 0x50, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x79, 0x53, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x4e, + 0x75, 0x6d, 0x62, 0x65, 0x72, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, - 0x51, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x50, 0x72, 0x6f, - 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, - 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, - 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, - 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, - 0x69, 0x67, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, - 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, 0x69, - 0x67, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, - 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, - 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, - 0x63, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x75, 0x6e, 0x64, - 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, - 0x6c, 0x65, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, - 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x22, 0x00, 0x12, 0x50, 0x0a, 0x13, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, - 0x65, 0x54, 0x61, 0x73, 0x6b, 0x42, 0x79, 0x55, 0x55, 0x49, 0x44, 0x12, 0x22, 0x2e, 0x62, 0x75, - 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x54, 0x61, - 0x73, 0x6b, 0x42, 0x79, 0x55, 0x55, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x72, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x54, 0x61, 0x73, - 0x6b, 0x41, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x55, - 0x55, 0x49, 0x44, 0x12, 0x28, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, - 0x54, 0x61, 0x73, 0x6b, 0x41, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, - 0x42, 0x79, 0x55, 0x55, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, + 0x57, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, + 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x12, 0x25, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, + 0x41, 0x75, 0x74, 0x6f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6e, + 0x64, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, + 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x18, 0x53, 0x6f, 0x66, 0x74, + 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, + 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x27, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x6f, + 0x66, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, + 0x65, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x50, 0x65, + 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x51, 0x75, 0x65, 0x72, 0x79, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x0a, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x54, 0x61, + 0x73, 0x6b, 0x12, 0x19, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, + 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, + 0x65, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x21, 0x2e, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x6e, + 0x64, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x16, 0x47, 0x65, + 0x74, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x63, + 0x6f, 0x72, 0x64, 0x73, 0x12, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x52, 0x65, + 0x63, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, + 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x65, 0x2e, 0x52, 0x65, 0x63, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, + 0x63, 0x6f, 0x72, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, + 0x61, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x41, 0x73, + 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x54, 0x61, 0x73, 0x6b, 0x73, 0x12, 0x20, 0x2e, 0x62, 0x75, + 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x54, 0x61, 0x73, + 0x6b, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x54, + 0x61, 0x73, 0x6b, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x22, 0x00, 0x12, 0x55, 0x0a, 0x14, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, + 0x73, 0x6b, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x6c, 0x79, 0x12, 0x23, 0x2e, 0x62, 0x75, 0x6e, + 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, + 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x6c, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x12, 0x55, 0x70, 0x64, + 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x12, + 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, + 0x61, 0x73, 0x6b, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, + 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6b, 0x0a, 0x18, + 0x47, 0x65, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x63, + 0x6f, 0x72, 0x64, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x63, 0x6f, + 0x72, 0x64, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x26, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, + 0x69, 0x67, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x16, 0x47, 0x65, 0x74, + 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, + 0x6e, 0x63, 0x65, 0x12, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x41, 0x72, 0x74, + 0x69, 0x73, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x42, 0x61, 0x6c, + 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x50, + 0x0a, 0x13, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x42, + 0x79, 0x55, 0x55, 0x49, 0x44, 0x12, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, + 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x42, 0x79, 0x55, 0x55, + 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, + 0x12, 0x72, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x63, 0x74, 0x75, 0x61, + 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x55, 0x55, 0x49, 0x44, 0x12, 0x28, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x55, 0x55, 0x49, 0x44, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x0f, 0x42, 0x61, - 0x74, 0x63, 0x68, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x1e, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x41, 0x73, 0x73, 0x69, - 0x67, 0x6e, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x65, 0x72, - 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, - 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x22, 0x00, 0x12, 0x59, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, - 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x4c, 0x69, 0x73, 0x74, - 0x12, 0x18, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x51, 0x75, - 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x62, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, - 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, - 0x5b, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, - 0x6b, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x12, 0x1f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, - 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, - 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, - 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x14, - 0x53, 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x61, - 0x79, 0x6f, 0x75, 0x74, 0x12, 0x1f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x65, - 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x61, 0x79, 0x6f, - 0x75, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x53, - 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x61, 0x79, - 0x6f, 0x75, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x19, 0x47, 0x65, 0x74, - 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x42, 0x72, 0x65, - 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x12, 0x25, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, - 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x42, 0x72, 0x65, - 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x55, 0x70, - 0x6c, 0x6f, 0x61, 0x64, 0x42, 0x72, 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x50, 0x65, - 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x12, 0x1c, 0x2e, 0x62, 0x75, - 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x41, 0x73, 0x73, 0x69, - 0x67, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, - 0x6c, 0x65, 0x2e, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x1e, 0x52, 0x65, - 0x76, 0x65, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, - 0x6f, 0x6e, 0x42, 0x79, 0x55, 0x55, 0x49, 0x44, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x2d, 0x2e, 0x62, - 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x52, 0x65, 0x76, 0x65, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, - 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x55, 0x55, 0x49, 0x44, - 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x47, 0x65, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x53, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x55, 0x55, 0x49, 0x44, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x0f, 0x42, 0x61, 0x74, 0x63, 0x68, 0x41, 0x73, 0x73, + 0x69, 0x67, 0x6e, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x54, 0x61, 0x73, 0x6b, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, + 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, + 0x54, 0x61, 0x73, 0x6b, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x42, 0x61, + 0x74, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x59, + 0x0a, 0x18, 0x47, 0x65, 0x74, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, + 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x62, 0x75, 0x6e, + 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x41, 0x72, + 0x74, 0x69, 0x73, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x14, 0x47, 0x65, 0x74, + 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x61, 0x79, 0x6f, 0x75, + 0x74, 0x12, 0x1f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x65, + 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, + 0x65, 0x71, 0x1a, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, + 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, + 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x14, 0x53, 0x65, 0x74, 0x50, 0x65, 0x6e, + 0x64, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x12, 0x1f, + 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, + 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x71, 0x1a, + 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, + 0x69, 0x6e, 0x67, 0x54, 0x61, 0x73, 0x6b, 0x4c, 0x61, 0x79, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x73, + 0x70, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, + 0x67, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x42, 0x72, 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, + 0x12, 0x25, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, + 0x67, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x42, 0x72, 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x42, 0x72, + 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, + 0x00, 0x12, 0x51, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x41, + 0x73, 0x73, 0x69, 0x67, 0x6e, 0x12, 0x1c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x50, + 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x50, 0x65, 0x6e, + 0x64, 0x69, 0x6e, 0x67, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x1e, 0x52, 0x65, 0x76, 0x65, 0x72, 0x74, 0x54, 0x61, + 0x73, 0x6b, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x55, 0x55, + 0x49, 0x44, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x2d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, + 0x52, 0x65, 0x76, 0x65, 0x72, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, + 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x55, 0x55, 0x49, 0x44, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, + 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x15, + 0x41, 0x64, 0x64, 0x48, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, + 0x69, 0x67, 0x6e, 0x65, 0x65, 0x12, 0x24, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x41, + 0x64, 0x64, 0x48, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x54, 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, 0x69, + 0x67, 0x6e, 0x65, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x22, 0x00, 0x12, 0x54, 0x0a, 0x15, 0x41, 0x64, 0x64, 0x48, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x54, - 0x61, 0x73, 0x6b, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x65, 0x12, 0x24, 0x2e, 0x62, 0x75, - 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x48, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x54, 0x61, - 0x73, 0x6b, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x59, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x54, - 0x61, 0x73, 0x6b, 0x57, 0x6f, 0x72, 0x6b, 0x4c, 0x6f, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1f, - 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x57, 0x6f, 0x72, 0x6b, - 0x4c, 0x6f, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x57, 0x6f, 0x72, - 0x6b, 0x4c, 0x6f, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, - 0x6b, 0x57, 0x6f, 0x72, 0x6b, 0x4c, 0x6f, 0x67, 0x12, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, - 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x57, 0x6f, 0x72, 0x6b, - 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x0f, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, - 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x12, 0x1a, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, - 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x73, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x70, - 0x22, 0x00, 0x12, 0x61, 0x0a, 0x16, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x21, 0x2e, 0x62, + 0x22, 0x00, 0x12, 0x59, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x54, 0x61, 0x73, 0x6b, 0x57, 0x6f, 0x72, + 0x6b, 0x4c, 0x6f, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x57, 0x6f, 0x72, 0x6b, 0x4c, 0x6f, 0x67, 0x51, 0x75, 0x65, + 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x73, 0x6b, 0x57, 0x6f, 0x72, 0x6b, 0x4c, 0x6f, 0x67, 0x51, 0x75, + 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4f, 0x0a, + 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x57, 0x6f, 0x72, 0x6b, 0x4c, + 0x6f, 0x67, 0x12, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x57, 0x6f, 0x72, 0x6b, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, + 0x0a, 0x0f, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, + 0x73, 0x12, 0x1a, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, + 0x63, 0x73, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, 0x75, + 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x61, 0x0a, 0x16, + 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, + 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, + 0x61, 0x0a, 0x16, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x4f, 0x70, 0x65, - 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, - 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, - 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x61, 0x0a, 0x16, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, - 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, - 0x65, 0x71, 0x1a, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, - 0x69, 0x63, 0x73, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x70, 0x0a, 0x1b, 0x4d, 0x65, 0x74, 0x72, - 0x69, 0x63, 0x73, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, - 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x26, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x50, 0x75, - 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, - 0x27, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x45, 0x78, - 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x6d, 0x0a, 0x1a, 0x4d, 0x65, - 0x74, 0x72, 0x69, 0x63, 0x73, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, - 0x6e, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x25, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, - 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x41, - 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, - 0x26, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x78, 0x70, - 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x18, 0x4d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, - 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x23, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, - 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x53, 0x75, 0x62, 0x6d, 0x69, - 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x24, 0x2e, 0x62, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, - 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, - 0x22, 0x00, 0x12, 0x7f, 0x0a, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x54, 0x68, 0x65, 0x4f, 0x72, - 0x64, 0x65, 0x72, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, - 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2b, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, + 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, + 0x22, 0x00, 0x12, 0x70, 0x0a, 0x1b, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, 0x75, 0x6e, + 0x64, 0x6c, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, + 0x74, 0x12, 0x26, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, + 0x63, 0x73, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, + 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x27, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, + 0x73, 0x70, 0x22, 0x00, 0x12, 0x6d, 0x0a, 0x1a, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x41, + 0x72, 0x74, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x78, 0x70, 0x6f, + 0x72, 0x74, 0x12, 0x25, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, + 0x69, 0x63, 0x73, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x26, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x41, 0x72, 0x74, 0x69, 0x73, 0x74, + 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, + 0x70, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x18, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x56, 0x69, + 0x64, 0x65, 0x6f, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, + 0x23, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, + 0x56, 0x69, 0x64, 0x65, 0x6f, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, + 0x74, 0x52, 0x65, 0x71, 0x1a, 0x24, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4d, 0x65, + 0x74, 0x72, 0x69, 0x63, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, + 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x7f, 0x0a, 0x20, 0x51, 0x75, 0x65, 0x72, 0x79, 0x54, 0x68, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x52, 0x65, 0x71, 0x1a, 0x2c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x51, 0x75, 0x65, - 0x72, 0x79, 0x54, 0x68, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, - 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, - 0x70, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x76, - 0x6f, 0x69, 0x63, 0x65, 0x12, 0x18, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x19, + 0x12, 0x2b, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x54, + 0x68, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x49, + 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x2c, 0x2e, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x54, 0x68, 0x65, 0x4f, + 0x72, 0x64, 0x65, 0x72, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, + 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x46, 0x0a, + 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x18, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, - 0x76, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x6a, 0x0a, 0x19, 0x43, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x70, 0x65, 0x72, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, - 0x65, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x24, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x76, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x19, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x52, + 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x6a, 0x0a, 0x19, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, + 0x61, 0x70, 0x65, 0x72, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64, 0x64, 0x72, 0x65, + 0x73, 0x73, 0x12, 0x24, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x50, 0x61, 0x70, 0x65, 0x72, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64, + 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x25, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x70, 0x65, 0x72, 0x49, 0x6e, 0x76, - 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x25, - 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, - 0x70, 0x65, 0x72, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, - 0x73, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x49, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x49, 0x6e, - 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x19, 0x2e, 0x62, 0x75, 0x6e, 0x64, - 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4c, 0x69, 0x73, - 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, - 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, - 0x22, 0x00, 0x12, 0x67, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x6f, - 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x23, - 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, - 0x76, 0x6f, 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, - 0x52, 0x65, 0x71, 0x1a, 0x24, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x70, 0x64, - 0x61, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, - 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x15, 0x47, - 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, - 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, - 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x49, - 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, - 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, - 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x15, 0x47, - 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, - 0x65, 0x72, 0x4e, 0x6f, 0x12, 0x20, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, - 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, - 0x72, 0x4e, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, - 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, - 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x64, 0x0a, 0x17, 0x47, - 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, - 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x12, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, - 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, - 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x23, 0x2e, 0x62, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, - 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, - 0x00, 0x12, 0x4f, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x76, 0x6f, - 0x69, 0x63, 0x65, 0x4e, 0x6f, 0x12, 0x1b, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, - 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4e, 0x6f, 0x52, - 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4c, - 0x61, 0x73, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4e, 0x6f, 0x52, 0x65, 0x73, 0x70, - 0x22, 0x00, 0x12, 0x52, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x61, 0x49, 0x6e, 0x76, 0x6f, - 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x61, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, - 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, - 0x70, 0x64, 0x61, 0x74, 0x61, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, - 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x12, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, - 0x57, 0x6f, 0x72, 0x6b, 0x43, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x2e, 0x62, - 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x57, 0x6f, 0x72, 0x6b, - 0x43, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x1e, 0x2e, 0x62, 0x75, - 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x43, - 0x61, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x4e, 0x0a, - 0x0f, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, - 0x12, 0x1b, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, - 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, - 0x11, 0x47, 0x65, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, - 0x69, 0x6c, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, - 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, - 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x15, 0x47, - 0x65, 0x74, 0x52, 0x65, 0x66, 0x65, 0x72, 0x72, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, - 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x52, 0x65, - 0x66, 0x65, 0x72, 0x72, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x2e, 0x52, 0x65, 0x66, 0x65, 0x72, 0x72, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, - 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x46, 0x0a, - 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x12, - 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, - 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, + 0x6f, 0x69, 0x63, 0x65, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x73, 0x70, 0x22, + 0x00, 0x12, 0x49, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4c, + 0x69, 0x73, 0x74, 0x12, 0x19, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, + 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1a, + 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, + 0x63, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x18, + 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, + 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x23, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x45, + 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x24, 0x2e, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x76, + 0x6f, 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, + 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, + 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, + 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, + 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, + 0x1a, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, + 0x6f, 0x69, 0x63, 0x65, 0x45, 0x78, 0x70, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, + 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, + 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x12, 0x20, + 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, + 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x52, 0x65, 0x71, + 0x1a, 0x21, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x64, + 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x52, + 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x64, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x6f, + 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, + 0x12, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x76, + 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, + 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x23, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, + 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, + 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x4f, 0x0a, 0x10, 0x47, + 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4e, 0x6f, 0x12, + 0x1b, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74, + 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x4e, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x62, + 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x76, + 0x6f, 0x69, 0x63, 0x65, 0x4e, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x11, + 0x55, 0x70, 0x64, 0x61, 0x74, 0x61, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, + 0x6f, 0x12, 0x1c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, + 0x61, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, + 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x61, 0x49, + 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, + 0x12, 0x55, 0x0a, 0x12, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x43, 0x61, + 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, + 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x43, 0x61, 0x73, 0x74, 0x49, 0x6e, + 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x45, + 0x78, 0x70, 0x6f, 0x72, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x43, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x66, + 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x43, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x62, 0x75, 0x6e, + 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x43, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x2e, 0x62, + 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x44, 0x65, + 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x62, 0x75, + 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x44, 0x65, 0x74, + 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x46, 0x0a, + 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, + 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, - 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, - 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, - 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, - 0x72, 0x61, 0x63, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, - 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x44, 0x65, 0x74, 0x61, - 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, - 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, - 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8d, 0x01, 0x0a, 0x22, - 0x47, 0x65, 0x74, 0x44, 0x65, 0x76, 0x65, 0x6c, 0x6f, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, - 0x63, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, - 0x49, 0x44, 0x12, 0x31, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x44, - 0x65, 0x76, 0x65, 0x6c, 0x6f, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x73, - 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, 0x49, 0x44, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, - 0x65, 0x74, 0x44, 0x65, 0x76, 0x65, 0x6c, 0x6f, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, 0x63, - 0x6c, 0x65, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, 0x49, - 0x44, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x81, 0x01, 0x0a, 0x1e, - 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x73, - 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, 0x49, 0x44, 0x12, 0x2d, - 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, - 0x6e, 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, - 0x63, 0x74, 0x55, 0x55, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, - 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, - 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, - 0x74, 0x55, 0x55, 0x49, 0x44, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, - 0x4d, 0x0a, 0x1c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, - 0x63, 0x6f, 0x72, 0x64, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x55, 0x75, 0x69, 0x64, 0x12, - 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, - 0x63, 0x6f, 0x72, 0x64, 0x1a, 0x16, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, - 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, - 0x0a, 0x14, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x4f, 0x72, 0x64, - 0x65, 0x72, 0x55, 0x75, 0x69, 0x64, 0x12, 0x23, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, - 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, - 0x55, 0x75, 0x69, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x62, 0x75, - 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, - 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x6c, 0x0a, - 0x17, 0x53, 0x65, 0x6e, 0x64, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, - 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x12, 0x26, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, - 0x65, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, - 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x1a, 0x27, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x51, 0x75, - 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, - 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x75, 0x0a, 0x1a, 0x47, - 0x65, 0x74, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, - 0x75, 0x72, 0x76, 0x65, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x2e, 0x62, 0x75, 0x6e, 0x64, - 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, - 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, - 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, - 0x74, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, - 0x72, 0x76, 0x65, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, 0x1f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, - 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, - 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x12, 0x2e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, - 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, - 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x75, 0x0a, 0x1a, 0x47, 0x65, 0x74, - 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, - 0x76, 0x65, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x29, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, - 0x2e, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, - 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x51, + 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x52, 0x65, 0x66, 0x65, + 0x72, 0x72, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, + 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x52, 0x65, 0x66, 0x65, 0x72, 0x72, 0x61, 0x6c, + 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x22, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x52, 0x65, 0x66, 0x65, 0x72, + 0x72, 0x61, 0x6c, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, + 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, + 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, + 0x4e, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, + 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x1c, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, + 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, + 0x54, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x44, 0x65, + 0x74, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, + 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, + 0x74, 0x72, 0x61, 0x63, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8d, 0x01, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x44, 0x65, 0x76, + 0x65, 0x6c, 0x6f, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x73, 0x42, 0x79, + 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, 0x49, 0x44, 0x12, 0x31, 0x2e, 0x62, + 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x65, 0x76, 0x65, 0x6c, 0x6f, 0x70, + 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x32, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x65, 0x76, 0x65, + 0x6c, 0x6f, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x43, + 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, 0x49, 0x44, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x81, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, + 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, 0x49, 0x44, 0x12, 0x2d, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, + 0x65, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, 0x63, 0x6c, + 0x65, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, 0x49, 0x44, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x79, 0x63, 0x6c, 0x65, + 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x55, 0x55, 0x49, 0x44, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x1c, 0x55, 0x70, 0x64, + 0x61, 0x74, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x42, 0x79, + 0x4f, 0x72, 0x64, 0x65, 0x72, 0x55, 0x75, 0x69, 0x64, 0x12, 0x13, 0x2e, 0x62, 0x75, 0x6e, 0x64, + 0x6c, 0x65, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x1a, 0x16, + 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x14, 0x4f, 0x72, 0x64, 0x65, + 0x72, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x55, 0x75, 0x69, 0x64, + 0x12, 0x23, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, + 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x55, 0x75, 0x69, 0x64, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x4f, + 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, + 0x6f, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x17, 0x53, 0x65, 0x6e, 0x64, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, - 0x65, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, - 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x65, 0x79, 0x12, 0x26, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x6e, 0x64, + 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, + 0x76, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x62, 0x75, 0x6e, + 0x64, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, + 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x75, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x73, + 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x49, + 0x6e, 0x66, 0x6f, 0x12, 0x29, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, + 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, + 0x76, 0x65, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, + 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x73, 0x74, + 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x49, 0x6e, + 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, + 0x1f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, + 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, + 0x12, 0x2e, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, + 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, + 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x2f, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, + 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, + 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x22, 0x00, 0x12, 0x75, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, + 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x4c, 0x69, 0x73, + 0x74, 0x12, 0x29, 0x2e, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x51, 0x75, + 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, + 0x79, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x62, + 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, + 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x4c, 0x69, 0x73, 0x74, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -26871,7 +26949,7 @@ func file_pb_bundle_proto_rawDescGZIP() []byte { return file_pb_bundle_proto_rawDescData } -var file_pb_bundle_proto_msgTypes = make([]protoimpl.MessageInfo, 235) +var file_pb_bundle_proto_msgTypes = make([]protoimpl.MessageInfo, 236) var file_pb_bundle_proto_goTypes = []interface{}{ (*GetInEffectOrderRecordRequest)(nil), // 0: bundle.GetInEffectOrderRecordRequest (*QueryTheOrderSnapshotInformationReq)(nil), // 1: bundle.QueryTheOrderSnapshotInformationReq @@ -26949,165 +27027,166 @@ var file_pb_bundle_proto_goTypes = []interface{}{ (*BundleBalanceExportItem)(nil), // 73: bundle.BundleBalanceExportItem (*BundleBalanceExportReq)(nil), // 74: bundle.BundleBalanceExportReq (*BundleBalanceExportResp)(nil), // 75: bundle.BundleBalanceExportResp - (*GetBundleBalanceListResp)(nil), // 76: bundle.GetBundleBalanceListResp - (*CreateBundleBalanceReq)(nil), // 77: bundle.CreateBundleBalanceReq - (*CreateBundleBalanceResp)(nil), // 78: bundle.CreateBundleBalanceResp - (*AddBundleBalanceReq)(nil), // 79: bundle.AddBundleBalanceReq - (*AddBundleBalanceResp)(nil), // 80: bundle.AddBundleBalanceResp - (*GetUsedRecordListReq)(nil), // 81: bundle.GetUsedRecordListReq - (*GetUsedRecordListResp)(nil), // 82: bundle.GetUsedRecordListResp - (*WorkCastItem)(nil), // 83: bundle.WorkCastItem - (*GetImageWorkDetailReq)(nil), // 84: bundle.GetImageWorkDetailReq - (*GetVedioWorkDetailReq)(nil), // 85: bundle.GetVedioWorkDetailReq - (*GetImageWorkDetailResp)(nil), // 86: bundle.GetImageWorkDetailResp - (*GetVedioeWorkDetailResp)(nil), // 87: bundle.GetVedioeWorkDetailResp - (*ToBeComfirmedWorksReq)(nil), // 88: bundle.ToBeComfirmedWorksReq - (*WorkItem)(nil), // 89: bundle.workItem - (*ToBeComfirmedWorksResp)(nil), // 90: bundle.ToBeComfirmedWorksResp - (*GetBundleBalanceByUserIdReq)(nil), // 91: bundle.GetBundleBalanceByUserIdReq - (*GetBundleBalanceByUserIdResp)(nil), // 92: bundle.GetBundleBalanceByUserIdResp - (*GetBundleOrderListByUserIdReq)(nil), // 93: bundle.GetBundleOrderListByUserIdReq - (*BalanceOrderItem)(nil), // 94: bundle.BalanceOrderItem - (*GetBundleOrderListByUserIdResp)(nil), // 95: bundle.GetBundleOrderListByUserIdResp - (*GetBundleBalanceByOrderUUIDReq)(nil), // 96: bundle.GetBundleBalanceByOrderUUIDReq - (*GetBundleBalanceByOrderUUIDResp)(nil), // 97: bundle.GetBundleBalanceByOrderUUIDResp - (*OnlyAddValueListByOrderNoRequest)(nil), // 98: bundle.OnlyAddValueListByOrderNoRequest - (*OnlyAddValueListByOrderNoResp)(nil), // 99: bundle.OnlyAddValueListByOrderNoResp - (*AddBundleInfo)(nil), // 100: bundle.AddBundleInfo - (*UpdateStatusAndPayTimeBySerialNumber)(nil), // 101: bundle.UpdateStatusAndPayTimeBySerialNumber - (*ConfirmWorkReq)(nil), // 102: bundle.ConfirmWorkReq - (*ConfirmWorkResp)(nil), // 103: bundle.ConfirmWorkResp - (*ConfirmWorkItem)(nil), // 104: bundle.ConfirmWorkItem - (*GetWaitConfirmWorkListReq)(nil), // 105: bundle.GetWaitConfirmWorkListReq - (*GetWaitConfirmWorkListResp)(nil), // 106: bundle.GetWaitConfirmWorkListResp - (*AutoCreateUserAndOrderRequest)(nil), // 107: bundle.AutoCreateUserAndOrderRequest - (*UnfinishedInfos)(nil), // 108: bundle.UnfinishedInfos - (*UnfinishedInfo)(nil), // 109: bundle.UnfinishedInfo - (*SoftDeleteUnfinishedInfoRequest)(nil), // 110: bundle.SoftDeleteUnfinishedInfoRequest - (*BundleActivateReq)(nil), // 111: bundle.BundleActivateReq - (*BundleActivateResp)(nil), // 112: bundle.BundleActivateResp - (*TaskQueryRequest)(nil), // 113: bundle.TaskQueryRequest - (*TaskQueryResponse)(nil), // 114: bundle.TaskQueryResponse - (*TaskManagementInfo)(nil), // 115: bundle.TaskManagementInfo - (*TaskAssignRequest)(nil), // 116: bundle.TaskAssignRequest - (*UpdatePendingCountRequest)(nil), // 117: bundle.UpdatePendingCountRequest - (*AddHiddenTaskAssigneeRequest)(nil), // 118: bundle.AddHiddenTaskAssigneeRequest - (*RecentAssignRecordsRequest)(nil), // 119: bundle.RecentAssignRecordsRequest - (*RecentAssigneeItem)(nil), // 120: bundle.RecentAssigneeItem - (*RecentAssignRecordsResponse)(nil), // 121: bundle.RecentAssignRecordsResponse - (*EmployeeTaskQueryRequest)(nil), // 122: bundle.EmployeeTaskQueryRequest - (*EmployeeTaskQueryResponse)(nil), // 123: bundle.EmployeeTaskQueryResponse - (*TaskAssignRecordInfo)(nil), // 124: bundle.TaskAssignRecordInfo - (*BatchAssignTaskItem)(nil), // 125: bundle.BatchAssignTaskItem - (*BatchAssignTaskRequest)(nil), // 126: bundle.BatchAssignTaskRequest - (*CompleteTaskManuallyRequest)(nil), // 127: bundle.CompleteTaskManuallyRequest - (*TerminateTaskByUUIDRequest)(nil), // 128: bundle.TerminateTaskByUUIDRequest - (*BatchTerminateTaskRequest)(nil), // 129: bundle.BatchTerminateTaskRequest - (*RevertTaskCompletionByUUIDItemRequest)(nil), // 130: bundle.RevertTaskCompletionByUUIDItemRequest - (*GetTaskActualStatusByUUIDRequest)(nil), // 131: bundle.GetTaskActualStatusByUUIDRequest - (*GetTaskActualStatusByUUIDResponse)(nil), // 132: bundle.GetTaskActualStatusByUUIDResponse - (*UpdateTaskProgressRequest)(nil), // 133: bundle.UpdateTaskProgressRequest - (*TaskAssignRecordsQueryRequest)(nil), // 134: bundle.TaskAssignRecordsQueryRequest - (*ComResponse)(nil), // 135: bundle.ComResponse - (*TaskAssignRecordsQueryResponse)(nil), // 136: bundle.TaskAssignRecordsQueryResponse - (*TaskAssignRecordsSummary)(nil), // 137: bundle.TaskAssignRecordsSummary - (*ArtistUploadStatsItem)(nil), // 138: bundle.ArtistUploadStatsItem - (*ArtistUploadStatsResponse)(nil), // 139: bundle.ArtistUploadStatsResponse - (*PendingUploadBreakdownRequest)(nil), // 140: bundle.PendingUploadBreakdownRequest - (*PendingUploadBreakdownItem)(nil), // 141: bundle.PendingUploadBreakdownItem - (*PendingUploadBreakdownResponse)(nil), // 142: bundle.PendingUploadBreakdownResponse - (*PendingAssignRequest)(nil), // 143: bundle.PendingAssignRequest - (*PendingAssignItem)(nil), // 144: bundle.PendingAssignItem - (*PendingAssignResponse)(nil), // 145: bundle.PendingAssignResponse - (*ArtistBundleBalanceRequest)(nil), // 146: bundle.ArtistBundleBalanceRequest - (*ArtistBundleBalanceResponse)(nil), // 147: bundle.ArtistBundleBalanceResponse - (*SetBundleBalanceLayoutReq)(nil), // 148: bundle.SetBundleBalanceLayoutReq - (*SetBundleBalanceLayoutResp)(nil), // 149: bundle.SetBundleBalanceLayoutResp - (*GetBundleBalanceLayoutReq)(nil), // 150: bundle.GetBundleBalanceLayoutReq - (*GetBundleBalanceLayoutResp)(nil), // 151: bundle.GetBundleBalanceLayoutResp - (*GetPendingTaskLayoutReq)(nil), // 152: bundle.GetPendingTaskLayoutReq - (*GetPendingTaskLayoutResp)(nil), // 153: bundle.GetPendingTaskLayoutResp - (*SetPendingTaskLayoutReq)(nil), // 154: bundle.SetPendingTaskLayoutReq - (*SetPendingTaskLayoutResp)(nil), // 155: bundle.SetPendingTaskLayoutResp - (*TaskWorkLogQueryRequest)(nil), // 156: bundle.TaskWorkLogQueryRequest - (*TaskWorkLogInfo)(nil), // 157: bundle.TaskWorkLogInfo - (*TaskWorkLogQueryResponse)(nil), // 158: bundle.TaskWorkLogQueryResponse - (*CreateTaskWorkLogRequest)(nil), // 159: bundle.CreateTaskWorkLogRequest - (*MetricsBusinessReq)(nil), // 160: bundle.MetricsBusinessReq - (*MetricsBusinessResp)(nil), // 161: bundle.MetricsBusinessResp - (*MetricsOperatingCreateReq)(nil), // 162: bundle.MetricsOperatingCreateReq - (*MetricsOperatingCreateResp)(nil), // 163: bundle.MetricsOperatingCreateResp - (*MetricsOperatingStatusReq)(nil), // 164: bundle.MetricsOperatingStatusReq - (*MetricsOperatingStatusResp)(nil), // 165: bundle.MetricsOperatingStatusResp - (*MetricsBundlePurchaseExportReq)(nil), // 166: bundle.MetricsBundlePurchaseExportReq - (*MetricsBundlePurchaseExportResp)(nil), // 167: bundle.MetricsBundlePurchaseExportResp - (*MetricsBundlePurchaseItem)(nil), // 168: bundle.MetricsBundlePurchaseItem - (*MetricsArtistAccountExportReq)(nil), // 169: bundle.MetricsArtistAccountExportReq - (*MetricsArtistAccountExportResp)(nil), // 170: bundle.MetricsArtistAccountExportResp - (*MetricsArtistAccountExportItem)(nil), // 171: bundle.MetricsArtistAccountExportItem - (*MetricsVideoSubmitExportReq)(nil), // 172: bundle.MetricsVideoSubmitExportReq - (*MetricsVideoSubmitExportResp)(nil), // 173: bundle.MetricsVideoSubmitExportResp - (*MetricsVideoSubmitExportItem)(nil), // 174: bundle.MetricsVideoSubmitExportItem - (*MetricsBalanceDetailExportReq)(nil), // 175: bundle.MetricsBalanceDetailExportReq - (*CustomerListRequest)(nil), // 176: bundle.CustomerListRequest - (*CustomerListResponse)(nil), // 177: bundle.CustomerListResponse - (*CustomerDetailRequest)(nil), // 178: bundle.CustomerDetailRequest - (*CustomerDetailResponse)(nil), // 179: bundle.CustomerDetailResponse - (*CustomerUpdateRequest)(nil), // 180: bundle.CustomerUpdateRequest - (*CustomerInfo)(nil), // 181: bundle.CustomerInfo - (*Customer)(nil), // 182: bundle.Customer - (*ReferralPersonListRequest)(nil), // 183: bundle.ReferralPersonListRequest - (*ReferralPersonListResponse)(nil), // 184: bundle.ReferralPersonListResponse - (*ContractUpdateRequest)(nil), // 185: bundle.ContractUpdateRequest - (*ContractListRequest)(nil), // 186: bundle.ContractListRequest - (*ContractListResponse)(nil), // 187: bundle.ContractListResponse - (*ContractDetailRequest)(nil), // 188: bundle.ContractDetailRequest - (*ContractDetailResponse)(nil), // 189: bundle.ContractDetailResponse - (*GetDevelopmentCyclesByContractUUIDRequest)(nil), // 190: bundle.GetDevelopmentCyclesByContractUUIDRequest - (*GetDevelopmentCyclesByContractUUIDResponse)(nil), // 191: bundle.GetDevelopmentCyclesByContractUUIDResponse - (*GetPaymentCyclesByContractUUIDRequest)(nil), // 192: bundle.GetPaymentCyclesByContractUUIDRequest - (*GetPaymentCyclesByContractUUIDResponse)(nil), // 193: bundle.GetPaymentCyclesByContractUUIDResponse - (*AttachmentItem)(nil), // 194: bundle.AttachmentItem - (*ContractInfo)(nil), // 195: bundle.ContractInfo - (*Contract)(nil), // 196: bundle.Contract - (*ContractPaymentCycle)(nil), // 197: bundle.ContractPaymentCycle - (*DevelopmentCycle)(nil), // 198: bundle.DevelopmentCycle - (*CreateInvoiceReq)(nil), // 199: bundle.CreateInvoiceReq - (*CreateInvoiceResp)(nil), // 200: bundle.CreateInvoiceResp - (*CreatePaperInvoiceAddressReq)(nil), // 201: bundle.CreatePaperInvoiceAddressReq - (*CreatePaperInvoiceAddressResp)(nil), // 202: bundle.CreatePaperInvoiceAddressResp - (*InvoiceInfo)(nil), // 203: bundle.InvoiceInfo - (*GetInvoiceListReq)(nil), // 204: bundle.GetInvoiceListReq - (*GetInvoiceListResp)(nil), // 205: bundle.GetInvoiceListResp - (*UpdateInvoiceExpressInfoReq)(nil), // 206: bundle.UpdateInvoiceExpressInfoReq - (*UpdateInvoiceExpressInfoResp)(nil), // 207: bundle.UpdateInvoiceExpressInfoResp - (*GetInvoiceExpressInfoReq)(nil), // 208: bundle.GetInvoiceExpressInfoReq - (*GetInvoiceExpressInfoResp)(nil), // 209: bundle.GetInvoiceExpressInfoResp - (*GetOrderInfoByOrderNoReq)(nil), // 210: bundle.GetOrderInfoByOrderNoReq - (*GetOrderInfoByOrderNoResp)(nil), // 211: bundle.GetOrderInfoByOrderNoResp - (*WorkCastInfo)(nil), // 212: bundle.WorkCastInfo - (*ExportWorkCastInfoReq)(nil), // 213: bundle.ExportWorkCastInfoReq - (*ExportWorkCastInfoResp)(nil), // 214: bundle.ExportWorkCastInfoResp - (*OrderInfoByOrderUuidRequest)(nil), // 215: bundle.OrderInfoByOrderUuidRequest - (*GetInvoiceInfoByOrderNoReq)(nil), // 216: bundle.GetInvoiceInfoByOrderNoReq - (*InvoiceInfoByOrderNo)(nil), // 217: bundle.InvoiceInfoByOrderNo - (*GetInvoiceInfoByOrderNoResp)(nil), // 218: bundle.GetInvoiceInfoByOrderNoResp - (*GetLastInvoiceNoReq)(nil), // 219: bundle.GetLastInvoiceNoReq - (*GetLastInvoiceNoResp)(nil), // 220: bundle.GetLastInvoiceNoResp - (*UpdataInvoiceInfoReq)(nil), // 221: bundle.UpdataInvoiceInfoReq - (*UpdataInvoiceInfoResp)(nil), // 222: bundle.UpdataInvoiceInfoResp - (*SendQuestionnaireSurveyRequest)(nil), // 223: bundle.SendQuestionnaireSurveyRequest - (*SendQuestionnaireSurveyResponse)(nil), // 224: bundle.SendQuestionnaireSurveyResponse - (*GetQuestionnaireSurveyInfoRequest)(nil), // 225: bundle.GetQuestionnaireSurveyInfoRequest - (*SurveyBundleInfo)(nil), // 226: bundle.SurveyBundleInfo - (*GetQuestionnaireSurveyInfoResponse)(nil), // 227: bundle.GetQuestionnaireSurveyInfoResponse - (*SurveyAnswer)(nil), // 228: bundle.SurveyAnswer - (*SurveyFeedback)(nil), // 229: bundle.SurveyFeedback - (*CreateQuestionnaireSurveyAnswerRequest)(nil), // 230: bundle.CreateQuestionnaireSurveyAnswerRequest - (*CreateQuestionnaireSurveyAnswerResponse)(nil), // 231: bundle.CreateQuestionnaireSurveyAnswerResponse - (*GetQuestionnaireSurveyListRequest)(nil), // 232: bundle.GetQuestionnaireSurveyListRequest - (*SurveyListInfo)(nil), // 233: bundle.SurveyListInfo - (*GetQuestionnaireSurveyListResponse)(nil), // 234: bundle.GetQuestionnaireSurveyListResponse + (*PayLaterBundleBalanceExportResp)(nil), // 76: bundle.PayLaterBundleBalanceExportResp + (*GetBundleBalanceListResp)(nil), // 77: bundle.GetBundleBalanceListResp + (*CreateBundleBalanceReq)(nil), // 78: bundle.CreateBundleBalanceReq + (*CreateBundleBalanceResp)(nil), // 79: bundle.CreateBundleBalanceResp + (*AddBundleBalanceReq)(nil), // 80: bundle.AddBundleBalanceReq + (*AddBundleBalanceResp)(nil), // 81: bundle.AddBundleBalanceResp + (*GetUsedRecordListReq)(nil), // 82: bundle.GetUsedRecordListReq + (*GetUsedRecordListResp)(nil), // 83: bundle.GetUsedRecordListResp + (*WorkCastItem)(nil), // 84: bundle.WorkCastItem + (*GetImageWorkDetailReq)(nil), // 85: bundle.GetImageWorkDetailReq + (*GetVedioWorkDetailReq)(nil), // 86: bundle.GetVedioWorkDetailReq + (*GetImageWorkDetailResp)(nil), // 87: bundle.GetImageWorkDetailResp + (*GetVedioeWorkDetailResp)(nil), // 88: bundle.GetVedioeWorkDetailResp + (*ToBeComfirmedWorksReq)(nil), // 89: bundle.ToBeComfirmedWorksReq + (*WorkItem)(nil), // 90: bundle.workItem + (*ToBeComfirmedWorksResp)(nil), // 91: bundle.ToBeComfirmedWorksResp + (*GetBundleBalanceByUserIdReq)(nil), // 92: bundle.GetBundleBalanceByUserIdReq + (*GetBundleBalanceByUserIdResp)(nil), // 93: bundle.GetBundleBalanceByUserIdResp + (*GetBundleOrderListByUserIdReq)(nil), // 94: bundle.GetBundleOrderListByUserIdReq + (*BalanceOrderItem)(nil), // 95: bundle.BalanceOrderItem + (*GetBundleOrderListByUserIdResp)(nil), // 96: bundle.GetBundleOrderListByUserIdResp + (*GetBundleBalanceByOrderUUIDReq)(nil), // 97: bundle.GetBundleBalanceByOrderUUIDReq + (*GetBundleBalanceByOrderUUIDResp)(nil), // 98: bundle.GetBundleBalanceByOrderUUIDResp + (*OnlyAddValueListByOrderNoRequest)(nil), // 99: bundle.OnlyAddValueListByOrderNoRequest + (*OnlyAddValueListByOrderNoResp)(nil), // 100: bundle.OnlyAddValueListByOrderNoResp + (*AddBundleInfo)(nil), // 101: bundle.AddBundleInfo + (*UpdateStatusAndPayTimeBySerialNumber)(nil), // 102: bundle.UpdateStatusAndPayTimeBySerialNumber + (*ConfirmWorkReq)(nil), // 103: bundle.ConfirmWorkReq + (*ConfirmWorkResp)(nil), // 104: bundle.ConfirmWorkResp + (*ConfirmWorkItem)(nil), // 105: bundle.ConfirmWorkItem + (*GetWaitConfirmWorkListReq)(nil), // 106: bundle.GetWaitConfirmWorkListReq + (*GetWaitConfirmWorkListResp)(nil), // 107: bundle.GetWaitConfirmWorkListResp + (*AutoCreateUserAndOrderRequest)(nil), // 108: bundle.AutoCreateUserAndOrderRequest + (*UnfinishedInfos)(nil), // 109: bundle.UnfinishedInfos + (*UnfinishedInfo)(nil), // 110: bundle.UnfinishedInfo + (*SoftDeleteUnfinishedInfoRequest)(nil), // 111: bundle.SoftDeleteUnfinishedInfoRequest + (*BundleActivateReq)(nil), // 112: bundle.BundleActivateReq + (*BundleActivateResp)(nil), // 113: bundle.BundleActivateResp + (*TaskQueryRequest)(nil), // 114: bundle.TaskQueryRequest + (*TaskQueryResponse)(nil), // 115: bundle.TaskQueryResponse + (*TaskManagementInfo)(nil), // 116: bundle.TaskManagementInfo + (*TaskAssignRequest)(nil), // 117: bundle.TaskAssignRequest + (*UpdatePendingCountRequest)(nil), // 118: bundle.UpdatePendingCountRequest + (*AddHiddenTaskAssigneeRequest)(nil), // 119: bundle.AddHiddenTaskAssigneeRequest + (*RecentAssignRecordsRequest)(nil), // 120: bundle.RecentAssignRecordsRequest + (*RecentAssigneeItem)(nil), // 121: bundle.RecentAssigneeItem + (*RecentAssignRecordsResponse)(nil), // 122: bundle.RecentAssignRecordsResponse + (*EmployeeTaskQueryRequest)(nil), // 123: bundle.EmployeeTaskQueryRequest + (*EmployeeTaskQueryResponse)(nil), // 124: bundle.EmployeeTaskQueryResponse + (*TaskAssignRecordInfo)(nil), // 125: bundle.TaskAssignRecordInfo + (*BatchAssignTaskItem)(nil), // 126: bundle.BatchAssignTaskItem + (*BatchAssignTaskRequest)(nil), // 127: bundle.BatchAssignTaskRequest + (*CompleteTaskManuallyRequest)(nil), // 128: bundle.CompleteTaskManuallyRequest + (*TerminateTaskByUUIDRequest)(nil), // 129: bundle.TerminateTaskByUUIDRequest + (*BatchTerminateTaskRequest)(nil), // 130: bundle.BatchTerminateTaskRequest + (*RevertTaskCompletionByUUIDItemRequest)(nil), // 131: bundle.RevertTaskCompletionByUUIDItemRequest + (*GetTaskActualStatusByUUIDRequest)(nil), // 132: bundle.GetTaskActualStatusByUUIDRequest + (*GetTaskActualStatusByUUIDResponse)(nil), // 133: bundle.GetTaskActualStatusByUUIDResponse + (*UpdateTaskProgressRequest)(nil), // 134: bundle.UpdateTaskProgressRequest + (*TaskAssignRecordsQueryRequest)(nil), // 135: bundle.TaskAssignRecordsQueryRequest + (*ComResponse)(nil), // 136: bundle.ComResponse + (*TaskAssignRecordsQueryResponse)(nil), // 137: bundle.TaskAssignRecordsQueryResponse + (*TaskAssignRecordsSummary)(nil), // 138: bundle.TaskAssignRecordsSummary + (*ArtistUploadStatsItem)(nil), // 139: bundle.ArtistUploadStatsItem + (*ArtistUploadStatsResponse)(nil), // 140: bundle.ArtistUploadStatsResponse + (*PendingUploadBreakdownRequest)(nil), // 141: bundle.PendingUploadBreakdownRequest + (*PendingUploadBreakdownItem)(nil), // 142: bundle.PendingUploadBreakdownItem + (*PendingUploadBreakdownResponse)(nil), // 143: bundle.PendingUploadBreakdownResponse + (*PendingAssignRequest)(nil), // 144: bundle.PendingAssignRequest + (*PendingAssignItem)(nil), // 145: bundle.PendingAssignItem + (*PendingAssignResponse)(nil), // 146: bundle.PendingAssignResponse + (*ArtistBundleBalanceRequest)(nil), // 147: bundle.ArtistBundleBalanceRequest + (*ArtistBundleBalanceResponse)(nil), // 148: bundle.ArtistBundleBalanceResponse + (*SetBundleBalanceLayoutReq)(nil), // 149: bundle.SetBundleBalanceLayoutReq + (*SetBundleBalanceLayoutResp)(nil), // 150: bundle.SetBundleBalanceLayoutResp + (*GetBundleBalanceLayoutReq)(nil), // 151: bundle.GetBundleBalanceLayoutReq + (*GetBundleBalanceLayoutResp)(nil), // 152: bundle.GetBundleBalanceLayoutResp + (*GetPendingTaskLayoutReq)(nil), // 153: bundle.GetPendingTaskLayoutReq + (*GetPendingTaskLayoutResp)(nil), // 154: bundle.GetPendingTaskLayoutResp + (*SetPendingTaskLayoutReq)(nil), // 155: bundle.SetPendingTaskLayoutReq + (*SetPendingTaskLayoutResp)(nil), // 156: bundle.SetPendingTaskLayoutResp + (*TaskWorkLogQueryRequest)(nil), // 157: bundle.TaskWorkLogQueryRequest + (*TaskWorkLogInfo)(nil), // 158: bundle.TaskWorkLogInfo + (*TaskWorkLogQueryResponse)(nil), // 159: bundle.TaskWorkLogQueryResponse + (*CreateTaskWorkLogRequest)(nil), // 160: bundle.CreateTaskWorkLogRequest + (*MetricsBusinessReq)(nil), // 161: bundle.MetricsBusinessReq + (*MetricsBusinessResp)(nil), // 162: bundle.MetricsBusinessResp + (*MetricsOperatingCreateReq)(nil), // 163: bundle.MetricsOperatingCreateReq + (*MetricsOperatingCreateResp)(nil), // 164: bundle.MetricsOperatingCreateResp + (*MetricsOperatingStatusReq)(nil), // 165: bundle.MetricsOperatingStatusReq + (*MetricsOperatingStatusResp)(nil), // 166: bundle.MetricsOperatingStatusResp + (*MetricsBundlePurchaseExportReq)(nil), // 167: bundle.MetricsBundlePurchaseExportReq + (*MetricsBundlePurchaseExportResp)(nil), // 168: bundle.MetricsBundlePurchaseExportResp + (*MetricsBundlePurchaseItem)(nil), // 169: bundle.MetricsBundlePurchaseItem + (*MetricsArtistAccountExportReq)(nil), // 170: bundle.MetricsArtistAccountExportReq + (*MetricsArtistAccountExportResp)(nil), // 171: bundle.MetricsArtistAccountExportResp + (*MetricsArtistAccountExportItem)(nil), // 172: bundle.MetricsArtistAccountExportItem + (*MetricsVideoSubmitExportReq)(nil), // 173: bundle.MetricsVideoSubmitExportReq + (*MetricsVideoSubmitExportResp)(nil), // 174: bundle.MetricsVideoSubmitExportResp + (*MetricsVideoSubmitExportItem)(nil), // 175: bundle.MetricsVideoSubmitExportItem + (*MetricsBalanceDetailExportReq)(nil), // 176: bundle.MetricsBalanceDetailExportReq + (*CustomerListRequest)(nil), // 177: bundle.CustomerListRequest + (*CustomerListResponse)(nil), // 178: bundle.CustomerListResponse + (*CustomerDetailRequest)(nil), // 179: bundle.CustomerDetailRequest + (*CustomerDetailResponse)(nil), // 180: bundle.CustomerDetailResponse + (*CustomerUpdateRequest)(nil), // 181: bundle.CustomerUpdateRequest + (*CustomerInfo)(nil), // 182: bundle.CustomerInfo + (*Customer)(nil), // 183: bundle.Customer + (*ReferralPersonListRequest)(nil), // 184: bundle.ReferralPersonListRequest + (*ReferralPersonListResponse)(nil), // 185: bundle.ReferralPersonListResponse + (*ContractUpdateRequest)(nil), // 186: bundle.ContractUpdateRequest + (*ContractListRequest)(nil), // 187: bundle.ContractListRequest + (*ContractListResponse)(nil), // 188: bundle.ContractListResponse + (*ContractDetailRequest)(nil), // 189: bundle.ContractDetailRequest + (*ContractDetailResponse)(nil), // 190: bundle.ContractDetailResponse + (*GetDevelopmentCyclesByContractUUIDRequest)(nil), // 191: bundle.GetDevelopmentCyclesByContractUUIDRequest + (*GetDevelopmentCyclesByContractUUIDResponse)(nil), // 192: bundle.GetDevelopmentCyclesByContractUUIDResponse + (*GetPaymentCyclesByContractUUIDRequest)(nil), // 193: bundle.GetPaymentCyclesByContractUUIDRequest + (*GetPaymentCyclesByContractUUIDResponse)(nil), // 194: bundle.GetPaymentCyclesByContractUUIDResponse + (*AttachmentItem)(nil), // 195: bundle.AttachmentItem + (*ContractInfo)(nil), // 196: bundle.ContractInfo + (*Contract)(nil), // 197: bundle.Contract + (*ContractPaymentCycle)(nil), // 198: bundle.ContractPaymentCycle + (*DevelopmentCycle)(nil), // 199: bundle.DevelopmentCycle + (*CreateInvoiceReq)(nil), // 200: bundle.CreateInvoiceReq + (*CreateInvoiceResp)(nil), // 201: bundle.CreateInvoiceResp + (*CreatePaperInvoiceAddressReq)(nil), // 202: bundle.CreatePaperInvoiceAddressReq + (*CreatePaperInvoiceAddressResp)(nil), // 203: bundle.CreatePaperInvoiceAddressResp + (*InvoiceInfo)(nil), // 204: bundle.InvoiceInfo + (*GetInvoiceListReq)(nil), // 205: bundle.GetInvoiceListReq + (*GetInvoiceListResp)(nil), // 206: bundle.GetInvoiceListResp + (*UpdateInvoiceExpressInfoReq)(nil), // 207: bundle.UpdateInvoiceExpressInfoReq + (*UpdateInvoiceExpressInfoResp)(nil), // 208: bundle.UpdateInvoiceExpressInfoResp + (*GetInvoiceExpressInfoReq)(nil), // 209: bundle.GetInvoiceExpressInfoReq + (*GetInvoiceExpressInfoResp)(nil), // 210: bundle.GetInvoiceExpressInfoResp + (*GetOrderInfoByOrderNoReq)(nil), // 211: bundle.GetOrderInfoByOrderNoReq + (*GetOrderInfoByOrderNoResp)(nil), // 212: bundle.GetOrderInfoByOrderNoResp + (*WorkCastInfo)(nil), // 213: bundle.WorkCastInfo + (*ExportWorkCastInfoReq)(nil), // 214: bundle.ExportWorkCastInfoReq + (*ExportWorkCastInfoResp)(nil), // 215: bundle.ExportWorkCastInfoResp + (*OrderInfoByOrderUuidRequest)(nil), // 216: bundle.OrderInfoByOrderUuidRequest + (*GetInvoiceInfoByOrderNoReq)(nil), // 217: bundle.GetInvoiceInfoByOrderNoReq + (*InvoiceInfoByOrderNo)(nil), // 218: bundle.InvoiceInfoByOrderNo + (*GetInvoiceInfoByOrderNoResp)(nil), // 219: bundle.GetInvoiceInfoByOrderNoResp + (*GetLastInvoiceNoReq)(nil), // 220: bundle.GetLastInvoiceNoReq + (*GetLastInvoiceNoResp)(nil), // 221: bundle.GetLastInvoiceNoResp + (*UpdataInvoiceInfoReq)(nil), // 222: bundle.UpdataInvoiceInfoReq + (*UpdataInvoiceInfoResp)(nil), // 223: bundle.UpdataInvoiceInfoResp + (*SendQuestionnaireSurveyRequest)(nil), // 224: bundle.SendQuestionnaireSurveyRequest + (*SendQuestionnaireSurveyResponse)(nil), // 225: bundle.SendQuestionnaireSurveyResponse + (*GetQuestionnaireSurveyInfoRequest)(nil), // 226: bundle.GetQuestionnaireSurveyInfoRequest + (*SurveyBundleInfo)(nil), // 227: bundle.SurveyBundleInfo + (*GetQuestionnaireSurveyInfoResponse)(nil), // 228: bundle.GetQuestionnaireSurveyInfoResponse + (*SurveyAnswer)(nil), // 229: bundle.SurveyAnswer + (*SurveyFeedback)(nil), // 230: bundle.SurveyFeedback + (*CreateQuestionnaireSurveyAnswerRequest)(nil), // 231: bundle.CreateQuestionnaireSurveyAnswerRequest + (*CreateQuestionnaireSurveyAnswerResponse)(nil), // 232: bundle.CreateQuestionnaireSurveyAnswerResponse + (*GetQuestionnaireSurveyListRequest)(nil), // 233: bundle.GetQuestionnaireSurveyListRequest + (*SurveyListInfo)(nil), // 234: bundle.SurveyListInfo + (*GetQuestionnaireSurveyListResponse)(nil), // 235: bundle.GetQuestionnaireSurveyListResponse } var file_pb_bundle_proto_depIdxs = []int32{ 3, // 0: bundle.QueryTheOrderSnapshotInformationResp.bundleOrder:type_name -> bundle.ServiceInformation @@ -27138,281 +27217,284 @@ var file_pb_bundle_proto_depIdxs = []int32{ 66, // 25: bundle.BundleExtendRecordsListResponse.data:type_name -> bundle.BundleExtendRecordItem 69, // 26: bundle.GetPayLaterBundleBalanceListResp.data:type_name -> bundle.PayLaterBundleBalanceItem 73, // 27: bundle.BundleBalanceExportResp.data:type_name -> bundle.BundleBalanceExportItem - 72, // 28: bundle.GetBundleBalanceListResp.data:type_name -> bundle.BundleBalanceItem - 83, // 29: bundle.GetUsedRecordListResp.data:type_name -> bundle.WorkCastItem - 89, // 30: bundle.ToBeComfirmedWorksResp.data:type_name -> bundle.workItem - 94, // 31: bundle.GetBundleOrderListByUserIdResp.orderItem:type_name -> bundle.BalanceOrderItem - 100, // 32: bundle.OnlyAddValueListByOrderNoResp.AddBundleInfos:type_name -> bundle.AddBundleInfo - 104, // 33: bundle.GetWaitConfirmWorkListResp.data:type_name -> bundle.ConfirmWorkItem - 109, // 34: bundle.UnfinishedInfos.unfinishedInfos:type_name -> bundle.UnfinishedInfo - 115, // 35: bundle.TaskQueryResponse.tasks:type_name -> bundle.TaskManagementInfo - 120, // 36: bundle.RecentAssignRecordsResponse.operatorList:type_name -> bundle.RecentAssigneeItem - 124, // 37: bundle.EmployeeTaskQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo - 125, // 38: bundle.BatchAssignTaskRequest.items:type_name -> bundle.BatchAssignTaskItem - 124, // 39: bundle.TaskAssignRecordsQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo - 137, // 40: bundle.TaskAssignRecordsQueryResponse.summary:type_name -> bundle.TaskAssignRecordsSummary - 138, // 41: bundle.ArtistUploadStatsResponse.items:type_name -> bundle.ArtistUploadStatsItem - 141, // 42: bundle.PendingUploadBreakdownResponse.items:type_name -> bundle.PendingUploadBreakdownItem - 144, // 43: bundle.PendingAssignResponse.items:type_name -> bundle.PendingAssignItem - 157, // 44: bundle.TaskWorkLogQueryResponse.records:type_name -> bundle.TaskWorkLogInfo - 168, // 45: bundle.MetricsBundlePurchaseExportResp.data:type_name -> bundle.MetricsBundlePurchaseItem - 171, // 46: bundle.MetricsArtistAccountExportResp.data:type_name -> bundle.MetricsArtistAccountExportItem - 174, // 47: bundle.MetricsVideoSubmitExportResp.data:type_name -> bundle.MetricsVideoSubmitExportItem - 181, // 48: bundle.CustomerListResponse.list:type_name -> bundle.CustomerInfo - 182, // 49: bundle.CustomerDetailResponse.customer:type_name -> bundle.Customer - 182, // 50: bundle.CustomerUpdateRequest.Customer:type_name -> bundle.Customer - 196, // 51: bundle.ContractUpdateRequest.contract:type_name -> bundle.Contract - 195, // 52: bundle.ContractListResponse.list:type_name -> bundle.ContractInfo - 196, // 53: bundle.ContractDetailResponse.contract:type_name -> bundle.Contract - 198, // 54: bundle.GetDevelopmentCyclesByContractUUIDResponse.list:type_name -> bundle.DevelopmentCycle - 197, // 55: bundle.GetPaymentCyclesByContractUUIDResponse.list:type_name -> bundle.ContractPaymentCycle - 194, // 56: bundle.ContractInfo.contractAttachments:type_name -> bundle.AttachmentItem - 194, // 57: bundle.ContractInfo.otherAttachments:type_name -> bundle.AttachmentItem - 194, // 58: bundle.Contract.contractAttachments:type_name -> bundle.AttachmentItem - 194, // 59: bundle.Contract.otherAttachments:type_name -> bundle.AttachmentItem - 197, // 60: bundle.Contract.paymentCycles:type_name -> bundle.ContractPaymentCycle - 198, // 61: bundle.Contract.developmentCycles:type_name -> bundle.DevelopmentCycle - 194, // 62: bundle.DevelopmentCycle.attachments:type_name -> bundle.AttachmentItem - 203, // 63: bundle.GetInvoiceListResp.data:type_name -> bundle.InvoiceInfo - 212, // 64: bundle.ExportWorkCastInfoResp.data:type_name -> bundle.WorkCastInfo - 217, // 65: bundle.GetInvoiceInfoByOrderNoResp.data:type_name -> bundle.InvoiceInfoByOrderNo - 226, // 66: bundle.GetQuestionnaireSurveyInfoResponse.bundleInfo:type_name -> bundle.SurveyBundleInfo - 228, // 67: bundle.CreateQuestionnaireSurveyAnswerRequest.surveyAnswer:type_name -> bundle.SurveyAnswer - 229, // 68: bundle.CreateQuestionnaireSurveyAnswerRequest.surveyFeedback:type_name -> bundle.SurveyFeedback - 233, // 69: bundle.GetQuestionnaireSurveyListResponse.surveyList:type_name -> bundle.SurveyListInfo - 19, // 70: bundle.Bundle.CreateBundle:input_type -> bundle.BundleProfile - 19, // 71: bundle.Bundle.UpdateBundle:input_type -> bundle.BundleProfile - 25, // 72: bundle.Bundle.DeleteBundle:input_type -> bundle.DelBundleRequest - 29, // 73: bundle.Bundle.HandShelf:input_type -> bundle.HandShelfRequest - 19, // 74: bundle.Bundle.SaveBundle:input_type -> bundle.BundleProfile - 26, // 75: bundle.Bundle.BundleListV2:input_type -> bundle.BundleListRequest - 28, // 76: bundle.Bundle.BundleDetailV2:input_type -> bundle.BundleDetailRequest - 26, // 77: bundle.Bundle.BundleListH5V2:input_type -> bundle.BundleListRequest - 28, // 78: bundle.Bundle.BundleLangDetailV2:input_type -> bundle.BundleDetailRequest - 26, // 79: bundle.Bundle.BundleList:input_type -> bundle.BundleListRequest - 28, // 80: bundle.Bundle.BundleDetail:input_type -> bundle.BundleDetailRequest - 11, // 81: bundle.Bundle.CreateOrderRecord:input_type -> bundle.OrderCreateRecord - 32, // 82: bundle.Bundle.UpdateOrderRecord:input_type -> bundle.OrderRecord - 32, // 83: bundle.Bundle.UpdateOrderRecordByOrderNo:input_type -> bundle.OrderRecord - 37, // 84: bundle.Bundle.OrderRecordsList:input_type -> bundle.OrderRecordsRequest - 39, // 85: bundle.Bundle.OrderRecordsDetail:input_type -> bundle.OrderRecordsDetailRequest - 48, // 86: bundle.Bundle.UpdateFinancialConfirmationStatus:input_type -> bundle.FinancialConfirmationRequest - 34, // 87: bundle.Bundle.CreateOrderAddRecord:input_type -> bundle.OrderAddRecord - 32, // 88: bundle.Bundle.PackagePriceAndTime:input_type -> bundle.OrderRecord - 13, // 89: bundle.Bundle.OrderRecordsListV2:input_type -> bundle.OrderRecordsRequestV2 - 9, // 90: bundle.Bundle.OrderListByOrderNo:input_type -> bundle.OrderInfoByOrderNoRequest - 98, // 91: bundle.Bundle.OnlyAddValueListByOrderNo:input_type -> bundle.OnlyAddValueListByOrderNoRequest - 4, // 92: bundle.Bundle.ReSignTheContract:input_type -> bundle.ReSignTheContractRequest - 0, // 93: bundle.Bundle.GetInEffectOrderRecord:input_type -> bundle.GetInEffectOrderRecordRequest - 42, // 94: bundle.Bundle.CreateValueAddBundle:input_type -> bundle.CreateValueAddBundleRequest - 44, // 95: bundle.Bundle.ValueAddBundleList:input_type -> bundle.ValueAddBundleListRequest - 46, // 96: bundle.Bundle.ValueAddBundleDetail:input_type -> bundle.ValueAddBundleDetailRequest - 50, // 97: bundle.Bundle.SaveValueAddService:input_type -> bundle.ValueAddServiceLang - 52, // 98: bundle.Bundle.ValueAddServiceList:input_type -> bundle.ValueAddServiceListRequest - 54, // 99: bundle.Bundle.ValueAddServiceDetail:input_type -> bundle.ValueAddServiceDetailRequest - 54, // 100: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:input_type -> bundle.ValueAddServiceDetailRequest - 56, // 101: bundle.Bundle.CalculatePrice:input_type -> bundle.CalculatePriceRequest - 58, // 102: bundle.Bundle.BatchGetValueAddServiceLang:input_type -> bundle.BatchGetValueAddServiceLangRequest - 5, // 103: bundle.Bundle.DeleteValueAddService:input_type -> bundle.DeleteValueAddServiceRequest - 60, // 104: bundle.Bundle.UpdateBundleBalance:input_type -> bundle.UpdateBundleBalanceReq - 62, // 105: bundle.Bundle.BundleExtend:input_type -> bundle.BundleExtendRequest - 64, // 106: bundle.Bundle.BundleExtendRecordsList:input_type -> bundle.BundleExtendRecordsListRequest - 67, // 107: bundle.Bundle.GetBundleBalanceList:input_type -> bundle.GetBundleBalanceListReq - 68, // 108: bundle.Bundle.GetPayLaterBundleBalanceList:input_type -> bundle.GetPayLaterBundleBalanceListReq - 91, // 109: bundle.Bundle.GetBundleBalanceByUserId:input_type -> bundle.GetBundleBalanceByUserIdReq - 93, // 110: bundle.Bundle.GetBundleOrderListByUserId:input_type -> bundle.GetBundleOrderListByUserIdReq - 96, // 111: bundle.Bundle.GetBundleBalanceByOrderUUID:input_type -> bundle.GetBundleBalanceByOrderUUIDReq - 77, // 112: bundle.Bundle.CreateBundleBalance:input_type -> bundle.CreateBundleBalanceReq - 79, // 113: bundle.Bundle.AddBundleBalance:input_type -> bundle.AddBundleBalanceReq - 111, // 114: bundle.Bundle.BundleActivate:input_type -> bundle.BundleActivateReq - 74, // 115: bundle.Bundle.BundleBalanceExport:input_type -> bundle.BundleBalanceExportReq - 150, // 116: bundle.Bundle.GetBundleBalanceLayout:input_type -> bundle.GetBundleBalanceLayoutReq - 148, // 117: bundle.Bundle.SetBundleBalanceLayout:input_type -> bundle.SetBundleBalanceLayoutReq - 81, // 118: bundle.Bundle.GetUsedRecordList:input_type -> bundle.GetUsedRecordListReq - 84, // 119: bundle.Bundle.GetImageWorkDetail:input_type -> bundle.GetImageWorkDetailReq - 85, // 120: bundle.Bundle.GetVedioWorkDetail:input_type -> bundle.GetVedioWorkDetailReq - 88, // 121: bundle.Bundle.ToBeComfirmedWorks:input_type -> bundle.ToBeComfirmedWorksReq - 102, // 122: bundle.Bundle.ConfirmWork:input_type -> bundle.ConfirmWorkReq - 105, // 123: bundle.Bundle.GetWaitConfirmWorkList:input_type -> bundle.GetWaitConfirmWorkListReq - 6, // 124: bundle.Bundle.GetReconciliationList:input_type -> bundle.GetReconciliationListReq - 8, // 125: bundle.Bundle.CreateReconciliation:input_type -> bundle.ReconciliationInfo - 8, // 126: bundle.Bundle.UpdateReconciliation:input_type -> bundle.ReconciliationInfo - 101, // 127: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:input_type -> bundle.UpdateStatusAndPayTimeBySerialNumber - 107, // 128: bundle.Bundle.ListUnfinishedInfos:input_type -> bundle.AutoCreateUserAndOrderRequest - 110, // 129: bundle.Bundle.SoftDeleteUnfinishedInfo:input_type -> bundle.SoftDeleteUnfinishedInfoRequest - 113, // 130: bundle.Bundle.GetPendingTaskList:input_type -> bundle.TaskQueryRequest - 116, // 131: bundle.Bundle.AssignTask:input_type -> bundle.TaskAssignRequest - 117, // 132: bundle.Bundle.UpdatePendingCount:input_type -> bundle.UpdatePendingCountRequest - 119, // 133: bundle.Bundle.GetRecentAssignRecords:input_type -> bundle.RecentAssignRecordsRequest - 122, // 134: bundle.Bundle.GetEmployeeAssignedTasks:input_type -> bundle.EmployeeTaskQueryRequest - 127, // 135: bundle.Bundle.CompleteTaskManually:input_type -> bundle.CompleteTaskManuallyRequest - 133, // 136: bundle.Bundle.UpdateTaskProgress:input_type -> bundle.UpdateTaskProgressRequest - 134, // 137: bundle.Bundle.GetTaskAssignRecordsList:input_type -> bundle.TaskAssignRecordsQueryRequest - 146, // 138: bundle.Bundle.GetArtistBundleBalance:input_type -> bundle.ArtistBundleBalanceRequest - 128, // 139: bundle.Bundle.TerminateTaskByUUID:input_type -> bundle.TerminateTaskByUUIDRequest - 131, // 140: bundle.Bundle.GetTaskActualStatusByUUID:input_type -> bundle.GetTaskActualStatusByUUIDRequest - 126, // 141: bundle.Bundle.BatchAssignTask:input_type -> bundle.BatchAssignTaskRequest - 129, // 142: bundle.Bundle.BatchTerminateTask:input_type -> bundle.BatchTerminateTaskRequest - 113, // 143: bundle.Bundle.GetArtistUploadStatsList:input_type -> bundle.TaskQueryRequest - 152, // 144: bundle.Bundle.GetPendingTaskLayout:input_type -> bundle.GetPendingTaskLayoutReq - 154, // 145: bundle.Bundle.SetPendingTaskLayout:input_type -> bundle.SetPendingTaskLayoutReq - 140, // 146: bundle.Bundle.GetPendingUploadBreakdown:input_type -> bundle.PendingUploadBreakdownRequest - 143, // 147: bundle.Bundle.GetPendingAssign:input_type -> bundle.PendingAssignRequest - 130, // 148: bundle.Bundle.RevertTaskCompletionByUUIDItem:input_type -> bundle.RevertTaskCompletionByUUIDItemRequest - 118, // 149: bundle.Bundle.AddHiddenTaskAssignee:input_type -> bundle.AddHiddenTaskAssigneeRequest - 156, // 150: bundle.Bundle.GetTaskWorkLogList:input_type -> bundle.TaskWorkLogQueryRequest - 159, // 151: bundle.Bundle.CreateTaskWorkLog:input_type -> bundle.CreateTaskWorkLogRequest - 160, // 152: bundle.Bundle.MetricsBusiness:input_type -> bundle.MetricsBusinessReq - 162, // 153: bundle.Bundle.MetricsOperatingCreate:input_type -> bundle.MetricsOperatingCreateReq - 164, // 154: bundle.Bundle.MetricsOperatingStatus:input_type -> bundle.MetricsOperatingStatusReq - 166, // 155: bundle.Bundle.MetricsBundlePurchaseExport:input_type -> bundle.MetricsBundlePurchaseExportReq - 169, // 156: bundle.Bundle.MetricsArtistAccountExport:input_type -> bundle.MetricsArtistAccountExportReq - 172, // 157: bundle.Bundle.MetricsVideoSubmitExport:input_type -> bundle.MetricsVideoSubmitExportReq - 1, // 158: bundle.Bundle.QueryTheOrderSnapshotInformation:input_type -> bundle.QueryTheOrderSnapshotInformationReq - 199, // 159: bundle.Bundle.CreateInvoice:input_type -> bundle.CreateInvoiceReq - 201, // 160: bundle.Bundle.CreatePaperInvoiceAddress:input_type -> bundle.CreatePaperInvoiceAddressReq - 204, // 161: bundle.Bundle.GetInvoiceList:input_type -> bundle.GetInvoiceListReq - 206, // 162: bundle.Bundle.UpdateInvoiceExpressInfo:input_type -> bundle.UpdateInvoiceExpressInfoReq - 208, // 163: bundle.Bundle.GetInvoiceExpressInfo:input_type -> bundle.GetInvoiceExpressInfoReq - 210, // 164: bundle.Bundle.GetOrderInfoByOrderNo:input_type -> bundle.GetOrderInfoByOrderNoReq - 216, // 165: bundle.Bundle.GetInvoiceInfoByOrderNo:input_type -> bundle.GetInvoiceInfoByOrderNoReq - 219, // 166: bundle.Bundle.GetLastInvoiceNo:input_type -> bundle.GetLastInvoiceNoReq - 221, // 167: bundle.Bundle.UpdataInvoiceInfo:input_type -> bundle.UpdataInvoiceInfoReq - 213, // 168: bundle.Bundle.ExportWorkCastInfo:input_type -> bundle.ExportWorkCastInfoReq - 176, // 169: bundle.Bundle.GetCustomerList:input_type -> bundle.CustomerListRequest - 178, // 170: bundle.Bundle.GetCustomerDetail:input_type -> bundle.CustomerDetailRequest - 180, // 171: bundle.Bundle.UpdateCustomer:input_type -> bundle.CustomerUpdateRequest - 183, // 172: bundle.Bundle.GetReferralPersonList:input_type -> bundle.ReferralPersonListRequest - 185, // 173: bundle.Bundle.UpdateContract:input_type -> bundle.ContractUpdateRequest - 186, // 174: bundle.Bundle.GetContractList:input_type -> bundle.ContractListRequest - 188, // 175: bundle.Bundle.GetContractDetail:input_type -> bundle.ContractDetailRequest - 190, // 176: bundle.Bundle.GetDevelopmentCyclesByContractUUID:input_type -> bundle.GetDevelopmentCyclesByContractUUIDRequest - 192, // 177: bundle.Bundle.GetPaymentCyclesByContractUUID:input_type -> bundle.GetPaymentCyclesByContractUUIDRequest - 32, // 178: bundle.Bundle.UpdateOrderRecordByOrderUuid:input_type -> bundle.OrderRecord - 215, // 179: bundle.Bundle.OrderListByOrderUuid:input_type -> bundle.OrderInfoByOrderUuidRequest - 223, // 180: bundle.Bundle.SendQuestionnaireSurvey:input_type -> bundle.SendQuestionnaireSurveyRequest - 225, // 181: bundle.Bundle.GetQuestionnaireSurveyInfo:input_type -> bundle.GetQuestionnaireSurveyInfoRequest - 230, // 182: bundle.Bundle.CreateQuestionnaireSurveyAnswer:input_type -> bundle.CreateQuestionnaireSurveyAnswerRequest - 232, // 183: bundle.Bundle.GetQuestionnaireSurveyList:input_type -> bundle.GetQuestionnaireSurveyListRequest - 18, // 184: bundle.Bundle.CreateBundle:output_type -> bundle.CommonResponse - 18, // 185: bundle.Bundle.UpdateBundle:output_type -> bundle.CommonResponse - 18, // 186: bundle.Bundle.DeleteBundle:output_type -> bundle.CommonResponse - 18, // 187: bundle.Bundle.HandShelf:output_type -> bundle.CommonResponse - 22, // 188: bundle.Bundle.SaveBundle:output_type -> bundle.SaveResponse - 27, // 189: bundle.Bundle.BundleListV2:output_type -> bundle.BundleListResponse - 31, // 190: bundle.Bundle.BundleDetailV2:output_type -> bundle.BundleDetailResponseV2 - 27, // 191: bundle.Bundle.BundleListH5V2:output_type -> bundle.BundleListResponse - 20, // 192: bundle.Bundle.BundleLangDetailV2:output_type -> bundle.BundleProfileLang - 27, // 193: bundle.Bundle.BundleList:output_type -> bundle.BundleListResponse - 30, // 194: bundle.Bundle.BundleDetail:output_type -> bundle.BundleDetailResponse - 18, // 195: bundle.Bundle.CreateOrderRecord:output_type -> bundle.CommonResponse - 18, // 196: bundle.Bundle.UpdateOrderRecord:output_type -> bundle.CommonResponse - 18, // 197: bundle.Bundle.UpdateOrderRecordByOrderNo:output_type -> bundle.CommonResponse - 38, // 198: bundle.Bundle.OrderRecordsList:output_type -> bundle.OrderRecordsResponse - 40, // 199: bundle.Bundle.OrderRecordsDetail:output_type -> bundle.OrderRecordsDetailResponse - 18, // 200: bundle.Bundle.UpdateFinancialConfirmationStatus:output_type -> bundle.CommonResponse - 18, // 201: bundle.Bundle.CreateOrderAddRecord:output_type -> bundle.CommonResponse - 17, // 202: bundle.Bundle.PackagePriceAndTime:output_type -> bundle.PackagePriceAndTimeResponse - 14, // 203: bundle.Bundle.OrderRecordsListV2:output_type -> bundle.OrderRecordsResponseV2 - 10, // 204: bundle.Bundle.OrderListByOrderNo:output_type -> bundle.OrderInfoByOrderNoResp - 99, // 205: bundle.Bundle.OnlyAddValueListByOrderNo:output_type -> bundle.OnlyAddValueListByOrderNoResp - 18, // 206: bundle.Bundle.ReSignTheContract:output_type -> bundle.CommonResponse - 32, // 207: bundle.Bundle.GetInEffectOrderRecord:output_type -> bundle.OrderRecord - 43, // 208: bundle.Bundle.CreateValueAddBundle:output_type -> bundle.CreateValueAddBundleResponse - 45, // 209: bundle.Bundle.ValueAddBundleList:output_type -> bundle.ValueAddBundleListResponse - 47, // 210: bundle.Bundle.ValueAddBundleDetail:output_type -> bundle.ValueAddBundleDetailResponse - 22, // 211: bundle.Bundle.SaveValueAddService:output_type -> bundle.SaveResponse - 53, // 212: bundle.Bundle.ValueAddServiceList:output_type -> bundle.ValueAddServiceListResponse - 55, // 213: bundle.Bundle.ValueAddServiceDetail:output_type -> bundle.ValueAddServiceDetailResponse - 50, // 214: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:output_type -> bundle.ValueAddServiceLang - 57, // 215: bundle.Bundle.CalculatePrice:output_type -> bundle.CalculatePriceResponse - 59, // 216: bundle.Bundle.BatchGetValueAddServiceLang:output_type -> bundle.BatchGetValueAddServiceLangResponse - 18, // 217: bundle.Bundle.DeleteValueAddService:output_type -> bundle.CommonResponse - 61, // 218: bundle.Bundle.UpdateBundleBalance:output_type -> bundle.UpdateBundleBalanceResp - 63, // 219: bundle.Bundle.BundleExtend:output_type -> bundle.BundleExtendResponse - 65, // 220: bundle.Bundle.BundleExtendRecordsList:output_type -> bundle.BundleExtendRecordsListResponse - 76, // 221: bundle.Bundle.GetBundleBalanceList:output_type -> bundle.GetBundleBalanceListResp - 70, // 222: bundle.Bundle.GetPayLaterBundleBalanceList:output_type -> bundle.GetPayLaterBundleBalanceListResp - 92, // 223: bundle.Bundle.GetBundleBalanceByUserId:output_type -> bundle.GetBundleBalanceByUserIdResp - 95, // 224: bundle.Bundle.GetBundleOrderListByUserId:output_type -> bundle.GetBundleOrderListByUserIdResp - 97, // 225: bundle.Bundle.GetBundleBalanceByOrderUUID:output_type -> bundle.GetBundleBalanceByOrderUUIDResp - 78, // 226: bundle.Bundle.CreateBundleBalance:output_type -> bundle.CreateBundleBalanceResp - 80, // 227: bundle.Bundle.AddBundleBalance:output_type -> bundle.AddBundleBalanceResp - 112, // 228: bundle.Bundle.BundleActivate:output_type -> bundle.BundleActivateResp - 75, // 229: bundle.Bundle.BundleBalanceExport:output_type -> bundle.BundleBalanceExportResp - 151, // 230: bundle.Bundle.GetBundleBalanceLayout:output_type -> bundle.GetBundleBalanceLayoutResp - 149, // 231: bundle.Bundle.SetBundleBalanceLayout:output_type -> bundle.SetBundleBalanceLayoutResp - 82, // 232: bundle.Bundle.GetUsedRecordList:output_type -> bundle.GetUsedRecordListResp - 86, // 233: bundle.Bundle.GetImageWorkDetail:output_type -> bundle.GetImageWorkDetailResp - 87, // 234: bundle.Bundle.GetVedioWorkDetail:output_type -> bundle.GetVedioeWorkDetailResp - 90, // 235: bundle.Bundle.ToBeComfirmedWorks:output_type -> bundle.ToBeComfirmedWorksResp - 103, // 236: bundle.Bundle.ConfirmWork:output_type -> bundle.ConfirmWorkResp - 106, // 237: bundle.Bundle.GetWaitConfirmWorkList:output_type -> bundle.GetWaitConfirmWorkListResp - 7, // 238: bundle.Bundle.GetReconciliationList:output_type -> bundle.GetReconciliationListResp - 18, // 239: bundle.Bundle.CreateReconciliation:output_type -> bundle.CommonResponse - 18, // 240: bundle.Bundle.UpdateReconciliation:output_type -> bundle.CommonResponse - 18, // 241: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:output_type -> bundle.CommonResponse - 108, // 242: bundle.Bundle.ListUnfinishedInfos:output_type -> bundle.UnfinishedInfos - 18, // 243: bundle.Bundle.SoftDeleteUnfinishedInfo:output_type -> bundle.CommonResponse - 114, // 244: bundle.Bundle.GetPendingTaskList:output_type -> bundle.TaskQueryResponse - 18, // 245: bundle.Bundle.AssignTask:output_type -> bundle.CommonResponse - 18, // 246: bundle.Bundle.UpdatePendingCount:output_type -> bundle.CommonResponse - 121, // 247: bundle.Bundle.GetRecentAssignRecords:output_type -> bundle.RecentAssignRecordsResponse - 123, // 248: bundle.Bundle.GetEmployeeAssignedTasks:output_type -> bundle.EmployeeTaskQueryResponse - 18, // 249: bundle.Bundle.CompleteTaskManually:output_type -> bundle.CommonResponse - 18, // 250: bundle.Bundle.UpdateTaskProgress:output_type -> bundle.CommonResponse - 136, // 251: bundle.Bundle.GetTaskAssignRecordsList:output_type -> bundle.TaskAssignRecordsQueryResponse - 147, // 252: bundle.Bundle.GetArtistBundleBalance:output_type -> bundle.ArtistBundleBalanceResponse - 135, // 253: bundle.Bundle.TerminateTaskByUUID:output_type -> bundle.ComResponse - 132, // 254: bundle.Bundle.GetTaskActualStatusByUUID:output_type -> bundle.GetTaskActualStatusByUUIDResponse - 135, // 255: bundle.Bundle.BatchAssignTask:output_type -> bundle.ComResponse - 135, // 256: bundle.Bundle.BatchTerminateTask:output_type -> bundle.ComResponse - 139, // 257: bundle.Bundle.GetArtistUploadStatsList:output_type -> bundle.ArtistUploadStatsResponse - 153, // 258: bundle.Bundle.GetPendingTaskLayout:output_type -> bundle.GetPendingTaskLayoutResp - 155, // 259: bundle.Bundle.SetPendingTaskLayout:output_type -> bundle.SetPendingTaskLayoutResp - 142, // 260: bundle.Bundle.GetPendingUploadBreakdown:output_type -> bundle.PendingUploadBreakdownResponse - 145, // 261: bundle.Bundle.GetPendingAssign:output_type -> bundle.PendingAssignResponse - 135, // 262: bundle.Bundle.RevertTaskCompletionByUUIDItem:output_type -> bundle.ComResponse - 135, // 263: bundle.Bundle.AddHiddenTaskAssignee:output_type -> bundle.ComResponse - 158, // 264: bundle.Bundle.GetTaskWorkLogList:output_type -> bundle.TaskWorkLogQueryResponse - 18, // 265: bundle.Bundle.CreateTaskWorkLog:output_type -> bundle.CommonResponse - 161, // 266: bundle.Bundle.MetricsBusiness:output_type -> bundle.MetricsBusinessResp - 163, // 267: bundle.Bundle.MetricsOperatingCreate:output_type -> bundle.MetricsOperatingCreateResp - 165, // 268: bundle.Bundle.MetricsOperatingStatus:output_type -> bundle.MetricsOperatingStatusResp - 167, // 269: bundle.Bundle.MetricsBundlePurchaseExport:output_type -> bundle.MetricsBundlePurchaseExportResp - 170, // 270: bundle.Bundle.MetricsArtistAccountExport:output_type -> bundle.MetricsArtistAccountExportResp - 173, // 271: bundle.Bundle.MetricsVideoSubmitExport:output_type -> bundle.MetricsVideoSubmitExportResp - 2, // 272: bundle.Bundle.QueryTheOrderSnapshotInformation:output_type -> bundle.QueryTheOrderSnapshotInformationResp - 200, // 273: bundle.Bundle.CreateInvoice:output_type -> bundle.CreateInvoiceResp - 202, // 274: bundle.Bundle.CreatePaperInvoiceAddress:output_type -> bundle.CreatePaperInvoiceAddressResp - 205, // 275: bundle.Bundle.GetInvoiceList:output_type -> bundle.GetInvoiceListResp - 207, // 276: bundle.Bundle.UpdateInvoiceExpressInfo:output_type -> bundle.UpdateInvoiceExpressInfoResp - 209, // 277: bundle.Bundle.GetInvoiceExpressInfo:output_type -> bundle.GetInvoiceExpressInfoResp - 211, // 278: bundle.Bundle.GetOrderInfoByOrderNo:output_type -> bundle.GetOrderInfoByOrderNoResp - 218, // 279: bundle.Bundle.GetInvoiceInfoByOrderNo:output_type -> bundle.GetInvoiceInfoByOrderNoResp - 220, // 280: bundle.Bundle.GetLastInvoiceNo:output_type -> bundle.GetLastInvoiceNoResp - 222, // 281: bundle.Bundle.UpdataInvoiceInfo:output_type -> bundle.UpdataInvoiceInfoResp - 214, // 282: bundle.Bundle.ExportWorkCastInfo:output_type -> bundle.ExportWorkCastInfoResp - 177, // 283: bundle.Bundle.GetCustomerList:output_type -> bundle.CustomerListResponse - 179, // 284: bundle.Bundle.GetCustomerDetail:output_type -> bundle.CustomerDetailResponse - 135, // 285: bundle.Bundle.UpdateCustomer:output_type -> bundle.ComResponse - 184, // 286: bundle.Bundle.GetReferralPersonList:output_type -> bundle.ReferralPersonListResponse - 135, // 287: bundle.Bundle.UpdateContract:output_type -> bundle.ComResponse - 187, // 288: bundle.Bundle.GetContractList:output_type -> bundle.ContractListResponse - 189, // 289: bundle.Bundle.GetContractDetail:output_type -> bundle.ContractDetailResponse - 191, // 290: bundle.Bundle.GetDevelopmentCyclesByContractUUID:output_type -> bundle.GetDevelopmentCyclesByContractUUIDResponse - 193, // 291: bundle.Bundle.GetPaymentCyclesByContractUUID:output_type -> bundle.GetPaymentCyclesByContractUUIDResponse - 18, // 292: bundle.Bundle.UpdateOrderRecordByOrderUuid:output_type -> bundle.CommonResponse - 10, // 293: bundle.Bundle.OrderListByOrderUuid:output_type -> bundle.OrderInfoByOrderNoResp - 224, // 294: bundle.Bundle.SendQuestionnaireSurvey:output_type -> bundle.SendQuestionnaireSurveyResponse - 227, // 295: bundle.Bundle.GetQuestionnaireSurveyInfo:output_type -> bundle.GetQuestionnaireSurveyInfoResponse - 231, // 296: bundle.Bundle.CreateQuestionnaireSurveyAnswer:output_type -> bundle.CreateQuestionnaireSurveyAnswerResponse - 234, // 297: bundle.Bundle.GetQuestionnaireSurveyList:output_type -> bundle.GetQuestionnaireSurveyListResponse - 184, // [184:298] is the sub-list for method output_type - 70, // [70:184] is the sub-list for method input_type - 70, // [70:70] is the sub-list for extension type_name - 70, // [70:70] is the sub-list for extension extendee - 0, // [0:70] is the sub-list for field type_name + 69, // 28: bundle.PayLaterBundleBalanceExportResp.data:type_name -> bundle.PayLaterBundleBalanceItem + 72, // 29: bundle.GetBundleBalanceListResp.data:type_name -> bundle.BundleBalanceItem + 84, // 30: bundle.GetUsedRecordListResp.data:type_name -> bundle.WorkCastItem + 90, // 31: bundle.ToBeComfirmedWorksResp.data:type_name -> bundle.workItem + 95, // 32: bundle.GetBundleOrderListByUserIdResp.orderItem:type_name -> bundle.BalanceOrderItem + 101, // 33: bundle.OnlyAddValueListByOrderNoResp.AddBundleInfos:type_name -> bundle.AddBundleInfo + 105, // 34: bundle.GetWaitConfirmWorkListResp.data:type_name -> bundle.ConfirmWorkItem + 110, // 35: bundle.UnfinishedInfos.unfinishedInfos:type_name -> bundle.UnfinishedInfo + 116, // 36: bundle.TaskQueryResponse.tasks:type_name -> bundle.TaskManagementInfo + 121, // 37: bundle.RecentAssignRecordsResponse.operatorList:type_name -> bundle.RecentAssigneeItem + 125, // 38: bundle.EmployeeTaskQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo + 126, // 39: bundle.BatchAssignTaskRequest.items:type_name -> bundle.BatchAssignTaskItem + 125, // 40: bundle.TaskAssignRecordsQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo + 138, // 41: bundle.TaskAssignRecordsQueryResponse.summary:type_name -> bundle.TaskAssignRecordsSummary + 139, // 42: bundle.ArtistUploadStatsResponse.items:type_name -> bundle.ArtistUploadStatsItem + 142, // 43: bundle.PendingUploadBreakdownResponse.items:type_name -> bundle.PendingUploadBreakdownItem + 145, // 44: bundle.PendingAssignResponse.items:type_name -> bundle.PendingAssignItem + 158, // 45: bundle.TaskWorkLogQueryResponse.records:type_name -> bundle.TaskWorkLogInfo + 169, // 46: bundle.MetricsBundlePurchaseExportResp.data:type_name -> bundle.MetricsBundlePurchaseItem + 172, // 47: bundle.MetricsArtistAccountExportResp.data:type_name -> bundle.MetricsArtistAccountExportItem + 175, // 48: bundle.MetricsVideoSubmitExportResp.data:type_name -> bundle.MetricsVideoSubmitExportItem + 182, // 49: bundle.CustomerListResponse.list:type_name -> bundle.CustomerInfo + 183, // 50: bundle.CustomerDetailResponse.customer:type_name -> bundle.Customer + 183, // 51: bundle.CustomerUpdateRequest.Customer:type_name -> bundle.Customer + 197, // 52: bundle.ContractUpdateRequest.contract:type_name -> bundle.Contract + 196, // 53: bundle.ContractListResponse.list:type_name -> bundle.ContractInfo + 197, // 54: bundle.ContractDetailResponse.contract:type_name -> bundle.Contract + 199, // 55: bundle.GetDevelopmentCyclesByContractUUIDResponse.list:type_name -> bundle.DevelopmentCycle + 198, // 56: bundle.GetPaymentCyclesByContractUUIDResponse.list:type_name -> bundle.ContractPaymentCycle + 195, // 57: bundle.ContractInfo.contractAttachments:type_name -> bundle.AttachmentItem + 195, // 58: bundle.ContractInfo.otherAttachments:type_name -> bundle.AttachmentItem + 195, // 59: bundle.Contract.contractAttachments:type_name -> bundle.AttachmentItem + 195, // 60: bundle.Contract.otherAttachments:type_name -> bundle.AttachmentItem + 198, // 61: bundle.Contract.paymentCycles:type_name -> bundle.ContractPaymentCycle + 199, // 62: bundle.Contract.developmentCycles:type_name -> bundle.DevelopmentCycle + 195, // 63: bundle.DevelopmentCycle.attachments:type_name -> bundle.AttachmentItem + 204, // 64: bundle.GetInvoiceListResp.data:type_name -> bundle.InvoiceInfo + 213, // 65: bundle.ExportWorkCastInfoResp.data:type_name -> bundle.WorkCastInfo + 218, // 66: bundle.GetInvoiceInfoByOrderNoResp.data:type_name -> bundle.InvoiceInfoByOrderNo + 227, // 67: bundle.GetQuestionnaireSurveyInfoResponse.bundleInfo:type_name -> bundle.SurveyBundleInfo + 229, // 68: bundle.CreateQuestionnaireSurveyAnswerRequest.surveyAnswer:type_name -> bundle.SurveyAnswer + 230, // 69: bundle.CreateQuestionnaireSurveyAnswerRequest.surveyFeedback:type_name -> bundle.SurveyFeedback + 234, // 70: bundle.GetQuestionnaireSurveyListResponse.surveyList:type_name -> bundle.SurveyListInfo + 19, // 71: bundle.Bundle.CreateBundle:input_type -> bundle.BundleProfile + 19, // 72: bundle.Bundle.UpdateBundle:input_type -> bundle.BundleProfile + 25, // 73: bundle.Bundle.DeleteBundle:input_type -> bundle.DelBundleRequest + 29, // 74: bundle.Bundle.HandShelf:input_type -> bundle.HandShelfRequest + 19, // 75: bundle.Bundle.SaveBundle:input_type -> bundle.BundleProfile + 26, // 76: bundle.Bundle.BundleListV2:input_type -> bundle.BundleListRequest + 28, // 77: bundle.Bundle.BundleDetailV2:input_type -> bundle.BundleDetailRequest + 26, // 78: bundle.Bundle.BundleListH5V2:input_type -> bundle.BundleListRequest + 28, // 79: bundle.Bundle.BundleLangDetailV2:input_type -> bundle.BundleDetailRequest + 26, // 80: bundle.Bundle.BundleList:input_type -> bundle.BundleListRequest + 28, // 81: bundle.Bundle.BundleDetail:input_type -> bundle.BundleDetailRequest + 11, // 82: bundle.Bundle.CreateOrderRecord:input_type -> bundle.OrderCreateRecord + 32, // 83: bundle.Bundle.UpdateOrderRecord:input_type -> bundle.OrderRecord + 32, // 84: bundle.Bundle.UpdateOrderRecordByOrderNo:input_type -> bundle.OrderRecord + 37, // 85: bundle.Bundle.OrderRecordsList:input_type -> bundle.OrderRecordsRequest + 39, // 86: bundle.Bundle.OrderRecordsDetail:input_type -> bundle.OrderRecordsDetailRequest + 48, // 87: bundle.Bundle.UpdateFinancialConfirmationStatus:input_type -> bundle.FinancialConfirmationRequest + 34, // 88: bundle.Bundle.CreateOrderAddRecord:input_type -> bundle.OrderAddRecord + 32, // 89: bundle.Bundle.PackagePriceAndTime:input_type -> bundle.OrderRecord + 13, // 90: bundle.Bundle.OrderRecordsListV2:input_type -> bundle.OrderRecordsRequestV2 + 9, // 91: bundle.Bundle.OrderListByOrderNo:input_type -> bundle.OrderInfoByOrderNoRequest + 99, // 92: bundle.Bundle.OnlyAddValueListByOrderNo:input_type -> bundle.OnlyAddValueListByOrderNoRequest + 4, // 93: bundle.Bundle.ReSignTheContract:input_type -> bundle.ReSignTheContractRequest + 0, // 94: bundle.Bundle.GetInEffectOrderRecord:input_type -> bundle.GetInEffectOrderRecordRequest + 42, // 95: bundle.Bundle.CreateValueAddBundle:input_type -> bundle.CreateValueAddBundleRequest + 44, // 96: bundle.Bundle.ValueAddBundleList:input_type -> bundle.ValueAddBundleListRequest + 46, // 97: bundle.Bundle.ValueAddBundleDetail:input_type -> bundle.ValueAddBundleDetailRequest + 50, // 98: bundle.Bundle.SaveValueAddService:input_type -> bundle.ValueAddServiceLang + 52, // 99: bundle.Bundle.ValueAddServiceList:input_type -> bundle.ValueAddServiceListRequest + 54, // 100: bundle.Bundle.ValueAddServiceDetail:input_type -> bundle.ValueAddServiceDetailRequest + 54, // 101: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:input_type -> bundle.ValueAddServiceDetailRequest + 56, // 102: bundle.Bundle.CalculatePrice:input_type -> bundle.CalculatePriceRequest + 58, // 103: bundle.Bundle.BatchGetValueAddServiceLang:input_type -> bundle.BatchGetValueAddServiceLangRequest + 5, // 104: bundle.Bundle.DeleteValueAddService:input_type -> bundle.DeleteValueAddServiceRequest + 60, // 105: bundle.Bundle.UpdateBundleBalance:input_type -> bundle.UpdateBundleBalanceReq + 62, // 106: bundle.Bundle.BundleExtend:input_type -> bundle.BundleExtendRequest + 64, // 107: bundle.Bundle.BundleExtendRecordsList:input_type -> bundle.BundleExtendRecordsListRequest + 67, // 108: bundle.Bundle.GetBundleBalanceList:input_type -> bundle.GetBundleBalanceListReq + 68, // 109: bundle.Bundle.GetPayLaterBundleBalanceList:input_type -> bundle.GetPayLaterBundleBalanceListReq + 92, // 110: bundle.Bundle.GetBundleBalanceByUserId:input_type -> bundle.GetBundleBalanceByUserIdReq + 94, // 111: bundle.Bundle.GetBundleOrderListByUserId:input_type -> bundle.GetBundleOrderListByUserIdReq + 97, // 112: bundle.Bundle.GetBundleBalanceByOrderUUID:input_type -> bundle.GetBundleBalanceByOrderUUIDReq + 78, // 113: bundle.Bundle.CreateBundleBalance:input_type -> bundle.CreateBundleBalanceReq + 80, // 114: bundle.Bundle.AddBundleBalance:input_type -> bundle.AddBundleBalanceReq + 112, // 115: bundle.Bundle.BundleActivate:input_type -> bundle.BundleActivateReq + 74, // 116: bundle.Bundle.BundleBalanceExport:input_type -> bundle.BundleBalanceExportReq + 74, // 117: bundle.Bundle.PayLaterBundleBalanceExport:input_type -> bundle.BundleBalanceExportReq + 151, // 118: bundle.Bundle.GetBundleBalanceLayout:input_type -> bundle.GetBundleBalanceLayoutReq + 149, // 119: bundle.Bundle.SetBundleBalanceLayout:input_type -> bundle.SetBundleBalanceLayoutReq + 82, // 120: bundle.Bundle.GetUsedRecordList:input_type -> bundle.GetUsedRecordListReq + 85, // 121: bundle.Bundle.GetImageWorkDetail:input_type -> bundle.GetImageWorkDetailReq + 86, // 122: bundle.Bundle.GetVedioWorkDetail:input_type -> bundle.GetVedioWorkDetailReq + 89, // 123: bundle.Bundle.ToBeComfirmedWorks:input_type -> bundle.ToBeComfirmedWorksReq + 103, // 124: bundle.Bundle.ConfirmWork:input_type -> bundle.ConfirmWorkReq + 106, // 125: bundle.Bundle.GetWaitConfirmWorkList:input_type -> bundle.GetWaitConfirmWorkListReq + 6, // 126: bundle.Bundle.GetReconciliationList:input_type -> bundle.GetReconciliationListReq + 8, // 127: bundle.Bundle.CreateReconciliation:input_type -> bundle.ReconciliationInfo + 8, // 128: bundle.Bundle.UpdateReconciliation:input_type -> bundle.ReconciliationInfo + 102, // 129: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:input_type -> bundle.UpdateStatusAndPayTimeBySerialNumber + 108, // 130: bundle.Bundle.ListUnfinishedInfos:input_type -> bundle.AutoCreateUserAndOrderRequest + 111, // 131: bundle.Bundle.SoftDeleteUnfinishedInfo:input_type -> bundle.SoftDeleteUnfinishedInfoRequest + 114, // 132: bundle.Bundle.GetPendingTaskList:input_type -> bundle.TaskQueryRequest + 117, // 133: bundle.Bundle.AssignTask:input_type -> bundle.TaskAssignRequest + 118, // 134: bundle.Bundle.UpdatePendingCount:input_type -> bundle.UpdatePendingCountRequest + 120, // 135: bundle.Bundle.GetRecentAssignRecords:input_type -> bundle.RecentAssignRecordsRequest + 123, // 136: bundle.Bundle.GetEmployeeAssignedTasks:input_type -> bundle.EmployeeTaskQueryRequest + 128, // 137: bundle.Bundle.CompleteTaskManually:input_type -> bundle.CompleteTaskManuallyRequest + 134, // 138: bundle.Bundle.UpdateTaskProgress:input_type -> bundle.UpdateTaskProgressRequest + 135, // 139: bundle.Bundle.GetTaskAssignRecordsList:input_type -> bundle.TaskAssignRecordsQueryRequest + 147, // 140: bundle.Bundle.GetArtistBundleBalance:input_type -> bundle.ArtistBundleBalanceRequest + 129, // 141: bundle.Bundle.TerminateTaskByUUID:input_type -> bundle.TerminateTaskByUUIDRequest + 132, // 142: bundle.Bundle.GetTaskActualStatusByUUID:input_type -> bundle.GetTaskActualStatusByUUIDRequest + 127, // 143: bundle.Bundle.BatchAssignTask:input_type -> bundle.BatchAssignTaskRequest + 130, // 144: bundle.Bundle.BatchTerminateTask:input_type -> bundle.BatchTerminateTaskRequest + 114, // 145: bundle.Bundle.GetArtistUploadStatsList:input_type -> bundle.TaskQueryRequest + 153, // 146: bundle.Bundle.GetPendingTaskLayout:input_type -> bundle.GetPendingTaskLayoutReq + 155, // 147: bundle.Bundle.SetPendingTaskLayout:input_type -> bundle.SetPendingTaskLayoutReq + 141, // 148: bundle.Bundle.GetPendingUploadBreakdown:input_type -> bundle.PendingUploadBreakdownRequest + 144, // 149: bundle.Bundle.GetPendingAssign:input_type -> bundle.PendingAssignRequest + 131, // 150: bundle.Bundle.RevertTaskCompletionByUUIDItem:input_type -> bundle.RevertTaskCompletionByUUIDItemRequest + 119, // 151: bundle.Bundle.AddHiddenTaskAssignee:input_type -> bundle.AddHiddenTaskAssigneeRequest + 157, // 152: bundle.Bundle.GetTaskWorkLogList:input_type -> bundle.TaskWorkLogQueryRequest + 160, // 153: bundle.Bundle.CreateTaskWorkLog:input_type -> bundle.CreateTaskWorkLogRequest + 161, // 154: bundle.Bundle.MetricsBusiness:input_type -> bundle.MetricsBusinessReq + 163, // 155: bundle.Bundle.MetricsOperatingCreate:input_type -> bundle.MetricsOperatingCreateReq + 165, // 156: bundle.Bundle.MetricsOperatingStatus:input_type -> bundle.MetricsOperatingStatusReq + 167, // 157: bundle.Bundle.MetricsBundlePurchaseExport:input_type -> bundle.MetricsBundlePurchaseExportReq + 170, // 158: bundle.Bundle.MetricsArtistAccountExport:input_type -> bundle.MetricsArtistAccountExportReq + 173, // 159: bundle.Bundle.MetricsVideoSubmitExport:input_type -> bundle.MetricsVideoSubmitExportReq + 1, // 160: bundle.Bundle.QueryTheOrderSnapshotInformation:input_type -> bundle.QueryTheOrderSnapshotInformationReq + 200, // 161: bundle.Bundle.CreateInvoice:input_type -> bundle.CreateInvoiceReq + 202, // 162: bundle.Bundle.CreatePaperInvoiceAddress:input_type -> bundle.CreatePaperInvoiceAddressReq + 205, // 163: bundle.Bundle.GetInvoiceList:input_type -> bundle.GetInvoiceListReq + 207, // 164: bundle.Bundle.UpdateInvoiceExpressInfo:input_type -> bundle.UpdateInvoiceExpressInfoReq + 209, // 165: bundle.Bundle.GetInvoiceExpressInfo:input_type -> bundle.GetInvoiceExpressInfoReq + 211, // 166: bundle.Bundle.GetOrderInfoByOrderNo:input_type -> bundle.GetOrderInfoByOrderNoReq + 217, // 167: bundle.Bundle.GetInvoiceInfoByOrderNo:input_type -> bundle.GetInvoiceInfoByOrderNoReq + 220, // 168: bundle.Bundle.GetLastInvoiceNo:input_type -> bundle.GetLastInvoiceNoReq + 222, // 169: bundle.Bundle.UpdataInvoiceInfo:input_type -> bundle.UpdataInvoiceInfoReq + 214, // 170: bundle.Bundle.ExportWorkCastInfo:input_type -> bundle.ExportWorkCastInfoReq + 177, // 171: bundle.Bundle.GetCustomerList:input_type -> bundle.CustomerListRequest + 179, // 172: bundle.Bundle.GetCustomerDetail:input_type -> bundle.CustomerDetailRequest + 181, // 173: bundle.Bundle.UpdateCustomer:input_type -> bundle.CustomerUpdateRequest + 184, // 174: bundle.Bundle.GetReferralPersonList:input_type -> bundle.ReferralPersonListRequest + 186, // 175: bundle.Bundle.UpdateContract:input_type -> bundle.ContractUpdateRequest + 187, // 176: bundle.Bundle.GetContractList:input_type -> bundle.ContractListRequest + 189, // 177: bundle.Bundle.GetContractDetail:input_type -> bundle.ContractDetailRequest + 191, // 178: bundle.Bundle.GetDevelopmentCyclesByContractUUID:input_type -> bundle.GetDevelopmentCyclesByContractUUIDRequest + 193, // 179: bundle.Bundle.GetPaymentCyclesByContractUUID:input_type -> bundle.GetPaymentCyclesByContractUUIDRequest + 32, // 180: bundle.Bundle.UpdateOrderRecordByOrderUuid:input_type -> bundle.OrderRecord + 216, // 181: bundle.Bundle.OrderListByOrderUuid:input_type -> bundle.OrderInfoByOrderUuidRequest + 224, // 182: bundle.Bundle.SendQuestionnaireSurvey:input_type -> bundle.SendQuestionnaireSurveyRequest + 226, // 183: bundle.Bundle.GetQuestionnaireSurveyInfo:input_type -> bundle.GetQuestionnaireSurveyInfoRequest + 231, // 184: bundle.Bundle.CreateQuestionnaireSurveyAnswer:input_type -> bundle.CreateQuestionnaireSurveyAnswerRequest + 233, // 185: bundle.Bundle.GetQuestionnaireSurveyList:input_type -> bundle.GetQuestionnaireSurveyListRequest + 18, // 186: bundle.Bundle.CreateBundle:output_type -> bundle.CommonResponse + 18, // 187: bundle.Bundle.UpdateBundle:output_type -> bundle.CommonResponse + 18, // 188: bundle.Bundle.DeleteBundle:output_type -> bundle.CommonResponse + 18, // 189: bundle.Bundle.HandShelf:output_type -> bundle.CommonResponse + 22, // 190: bundle.Bundle.SaveBundle:output_type -> bundle.SaveResponse + 27, // 191: bundle.Bundle.BundleListV2:output_type -> bundle.BundleListResponse + 31, // 192: bundle.Bundle.BundleDetailV2:output_type -> bundle.BundleDetailResponseV2 + 27, // 193: bundle.Bundle.BundleListH5V2:output_type -> bundle.BundleListResponse + 20, // 194: bundle.Bundle.BundleLangDetailV2:output_type -> bundle.BundleProfileLang + 27, // 195: bundle.Bundle.BundleList:output_type -> bundle.BundleListResponse + 30, // 196: bundle.Bundle.BundleDetail:output_type -> bundle.BundleDetailResponse + 18, // 197: bundle.Bundle.CreateOrderRecord:output_type -> bundle.CommonResponse + 18, // 198: bundle.Bundle.UpdateOrderRecord:output_type -> bundle.CommonResponse + 18, // 199: bundle.Bundle.UpdateOrderRecordByOrderNo:output_type -> bundle.CommonResponse + 38, // 200: bundle.Bundle.OrderRecordsList:output_type -> bundle.OrderRecordsResponse + 40, // 201: bundle.Bundle.OrderRecordsDetail:output_type -> bundle.OrderRecordsDetailResponse + 18, // 202: bundle.Bundle.UpdateFinancialConfirmationStatus:output_type -> bundle.CommonResponse + 18, // 203: bundle.Bundle.CreateOrderAddRecord:output_type -> bundle.CommonResponse + 17, // 204: bundle.Bundle.PackagePriceAndTime:output_type -> bundle.PackagePriceAndTimeResponse + 14, // 205: bundle.Bundle.OrderRecordsListV2:output_type -> bundle.OrderRecordsResponseV2 + 10, // 206: bundle.Bundle.OrderListByOrderNo:output_type -> bundle.OrderInfoByOrderNoResp + 100, // 207: bundle.Bundle.OnlyAddValueListByOrderNo:output_type -> bundle.OnlyAddValueListByOrderNoResp + 18, // 208: bundle.Bundle.ReSignTheContract:output_type -> bundle.CommonResponse + 32, // 209: bundle.Bundle.GetInEffectOrderRecord:output_type -> bundle.OrderRecord + 43, // 210: bundle.Bundle.CreateValueAddBundle:output_type -> bundle.CreateValueAddBundleResponse + 45, // 211: bundle.Bundle.ValueAddBundleList:output_type -> bundle.ValueAddBundleListResponse + 47, // 212: bundle.Bundle.ValueAddBundleDetail:output_type -> bundle.ValueAddBundleDetailResponse + 22, // 213: bundle.Bundle.SaveValueAddService:output_type -> bundle.SaveResponse + 53, // 214: bundle.Bundle.ValueAddServiceList:output_type -> bundle.ValueAddServiceListResponse + 55, // 215: bundle.Bundle.ValueAddServiceDetail:output_type -> bundle.ValueAddServiceDetailResponse + 50, // 216: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:output_type -> bundle.ValueAddServiceLang + 57, // 217: bundle.Bundle.CalculatePrice:output_type -> bundle.CalculatePriceResponse + 59, // 218: bundle.Bundle.BatchGetValueAddServiceLang:output_type -> bundle.BatchGetValueAddServiceLangResponse + 18, // 219: bundle.Bundle.DeleteValueAddService:output_type -> bundle.CommonResponse + 61, // 220: bundle.Bundle.UpdateBundleBalance:output_type -> bundle.UpdateBundleBalanceResp + 63, // 221: bundle.Bundle.BundleExtend:output_type -> bundle.BundleExtendResponse + 65, // 222: bundle.Bundle.BundleExtendRecordsList:output_type -> bundle.BundleExtendRecordsListResponse + 77, // 223: bundle.Bundle.GetBundleBalanceList:output_type -> bundle.GetBundleBalanceListResp + 70, // 224: bundle.Bundle.GetPayLaterBundleBalanceList:output_type -> bundle.GetPayLaterBundleBalanceListResp + 93, // 225: bundle.Bundle.GetBundleBalanceByUserId:output_type -> bundle.GetBundleBalanceByUserIdResp + 96, // 226: bundle.Bundle.GetBundleOrderListByUserId:output_type -> bundle.GetBundleOrderListByUserIdResp + 98, // 227: bundle.Bundle.GetBundleBalanceByOrderUUID:output_type -> bundle.GetBundleBalanceByOrderUUIDResp + 79, // 228: bundle.Bundle.CreateBundleBalance:output_type -> bundle.CreateBundleBalanceResp + 81, // 229: bundle.Bundle.AddBundleBalance:output_type -> bundle.AddBundleBalanceResp + 113, // 230: bundle.Bundle.BundleActivate:output_type -> bundle.BundleActivateResp + 75, // 231: bundle.Bundle.BundleBalanceExport:output_type -> bundle.BundleBalanceExportResp + 76, // 232: bundle.Bundle.PayLaterBundleBalanceExport:output_type -> bundle.PayLaterBundleBalanceExportResp + 152, // 233: bundle.Bundle.GetBundleBalanceLayout:output_type -> bundle.GetBundleBalanceLayoutResp + 150, // 234: bundle.Bundle.SetBundleBalanceLayout:output_type -> bundle.SetBundleBalanceLayoutResp + 83, // 235: bundle.Bundle.GetUsedRecordList:output_type -> bundle.GetUsedRecordListResp + 87, // 236: bundle.Bundle.GetImageWorkDetail:output_type -> bundle.GetImageWorkDetailResp + 88, // 237: bundle.Bundle.GetVedioWorkDetail:output_type -> bundle.GetVedioeWorkDetailResp + 91, // 238: bundle.Bundle.ToBeComfirmedWorks:output_type -> bundle.ToBeComfirmedWorksResp + 104, // 239: bundle.Bundle.ConfirmWork:output_type -> bundle.ConfirmWorkResp + 107, // 240: bundle.Bundle.GetWaitConfirmWorkList:output_type -> bundle.GetWaitConfirmWorkListResp + 7, // 241: bundle.Bundle.GetReconciliationList:output_type -> bundle.GetReconciliationListResp + 18, // 242: bundle.Bundle.CreateReconciliation:output_type -> bundle.CommonResponse + 18, // 243: bundle.Bundle.UpdateReconciliation:output_type -> bundle.CommonResponse + 18, // 244: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:output_type -> bundle.CommonResponse + 109, // 245: bundle.Bundle.ListUnfinishedInfos:output_type -> bundle.UnfinishedInfos + 18, // 246: bundle.Bundle.SoftDeleteUnfinishedInfo:output_type -> bundle.CommonResponse + 115, // 247: bundle.Bundle.GetPendingTaskList:output_type -> bundle.TaskQueryResponse + 18, // 248: bundle.Bundle.AssignTask:output_type -> bundle.CommonResponse + 18, // 249: bundle.Bundle.UpdatePendingCount:output_type -> bundle.CommonResponse + 122, // 250: bundle.Bundle.GetRecentAssignRecords:output_type -> bundle.RecentAssignRecordsResponse + 124, // 251: bundle.Bundle.GetEmployeeAssignedTasks:output_type -> bundle.EmployeeTaskQueryResponse + 18, // 252: bundle.Bundle.CompleteTaskManually:output_type -> bundle.CommonResponse + 18, // 253: bundle.Bundle.UpdateTaskProgress:output_type -> bundle.CommonResponse + 137, // 254: bundle.Bundle.GetTaskAssignRecordsList:output_type -> bundle.TaskAssignRecordsQueryResponse + 148, // 255: bundle.Bundle.GetArtistBundleBalance:output_type -> bundle.ArtistBundleBalanceResponse + 136, // 256: bundle.Bundle.TerminateTaskByUUID:output_type -> bundle.ComResponse + 133, // 257: bundle.Bundle.GetTaskActualStatusByUUID:output_type -> bundle.GetTaskActualStatusByUUIDResponse + 136, // 258: bundle.Bundle.BatchAssignTask:output_type -> bundle.ComResponse + 136, // 259: bundle.Bundle.BatchTerminateTask:output_type -> bundle.ComResponse + 140, // 260: bundle.Bundle.GetArtistUploadStatsList:output_type -> bundle.ArtistUploadStatsResponse + 154, // 261: bundle.Bundle.GetPendingTaskLayout:output_type -> bundle.GetPendingTaskLayoutResp + 156, // 262: bundle.Bundle.SetPendingTaskLayout:output_type -> bundle.SetPendingTaskLayoutResp + 143, // 263: bundle.Bundle.GetPendingUploadBreakdown:output_type -> bundle.PendingUploadBreakdownResponse + 146, // 264: bundle.Bundle.GetPendingAssign:output_type -> bundle.PendingAssignResponse + 136, // 265: bundle.Bundle.RevertTaskCompletionByUUIDItem:output_type -> bundle.ComResponse + 136, // 266: bundle.Bundle.AddHiddenTaskAssignee:output_type -> bundle.ComResponse + 159, // 267: bundle.Bundle.GetTaskWorkLogList:output_type -> bundle.TaskWorkLogQueryResponse + 18, // 268: bundle.Bundle.CreateTaskWorkLog:output_type -> bundle.CommonResponse + 162, // 269: bundle.Bundle.MetricsBusiness:output_type -> bundle.MetricsBusinessResp + 164, // 270: bundle.Bundle.MetricsOperatingCreate:output_type -> bundle.MetricsOperatingCreateResp + 166, // 271: bundle.Bundle.MetricsOperatingStatus:output_type -> bundle.MetricsOperatingStatusResp + 168, // 272: bundle.Bundle.MetricsBundlePurchaseExport:output_type -> bundle.MetricsBundlePurchaseExportResp + 171, // 273: bundle.Bundle.MetricsArtistAccountExport:output_type -> bundle.MetricsArtistAccountExportResp + 174, // 274: bundle.Bundle.MetricsVideoSubmitExport:output_type -> bundle.MetricsVideoSubmitExportResp + 2, // 275: bundle.Bundle.QueryTheOrderSnapshotInformation:output_type -> bundle.QueryTheOrderSnapshotInformationResp + 201, // 276: bundle.Bundle.CreateInvoice:output_type -> bundle.CreateInvoiceResp + 203, // 277: bundle.Bundle.CreatePaperInvoiceAddress:output_type -> bundle.CreatePaperInvoiceAddressResp + 206, // 278: bundle.Bundle.GetInvoiceList:output_type -> bundle.GetInvoiceListResp + 208, // 279: bundle.Bundle.UpdateInvoiceExpressInfo:output_type -> bundle.UpdateInvoiceExpressInfoResp + 210, // 280: bundle.Bundle.GetInvoiceExpressInfo:output_type -> bundle.GetInvoiceExpressInfoResp + 212, // 281: bundle.Bundle.GetOrderInfoByOrderNo:output_type -> bundle.GetOrderInfoByOrderNoResp + 219, // 282: bundle.Bundle.GetInvoiceInfoByOrderNo:output_type -> bundle.GetInvoiceInfoByOrderNoResp + 221, // 283: bundle.Bundle.GetLastInvoiceNo:output_type -> bundle.GetLastInvoiceNoResp + 223, // 284: bundle.Bundle.UpdataInvoiceInfo:output_type -> bundle.UpdataInvoiceInfoResp + 215, // 285: bundle.Bundle.ExportWorkCastInfo:output_type -> bundle.ExportWorkCastInfoResp + 178, // 286: bundle.Bundle.GetCustomerList:output_type -> bundle.CustomerListResponse + 180, // 287: bundle.Bundle.GetCustomerDetail:output_type -> bundle.CustomerDetailResponse + 136, // 288: bundle.Bundle.UpdateCustomer:output_type -> bundle.ComResponse + 185, // 289: bundle.Bundle.GetReferralPersonList:output_type -> bundle.ReferralPersonListResponse + 136, // 290: bundle.Bundle.UpdateContract:output_type -> bundle.ComResponse + 188, // 291: bundle.Bundle.GetContractList:output_type -> bundle.ContractListResponse + 190, // 292: bundle.Bundle.GetContractDetail:output_type -> bundle.ContractDetailResponse + 192, // 293: bundle.Bundle.GetDevelopmentCyclesByContractUUID:output_type -> bundle.GetDevelopmentCyclesByContractUUIDResponse + 194, // 294: bundle.Bundle.GetPaymentCyclesByContractUUID:output_type -> bundle.GetPaymentCyclesByContractUUIDResponse + 18, // 295: bundle.Bundle.UpdateOrderRecordByOrderUuid:output_type -> bundle.CommonResponse + 10, // 296: bundle.Bundle.OrderListByOrderUuid:output_type -> bundle.OrderInfoByOrderNoResp + 225, // 297: bundle.Bundle.SendQuestionnaireSurvey:output_type -> bundle.SendQuestionnaireSurveyResponse + 228, // 298: bundle.Bundle.GetQuestionnaireSurveyInfo:output_type -> bundle.GetQuestionnaireSurveyInfoResponse + 232, // 299: bundle.Bundle.CreateQuestionnaireSurveyAnswer:output_type -> bundle.CreateQuestionnaireSurveyAnswerResponse + 235, // 300: bundle.Bundle.GetQuestionnaireSurveyList:output_type -> bundle.GetQuestionnaireSurveyListResponse + 186, // [186:301] is the sub-list for method output_type + 71, // [71:186] is the sub-list for method input_type + 71, // [71:71] is the sub-list for extension type_name + 71, // [71:71] is the sub-list for extension extendee + 0, // [0:71] is the sub-list for field type_name } func init() { file_pb_bundle_proto_init() } @@ -28334,7 +28416,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceListResp); i { + switch v := v.(*PayLaterBundleBalanceExportResp); i { case 0: return &v.state case 1: @@ -28346,7 +28428,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateBundleBalanceReq); i { + switch v := v.(*GetBundleBalanceListResp); i { case 0: return &v.state case 1: @@ -28358,7 +28440,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateBundleBalanceResp); i { + switch v := v.(*CreateBundleBalanceReq); i { case 0: return &v.state case 1: @@ -28370,7 +28452,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddBundleBalanceReq); i { + switch v := v.(*CreateBundleBalanceResp); i { case 0: return &v.state case 1: @@ -28382,7 +28464,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddBundleBalanceResp); i { + switch v := v.(*AddBundleBalanceReq); i { case 0: return &v.state case 1: @@ -28394,7 +28476,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetUsedRecordListReq); i { + switch v := v.(*AddBundleBalanceResp); i { case 0: return &v.state case 1: @@ -28406,7 +28488,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetUsedRecordListResp); i { + switch v := v.(*GetUsedRecordListReq); i { case 0: return &v.state case 1: @@ -28418,7 +28500,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*WorkCastItem); i { + switch v := v.(*GetUsedRecordListResp); i { case 0: return &v.state case 1: @@ -28430,7 +28512,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetImageWorkDetailReq); i { + switch v := v.(*WorkCastItem); i { case 0: return &v.state case 1: @@ -28442,7 +28524,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetVedioWorkDetailReq); i { + switch v := v.(*GetImageWorkDetailReq); i { case 0: return &v.state case 1: @@ -28454,7 +28536,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetImageWorkDetailResp); i { + switch v := v.(*GetVedioWorkDetailReq); i { case 0: return &v.state case 1: @@ -28466,7 +28548,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetVedioeWorkDetailResp); i { + switch v := v.(*GetImageWorkDetailResp); i { case 0: return &v.state case 1: @@ -28478,7 +28560,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ToBeComfirmedWorksReq); i { + switch v := v.(*GetVedioeWorkDetailResp); i { case 0: return &v.state case 1: @@ -28490,7 +28572,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*WorkItem); i { + switch v := v.(*ToBeComfirmedWorksReq); i { case 0: return &v.state case 1: @@ -28502,7 +28584,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ToBeComfirmedWorksResp); i { + switch v := v.(*WorkItem); i { case 0: return &v.state case 1: @@ -28514,7 +28596,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceByUserIdReq); i { + switch v := v.(*ToBeComfirmedWorksResp); i { case 0: return &v.state case 1: @@ -28526,7 +28608,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceByUserIdResp); i { + switch v := v.(*GetBundleBalanceByUserIdReq); i { case 0: return &v.state case 1: @@ -28538,7 +28620,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleOrderListByUserIdReq); i { + switch v := v.(*GetBundleBalanceByUserIdResp); i { case 0: return &v.state case 1: @@ -28550,7 +28632,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BalanceOrderItem); i { + switch v := v.(*GetBundleOrderListByUserIdReq); i { case 0: return &v.state case 1: @@ -28562,7 +28644,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleOrderListByUserIdResp); i { + switch v := v.(*BalanceOrderItem); i { case 0: return &v.state case 1: @@ -28574,7 +28656,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceByOrderUUIDReq); i { + switch v := v.(*GetBundleOrderListByUserIdResp); i { case 0: return &v.state case 1: @@ -28586,7 +28668,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceByOrderUUIDResp); i { + switch v := v.(*GetBundleBalanceByOrderUUIDReq); i { case 0: return &v.state case 1: @@ -28598,7 +28680,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*OnlyAddValueListByOrderNoRequest); i { + switch v := v.(*GetBundleBalanceByOrderUUIDResp); i { case 0: return &v.state case 1: @@ -28610,7 +28692,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[99].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*OnlyAddValueListByOrderNoResp); i { + switch v := v.(*OnlyAddValueListByOrderNoRequest); i { case 0: return &v.state case 1: @@ -28622,7 +28704,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[100].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddBundleInfo); i { + switch v := v.(*OnlyAddValueListByOrderNoResp); i { case 0: return &v.state case 1: @@ -28634,7 +28716,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[101].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateStatusAndPayTimeBySerialNumber); i { + switch v := v.(*AddBundleInfo); i { case 0: return &v.state case 1: @@ -28646,7 +28728,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[102].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfirmWorkReq); i { + switch v := v.(*UpdateStatusAndPayTimeBySerialNumber); i { case 0: return &v.state case 1: @@ -28658,7 +28740,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[103].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfirmWorkResp); i { + switch v := v.(*ConfirmWorkReq); i { case 0: return &v.state case 1: @@ -28670,7 +28752,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[104].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfirmWorkItem); i { + switch v := v.(*ConfirmWorkResp); i { case 0: return &v.state case 1: @@ -28682,7 +28764,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[105].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetWaitConfirmWorkListReq); i { + switch v := v.(*ConfirmWorkItem); i { case 0: return &v.state case 1: @@ -28694,7 +28776,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[106].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetWaitConfirmWorkListResp); i { + switch v := v.(*GetWaitConfirmWorkListReq); i { case 0: return &v.state case 1: @@ -28706,7 +28788,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[107].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AutoCreateUserAndOrderRequest); i { + switch v := v.(*GetWaitConfirmWorkListResp); i { case 0: return &v.state case 1: @@ -28718,7 +28800,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[108].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UnfinishedInfos); i { + switch v := v.(*AutoCreateUserAndOrderRequest); i { case 0: return &v.state case 1: @@ -28730,7 +28812,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[109].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UnfinishedInfo); i { + switch v := v.(*UnfinishedInfos); i { case 0: return &v.state case 1: @@ -28742,7 +28824,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[110].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SoftDeleteUnfinishedInfoRequest); i { + switch v := v.(*UnfinishedInfo); i { case 0: return &v.state case 1: @@ -28754,7 +28836,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[111].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BundleActivateReq); i { + switch v := v.(*SoftDeleteUnfinishedInfoRequest); i { case 0: return &v.state case 1: @@ -28766,7 +28848,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[112].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BundleActivateResp); i { + switch v := v.(*BundleActivateReq); i { case 0: return &v.state case 1: @@ -28778,7 +28860,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[113].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskQueryRequest); i { + switch v := v.(*BundleActivateResp); i { case 0: return &v.state case 1: @@ -28790,7 +28872,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[114].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskQueryResponse); i { + switch v := v.(*TaskQueryRequest); i { case 0: return &v.state case 1: @@ -28802,7 +28884,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[115].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskManagementInfo); i { + switch v := v.(*TaskQueryResponse); i { case 0: return &v.state case 1: @@ -28814,7 +28896,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[116].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRequest); i { + switch v := v.(*TaskManagementInfo); i { case 0: return &v.state case 1: @@ -28826,7 +28908,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[117].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdatePendingCountRequest); i { + switch v := v.(*TaskAssignRequest); i { case 0: return &v.state case 1: @@ -28838,7 +28920,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[118].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddHiddenTaskAssigneeRequest); i { + switch v := v.(*UpdatePendingCountRequest); i { case 0: return &v.state case 1: @@ -28850,7 +28932,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[119].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RecentAssignRecordsRequest); i { + switch v := v.(*AddHiddenTaskAssigneeRequest); i { case 0: return &v.state case 1: @@ -28862,7 +28944,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[120].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RecentAssigneeItem); i { + switch v := v.(*RecentAssignRecordsRequest); i { case 0: return &v.state case 1: @@ -28874,7 +28956,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[121].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RecentAssignRecordsResponse); i { + switch v := v.(*RecentAssigneeItem); i { case 0: return &v.state case 1: @@ -28886,7 +28968,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[122].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EmployeeTaskQueryRequest); i { + switch v := v.(*RecentAssignRecordsResponse); i { case 0: return &v.state case 1: @@ -28898,7 +28980,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[123].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EmployeeTaskQueryResponse); i { + switch v := v.(*EmployeeTaskQueryRequest); i { case 0: return &v.state case 1: @@ -28910,7 +28992,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[124].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRecordInfo); i { + switch v := v.(*EmployeeTaskQueryResponse); i { case 0: return &v.state case 1: @@ -28922,7 +29004,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[125].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BatchAssignTaskItem); i { + switch v := v.(*TaskAssignRecordInfo); i { case 0: return &v.state case 1: @@ -28934,7 +29016,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[126].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BatchAssignTaskRequest); i { + switch v := v.(*BatchAssignTaskItem); i { case 0: return &v.state case 1: @@ -28946,7 +29028,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[127].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CompleteTaskManuallyRequest); i { + switch v := v.(*BatchAssignTaskRequest); i { case 0: return &v.state case 1: @@ -28958,7 +29040,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[128].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TerminateTaskByUUIDRequest); i { + switch v := v.(*CompleteTaskManuallyRequest); i { case 0: return &v.state case 1: @@ -28970,7 +29052,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[129].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BatchTerminateTaskRequest); i { + switch v := v.(*TerminateTaskByUUIDRequest); i { case 0: return &v.state case 1: @@ -28982,7 +29064,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[130].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RevertTaskCompletionByUUIDItemRequest); i { + switch v := v.(*BatchTerminateTaskRequest); i { case 0: return &v.state case 1: @@ -28994,7 +29076,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[131].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetTaskActualStatusByUUIDRequest); i { + switch v := v.(*RevertTaskCompletionByUUIDItemRequest); i { case 0: return &v.state case 1: @@ -29006,7 +29088,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[132].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetTaskActualStatusByUUIDResponse); i { + switch v := v.(*GetTaskActualStatusByUUIDRequest); i { case 0: return &v.state case 1: @@ -29018,7 +29100,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[133].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateTaskProgressRequest); i { + switch v := v.(*GetTaskActualStatusByUUIDResponse); i { case 0: return &v.state case 1: @@ -29030,7 +29112,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[134].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRecordsQueryRequest); i { + switch v := v.(*UpdateTaskProgressRequest); i { case 0: return &v.state case 1: @@ -29042,7 +29124,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[135].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ComResponse); i { + switch v := v.(*TaskAssignRecordsQueryRequest); i { case 0: return &v.state case 1: @@ -29054,7 +29136,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[136].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRecordsQueryResponse); i { + switch v := v.(*ComResponse); i { case 0: return &v.state case 1: @@ -29066,7 +29148,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[137].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRecordsSummary); i { + switch v := v.(*TaskAssignRecordsQueryResponse); i { case 0: return &v.state case 1: @@ -29078,7 +29160,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[138].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ArtistUploadStatsItem); i { + switch v := v.(*TaskAssignRecordsSummary); i { case 0: return &v.state case 1: @@ -29090,7 +29172,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[139].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ArtistUploadStatsResponse); i { + switch v := v.(*ArtistUploadStatsItem); i { case 0: return &v.state case 1: @@ -29102,7 +29184,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[140].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingUploadBreakdownRequest); i { + switch v := v.(*ArtistUploadStatsResponse); i { case 0: return &v.state case 1: @@ -29114,7 +29196,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[141].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingUploadBreakdownItem); i { + switch v := v.(*PendingUploadBreakdownRequest); i { case 0: return &v.state case 1: @@ -29126,7 +29208,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[142].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingUploadBreakdownResponse); i { + switch v := v.(*PendingUploadBreakdownItem); i { case 0: return &v.state case 1: @@ -29138,7 +29220,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[143].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingAssignRequest); i { + switch v := v.(*PendingUploadBreakdownResponse); i { case 0: return &v.state case 1: @@ -29150,7 +29232,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[144].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingAssignItem); i { + switch v := v.(*PendingAssignRequest); i { case 0: return &v.state case 1: @@ -29162,7 +29244,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[145].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingAssignResponse); i { + switch v := v.(*PendingAssignItem); i { case 0: return &v.state case 1: @@ -29174,7 +29256,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[146].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ArtistBundleBalanceRequest); i { + switch v := v.(*PendingAssignResponse); i { case 0: return &v.state case 1: @@ -29186,7 +29268,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[147].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ArtistBundleBalanceResponse); i { + switch v := v.(*ArtistBundleBalanceRequest); i { case 0: return &v.state case 1: @@ -29198,7 +29280,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[148].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetBundleBalanceLayoutReq); i { + switch v := v.(*ArtistBundleBalanceResponse); i { case 0: return &v.state case 1: @@ -29210,7 +29292,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[149].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetBundleBalanceLayoutResp); i { + switch v := v.(*SetBundleBalanceLayoutReq); i { case 0: return &v.state case 1: @@ -29222,7 +29304,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[150].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceLayoutReq); i { + switch v := v.(*SetBundleBalanceLayoutResp); i { case 0: return &v.state case 1: @@ -29234,7 +29316,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[151].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceLayoutResp); i { + switch v := v.(*GetBundleBalanceLayoutReq); i { case 0: return &v.state case 1: @@ -29246,7 +29328,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[152].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPendingTaskLayoutReq); i { + switch v := v.(*GetBundleBalanceLayoutResp); i { case 0: return &v.state case 1: @@ -29258,7 +29340,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[153].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPendingTaskLayoutResp); i { + switch v := v.(*GetPendingTaskLayoutReq); i { case 0: return &v.state case 1: @@ -29270,7 +29352,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[154].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetPendingTaskLayoutReq); i { + switch v := v.(*GetPendingTaskLayoutResp); i { case 0: return &v.state case 1: @@ -29282,7 +29364,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[155].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetPendingTaskLayoutResp); i { + switch v := v.(*SetPendingTaskLayoutReq); i { case 0: return &v.state case 1: @@ -29294,7 +29376,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[156].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskWorkLogQueryRequest); i { + switch v := v.(*SetPendingTaskLayoutResp); i { case 0: return &v.state case 1: @@ -29306,7 +29388,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[157].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskWorkLogInfo); i { + switch v := v.(*TaskWorkLogQueryRequest); i { case 0: return &v.state case 1: @@ -29318,7 +29400,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[158].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskWorkLogQueryResponse); i { + switch v := v.(*TaskWorkLogInfo); i { case 0: return &v.state case 1: @@ -29330,7 +29412,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[159].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateTaskWorkLogRequest); i { + switch v := v.(*TaskWorkLogQueryResponse); i { case 0: return &v.state case 1: @@ -29342,7 +29424,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[160].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBusinessReq); i { + switch v := v.(*CreateTaskWorkLogRequest); i { case 0: return &v.state case 1: @@ -29354,7 +29436,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[161].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBusinessResp); i { + switch v := v.(*MetricsBusinessReq); i { case 0: return &v.state case 1: @@ -29366,7 +29448,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[162].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsOperatingCreateReq); i { + switch v := v.(*MetricsBusinessResp); i { case 0: return &v.state case 1: @@ -29378,7 +29460,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[163].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsOperatingCreateResp); i { + switch v := v.(*MetricsOperatingCreateReq); i { case 0: return &v.state case 1: @@ -29390,7 +29472,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[164].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsOperatingStatusReq); i { + switch v := v.(*MetricsOperatingCreateResp); i { case 0: return &v.state case 1: @@ -29402,7 +29484,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[165].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsOperatingStatusResp); i { + switch v := v.(*MetricsOperatingStatusReq); i { case 0: return &v.state case 1: @@ -29414,7 +29496,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[166].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBundlePurchaseExportReq); i { + switch v := v.(*MetricsOperatingStatusResp); i { case 0: return &v.state case 1: @@ -29426,7 +29508,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[167].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBundlePurchaseExportResp); i { + switch v := v.(*MetricsBundlePurchaseExportReq); i { case 0: return &v.state case 1: @@ -29438,7 +29520,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[168].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBundlePurchaseItem); i { + switch v := v.(*MetricsBundlePurchaseExportResp); i { case 0: return &v.state case 1: @@ -29450,7 +29532,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[169].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsArtistAccountExportReq); i { + switch v := v.(*MetricsBundlePurchaseItem); i { case 0: return &v.state case 1: @@ -29462,7 +29544,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[170].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsArtistAccountExportResp); i { + switch v := v.(*MetricsArtistAccountExportReq); i { case 0: return &v.state case 1: @@ -29474,7 +29556,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[171].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsArtistAccountExportItem); i { + switch v := v.(*MetricsArtistAccountExportResp); i { case 0: return &v.state case 1: @@ -29486,7 +29568,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[172].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsVideoSubmitExportReq); i { + switch v := v.(*MetricsArtistAccountExportItem); i { case 0: return &v.state case 1: @@ -29498,7 +29580,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[173].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsVideoSubmitExportResp); i { + switch v := v.(*MetricsVideoSubmitExportReq); i { case 0: return &v.state case 1: @@ -29510,7 +29592,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[174].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsVideoSubmitExportItem); i { + switch v := v.(*MetricsVideoSubmitExportResp); i { case 0: return &v.state case 1: @@ -29522,7 +29604,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[175].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBalanceDetailExportReq); i { + switch v := v.(*MetricsVideoSubmitExportItem); i { case 0: return &v.state case 1: @@ -29534,7 +29616,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[176].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerListRequest); i { + switch v := v.(*MetricsBalanceDetailExportReq); i { case 0: return &v.state case 1: @@ -29546,7 +29628,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[177].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerListResponse); i { + switch v := v.(*CustomerListRequest); i { case 0: return &v.state case 1: @@ -29558,7 +29640,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[178].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerDetailRequest); i { + switch v := v.(*CustomerListResponse); i { case 0: return &v.state case 1: @@ -29570,7 +29652,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[179].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerDetailResponse); i { + switch v := v.(*CustomerDetailRequest); i { case 0: return &v.state case 1: @@ -29582,7 +29664,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[180].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerUpdateRequest); i { + switch v := v.(*CustomerDetailResponse); i { case 0: return &v.state case 1: @@ -29594,7 +29676,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[181].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerInfo); i { + switch v := v.(*CustomerUpdateRequest); i { case 0: return &v.state case 1: @@ -29606,7 +29688,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[182].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Customer); i { + switch v := v.(*CustomerInfo); i { case 0: return &v.state case 1: @@ -29618,7 +29700,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[183].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReferralPersonListRequest); i { + switch v := v.(*Customer); i { case 0: return &v.state case 1: @@ -29630,7 +29712,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[184].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReferralPersonListResponse); i { + switch v := v.(*ReferralPersonListRequest); i { case 0: return &v.state case 1: @@ -29642,7 +29724,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[185].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractUpdateRequest); i { + switch v := v.(*ReferralPersonListResponse); i { case 0: return &v.state case 1: @@ -29654,7 +29736,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[186].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractListRequest); i { + switch v := v.(*ContractUpdateRequest); i { case 0: return &v.state case 1: @@ -29666,7 +29748,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[187].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractListResponse); i { + switch v := v.(*ContractListRequest); i { case 0: return &v.state case 1: @@ -29678,7 +29760,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[188].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractDetailRequest); i { + switch v := v.(*ContractListResponse); i { case 0: return &v.state case 1: @@ -29690,7 +29772,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[189].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractDetailResponse); i { + switch v := v.(*ContractDetailRequest); i { case 0: return &v.state case 1: @@ -29702,7 +29784,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[190].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetDevelopmentCyclesByContractUUIDRequest); i { + switch v := v.(*ContractDetailResponse); i { case 0: return &v.state case 1: @@ -29714,7 +29796,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[191].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetDevelopmentCyclesByContractUUIDResponse); i { + switch v := v.(*GetDevelopmentCyclesByContractUUIDRequest); i { case 0: return &v.state case 1: @@ -29726,7 +29808,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[192].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPaymentCyclesByContractUUIDRequest); i { + switch v := v.(*GetDevelopmentCyclesByContractUUIDResponse); i { case 0: return &v.state case 1: @@ -29738,7 +29820,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[193].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPaymentCyclesByContractUUIDResponse); i { + switch v := v.(*GetPaymentCyclesByContractUUIDRequest); i { case 0: return &v.state case 1: @@ -29750,7 +29832,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[194].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AttachmentItem); i { + switch v := v.(*GetPaymentCyclesByContractUUIDResponse); i { case 0: return &v.state case 1: @@ -29762,7 +29844,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[195].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractInfo); i { + switch v := v.(*AttachmentItem); i { case 0: return &v.state case 1: @@ -29774,7 +29856,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[196].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Contract); i { + switch v := v.(*ContractInfo); i { case 0: return &v.state case 1: @@ -29786,7 +29868,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[197].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractPaymentCycle); i { + switch v := v.(*Contract); i { case 0: return &v.state case 1: @@ -29798,7 +29880,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[198].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DevelopmentCycle); i { + switch v := v.(*ContractPaymentCycle); i { case 0: return &v.state case 1: @@ -29810,7 +29892,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[199].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateInvoiceReq); i { + switch v := v.(*DevelopmentCycle); i { case 0: return &v.state case 1: @@ -29822,7 +29904,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[200].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateInvoiceResp); i { + switch v := v.(*CreateInvoiceReq); i { case 0: return &v.state case 1: @@ -29834,7 +29916,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[201].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreatePaperInvoiceAddressReq); i { + switch v := v.(*CreateInvoiceResp); i { case 0: return &v.state case 1: @@ -29846,7 +29928,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[202].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreatePaperInvoiceAddressResp); i { + switch v := v.(*CreatePaperInvoiceAddressReq); i { case 0: return &v.state case 1: @@ -29858,7 +29940,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[203].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*InvoiceInfo); i { + switch v := v.(*CreatePaperInvoiceAddressResp); i { case 0: return &v.state case 1: @@ -29870,7 +29952,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[204].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceListReq); i { + switch v := v.(*InvoiceInfo); i { case 0: return &v.state case 1: @@ -29882,7 +29964,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[205].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceListResp); i { + switch v := v.(*GetInvoiceListReq); i { case 0: return &v.state case 1: @@ -29894,7 +29976,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[206].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateInvoiceExpressInfoReq); i { + switch v := v.(*GetInvoiceListResp); i { case 0: return &v.state case 1: @@ -29906,7 +29988,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[207].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateInvoiceExpressInfoResp); i { + switch v := v.(*UpdateInvoiceExpressInfoReq); i { case 0: return &v.state case 1: @@ -29918,7 +30000,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[208].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceExpressInfoReq); i { + switch v := v.(*UpdateInvoiceExpressInfoResp); i { case 0: return &v.state case 1: @@ -29930,7 +30012,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[209].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceExpressInfoResp); i { + switch v := v.(*GetInvoiceExpressInfoReq); i { case 0: return &v.state case 1: @@ -29942,7 +30024,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[210].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetOrderInfoByOrderNoReq); i { + switch v := v.(*GetInvoiceExpressInfoResp); i { case 0: return &v.state case 1: @@ -29954,7 +30036,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[211].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetOrderInfoByOrderNoResp); i { + switch v := v.(*GetOrderInfoByOrderNoReq); i { case 0: return &v.state case 1: @@ -29966,7 +30048,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[212].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*WorkCastInfo); i { + switch v := v.(*GetOrderInfoByOrderNoResp); i { case 0: return &v.state case 1: @@ -29978,7 +30060,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[213].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ExportWorkCastInfoReq); i { + switch v := v.(*WorkCastInfo); i { case 0: return &v.state case 1: @@ -29990,7 +30072,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[214].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ExportWorkCastInfoResp); i { + switch v := v.(*ExportWorkCastInfoReq); i { case 0: return &v.state case 1: @@ -30002,7 +30084,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[215].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*OrderInfoByOrderUuidRequest); i { + switch v := v.(*ExportWorkCastInfoResp); i { case 0: return &v.state case 1: @@ -30014,7 +30096,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[216].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceInfoByOrderNoReq); i { + switch v := v.(*OrderInfoByOrderUuidRequest); i { case 0: return &v.state case 1: @@ -30026,7 +30108,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[217].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*InvoiceInfoByOrderNo); i { + switch v := v.(*GetInvoiceInfoByOrderNoReq); i { case 0: return &v.state case 1: @@ -30038,7 +30120,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[218].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceInfoByOrderNoResp); i { + switch v := v.(*InvoiceInfoByOrderNo); i { case 0: return &v.state case 1: @@ -30050,7 +30132,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[219].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetLastInvoiceNoReq); i { + switch v := v.(*GetInvoiceInfoByOrderNoResp); i { case 0: return &v.state case 1: @@ -30062,7 +30144,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[220].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetLastInvoiceNoResp); i { + switch v := v.(*GetLastInvoiceNoReq); i { case 0: return &v.state case 1: @@ -30074,7 +30156,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[221].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdataInvoiceInfoReq); i { + switch v := v.(*GetLastInvoiceNoResp); i { case 0: return &v.state case 1: @@ -30086,7 +30168,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[222].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdataInvoiceInfoResp); i { + switch v := v.(*UpdataInvoiceInfoReq); i { case 0: return &v.state case 1: @@ -30098,7 +30180,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[223].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SendQuestionnaireSurveyRequest); i { + switch v := v.(*UpdataInvoiceInfoResp); i { case 0: return &v.state case 1: @@ -30110,7 +30192,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[224].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SendQuestionnaireSurveyResponse); i { + switch v := v.(*SendQuestionnaireSurveyRequest); i { case 0: return &v.state case 1: @@ -30122,7 +30204,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[225].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetQuestionnaireSurveyInfoRequest); i { + switch v := v.(*SendQuestionnaireSurveyResponse); i { case 0: return &v.state case 1: @@ -30134,7 +30216,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[226].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SurveyBundleInfo); i { + switch v := v.(*GetQuestionnaireSurveyInfoRequest); i { case 0: return &v.state case 1: @@ -30146,7 +30228,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[227].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetQuestionnaireSurveyInfoResponse); i { + switch v := v.(*SurveyBundleInfo); i { case 0: return &v.state case 1: @@ -30158,7 +30240,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[228].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SurveyAnswer); i { + switch v := v.(*GetQuestionnaireSurveyInfoResponse); i { case 0: return &v.state case 1: @@ -30170,7 +30252,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[229].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SurveyFeedback); i { + switch v := v.(*SurveyAnswer); i { case 0: return &v.state case 1: @@ -30182,7 +30264,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[230].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateQuestionnaireSurveyAnswerRequest); i { + switch v := v.(*SurveyFeedback); i { case 0: return &v.state case 1: @@ -30194,7 +30276,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[231].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateQuestionnaireSurveyAnswerResponse); i { + switch v := v.(*CreateQuestionnaireSurveyAnswerRequest); i { case 0: return &v.state case 1: @@ -30206,7 +30288,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[232].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetQuestionnaireSurveyListRequest); i { + switch v := v.(*CreateQuestionnaireSurveyAnswerResponse); i { case 0: return &v.state case 1: @@ -30218,7 +30300,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[233].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SurveyListInfo); i { + switch v := v.(*GetQuestionnaireSurveyListRequest); i { case 0: return &v.state case 1: @@ -30230,6 +30312,18 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[234].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*SurveyListInfo); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_pb_bundle_proto_msgTypes[235].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetQuestionnaireSurveyListResponse); i { case 0: return &v.state @@ -30248,7 +30342,7 @@ func file_pb_bundle_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_pb_bundle_proto_rawDesc, NumEnums: 0, - NumMessages: 235, + NumMessages: 236, NumExtensions: 0, NumServices: 1, }, diff --git a/pb/bundle/bundle.validator.pb.go b/pb/bundle/bundle.validator.pb.go index e9550d0..1feddf2 100644 --- a/pb/bundle/bundle.validator.pb.go +++ b/pb/bundle/bundle.validator.pb.go @@ -437,6 +437,16 @@ func (this *BundleBalanceExportResp) Validate() error { } return nil } +func (this *PayLaterBundleBalanceExportResp) Validate() error { + for _, item := range this.Data { + if item != nil { + if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil { + return github_com_mwitkow_go_proto_validators.FieldError("Data", err) + } + } + } + return nil +} func (this *GetBundleBalanceListResp) Validate() error { for _, item := range this.Data { if item != nil { diff --git a/pb/bundle/bundle_triple.pb.go b/pb/bundle/bundle_triple.pb.go index 988e3bd..6873b54 100644 --- a/pb/bundle/bundle_triple.pb.go +++ b/pb/bundle/bundle_triple.pb.go @@ -77,6 +77,7 @@ type BundleClient interface { AddBundleBalance(ctx context.Context, in *AddBundleBalanceReq, opts ...grpc_go.CallOption) (*AddBundleBalanceResp, common.ErrorWithAttachment) BundleActivate(ctx context.Context, in *BundleActivateReq, opts ...grpc_go.CallOption) (*BundleActivateResp, common.ErrorWithAttachment) BundleBalanceExport(ctx context.Context, in *BundleBalanceExportReq, opts ...grpc_go.CallOption) (*BundleBalanceExportResp, common.ErrorWithAttachment) + PayLaterBundleBalanceExport(ctx context.Context, in *BundleBalanceExportReq, opts ...grpc_go.CallOption) (*PayLaterBundleBalanceExportResp, common.ErrorWithAttachment) GetBundleBalanceLayout(ctx context.Context, in *GetBundleBalanceLayoutReq, opts ...grpc_go.CallOption) (*GetBundleBalanceLayoutResp, common.ErrorWithAttachment) SetBundleBalanceLayout(ctx context.Context, in *SetBundleBalanceLayoutReq, opts ...grpc_go.CallOption) (*SetBundleBalanceLayoutResp, common.ErrorWithAttachment) // 使用记录 @@ -208,6 +209,7 @@ type BundleClientImpl struct { AddBundleBalance func(ctx context.Context, in *AddBundleBalanceReq) (*AddBundleBalanceResp, error) BundleActivate func(ctx context.Context, in *BundleActivateReq) (*BundleActivateResp, error) BundleBalanceExport func(ctx context.Context, in *BundleBalanceExportReq) (*BundleBalanceExportResp, error) + PayLaterBundleBalanceExport func(ctx context.Context, in *BundleBalanceExportReq) (*PayLaterBundleBalanceExportResp, error) GetBundleBalanceLayout func(ctx context.Context, in *GetBundleBalanceLayoutReq) (*GetBundleBalanceLayoutResp, error) SetBundleBalanceLayout func(ctx context.Context, in *SetBundleBalanceLayoutReq) (*SetBundleBalanceLayoutResp, error) GetUsedRecordList func(ctx context.Context, in *GetUsedRecordListReq) (*GetUsedRecordListResp, error) @@ -566,6 +568,12 @@ func (c *bundleClient) BundleBalanceExport(ctx context.Context, in *BundleBalanc return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/BundleBalanceExport", in, out) } +func (c *bundleClient) PayLaterBundleBalanceExport(ctx context.Context, in *BundleBalanceExportReq, opts ...grpc_go.CallOption) (*PayLaterBundleBalanceExportResp, common.ErrorWithAttachment) { + out := new(PayLaterBundleBalanceExportResp) + interfaceKey := ctx.Value(constant.InterfaceKey).(string) + return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/PayLaterBundleBalanceExport", in, out) +} + func (c *bundleClient) GetBundleBalanceLayout(ctx context.Context, in *GetBundleBalanceLayoutReq, opts ...grpc_go.CallOption) (*GetBundleBalanceLayoutResp, common.ErrorWithAttachment) { out := new(GetBundleBalanceLayoutResp) interfaceKey := ctx.Value(constant.InterfaceKey).(string) @@ -1027,6 +1035,7 @@ type BundleServer interface { AddBundleBalance(context.Context, *AddBundleBalanceReq) (*AddBundleBalanceResp, error) BundleActivate(context.Context, *BundleActivateReq) (*BundleActivateResp, error) BundleBalanceExport(context.Context, *BundleBalanceExportReq) (*BundleBalanceExportResp, error) + PayLaterBundleBalanceExport(context.Context, *BundleBalanceExportReq) (*PayLaterBundleBalanceExportResp, error) GetBundleBalanceLayout(context.Context, *GetBundleBalanceLayoutReq) (*GetBundleBalanceLayoutResp, error) SetBundleBalanceLayout(context.Context, *SetBundleBalanceLayoutReq) (*SetBundleBalanceLayoutResp, error) // 使用记录 @@ -1251,6 +1260,9 @@ func (UnimplementedBundleServer) BundleActivate(context.Context, *BundleActivate func (UnimplementedBundleServer) BundleBalanceExport(context.Context, *BundleBalanceExportReq) (*BundleBalanceExportResp, error) { return nil, status.Errorf(codes.Unimplemented, "method BundleBalanceExport not implemented") } +func (UnimplementedBundleServer) PayLaterBundleBalanceExport(context.Context, *BundleBalanceExportReq) (*PayLaterBundleBalanceExportResp, error) { + return nil, status.Errorf(codes.Unimplemented, "method PayLaterBundleBalanceExport not implemented") +} func (UnimplementedBundleServer) GetBundleBalanceLayout(context.Context, *GetBundleBalanceLayoutReq) (*GetBundleBalanceLayoutResp, error) { return nil, status.Errorf(codes.Unimplemented, "method GetBundleBalanceLayout not implemented") } @@ -2817,6 +2829,35 @@ func _Bundle_BundleBalanceExport_Handler(srv interface{}, ctx context.Context, d return interceptor(ctx, in, info, handler) } +func _Bundle_PayLaterBundleBalanceExport_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc_go.UnaryServerInterceptor) (interface{}, error) { + in := new(BundleBalanceExportReq) + if err := dec(in); err != nil { + return nil, err + } + base := srv.(dubbo3.Dubbo3GrpcService) + args := []interface{}{} + args = append(args, in) + md, _ := metadata.FromIncomingContext(ctx) + invAttachment := make(map[string]interface{}, len(md)) + for k, v := range md { + invAttachment[k] = v + } + invo := invocation.NewRPCInvocation("PayLaterBundleBalanceExport", args, invAttachment) + if interceptor == nil { + result := base.XXX_GetProxyImpl().Invoke(ctx, invo) + return result, result.Error() + } + info := &grpc_go.UnaryServerInfo{ + Server: srv, + FullMethod: ctx.Value("XXX_TRIPLE_GO_INTERFACE_NAME").(string), + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + result := base.XXX_GetProxyImpl().Invoke(ctx, invo) + return result, result.Error() + } + return interceptor(ctx, in, info, handler) +} + func _Bundle_GetBundleBalanceLayout_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc_go.UnaryServerInterceptor) (interface{}, error) { in := new(GetBundleBalanceLayoutReq) if err := dec(in); err != nil { @@ -4980,6 +5021,10 @@ var Bundle_ServiceDesc = grpc_go.ServiceDesc{ MethodName: "BundleBalanceExport", Handler: _Bundle_BundleBalanceExport_Handler, }, + { + MethodName: "PayLaterBundleBalanceExport", + Handler: _Bundle_PayLaterBundleBalanceExport_Handler, + }, { MethodName: "GetBundleBalanceLayout", Handler: _Bundle_GetBundleBalanceLayout_Handler, From 8e52bba692cad0bc977c27eeb118cd928c379980 Mon Sep 17 00:00:00 2001 From: "jiaji.H" Date: Thu, 11 Jun 2026 11:01:11 +0800 Subject: [PATCH 2/2] =?UTF-8?q?Update:=E5=A2=9E=E5=8A=A0=E6=9C=88=E4=BB=BD?= =?UTF-8?q?=E7=AD=9B=E9=80=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/dao/bundleExtend.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/internal/dao/bundleExtend.go b/internal/dao/bundleExtend.go index 819c2cb..2a2be87 100644 --- a/internal/dao/bundleExtend.go +++ b/internal/dao/bundleExtend.go @@ -232,6 +232,12 @@ func GetPayLaterBundleBalanceList(req *bundle.GetPayLaterBundleBalanceListReq) ( if req.StartTimeEnd != 0 { session = session.Where("bor.created_at <= ?", time.UnixMilli(req.StartTimeEnd)) } + if len(req.Month) == 0 { + newestMonthQuery := app.ModuleClients.BundleDB.Model(&model.BundleBalance{}).Select("max(month) as month,user_id").Group("user_id") + session.Joins("LEFT JOIN (?) as newest_month on newest_month.user_id = bb.user_id", newestMonthQuery).Where("") + } else { + session = session.Where("bb.month in (?)", req.Month) + } err = session.Count(&total).Error if err != nil { return