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..2a2be87 100644 --- a/internal/dao/bundleExtend.go +++ b/internal/dao/bundleExtend.go @@ -226,6 +226,18 @@ 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)) + } + 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 diff --git a/internal/logic/bundleExtendLogic.go b/internal/logic/bundleExtendLogic.go index 77c90eb..ea845eb 100644 --- a/internal/logic/bundleExtendLogic.go +++ b/internal/logic/bundleExtendLogic.go @@ -765,6 +765,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 52185bd..f66871e 100644 --- a/pb/bundle.proto +++ b/pb/bundle.proto @@ -75,7 +75,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) {} // 余量布局 @@ -1167,6 +1168,7 @@ message BundleBalanceExportReq{ uint64 expiredTimeStart = 3; uint64 expiredTimeEnd = 4; uint32 status = 5; + uint32 bundleType = 6; } message BundleBalanceExportResp{ @@ -1174,6 +1176,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 58a9cfc..0753785 100644 --- a/pb/bundle/bundle.pb.go +++ b/pb/bundle/bundle.pb.go @@ -9155,6 +9155,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() { @@ -9224,6 +9225,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 @@ -9279,6 +9287,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[84] + 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[84] + 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{84} +} + +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 @@ -9291,7 +9354,7 @@ type GetBundleBalanceListResp struct { func (x *GetBundleBalanceListResp) Reset() { *x = GetBundleBalanceListResp{} 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) } @@ -9304,7 +9367,7 @@ func (x *GetBundleBalanceListResp) String() string { func (*GetBundleBalanceListResp) ProtoMessage() {} func (x *GetBundleBalanceListResp) 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 { @@ -9317,7 +9380,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{84} + return file_pb_bundle_proto_rawDescGZIP(), []int{85} } func (x *GetBundleBalanceListResp) GetTotal() int64 { @@ -9355,7 +9418,7 @@ type CreateBundleBalanceReq struct { func (x *CreateBundleBalanceReq) Reset() { *x = CreateBundleBalanceReq{} 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) } @@ -9368,7 +9431,7 @@ func (x *CreateBundleBalanceReq) String() string { func (*CreateBundleBalanceReq) ProtoMessage() {} func (x *CreateBundleBalanceReq) 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 { @@ -9381,7 +9444,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{85} + return file_pb_bundle_proto_rawDescGZIP(), []int{86} } func (x *CreateBundleBalanceReq) GetUserId() int32 { @@ -9470,7 +9533,7 @@ type CreateBundleBalanceResp struct { func (x *CreateBundleBalanceResp) Reset() { *x = CreateBundleBalanceResp{} 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) } @@ -9483,7 +9546,7 @@ func (x *CreateBundleBalanceResp) String() string { func (*CreateBundleBalanceResp) ProtoMessage() {} func (x *CreateBundleBalanceResp) 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 { @@ -9496,7 +9559,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{86} + return file_pb_bundle_proto_rawDescGZIP(), []int{87} } type AddBundleBalanceReq struct { @@ -9523,7 +9586,7 @@ type AddBundleBalanceReq struct { func (x *AddBundleBalanceReq) Reset() { *x = AddBundleBalanceReq{} 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) } @@ -9536,7 +9599,7 @@ func (x *AddBundleBalanceReq) String() string { func (*AddBundleBalanceReq) ProtoMessage() {} func (x *AddBundleBalanceReq) 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 { @@ -9549,7 +9612,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{87} + return file_pb_bundle_proto_rawDescGZIP(), []int{88} } func (x *AddBundleBalanceReq) GetId() int32 { @@ -9661,7 +9724,7 @@ type AddBundleBalanceResp struct { func (x *AddBundleBalanceResp) Reset() { *x = AddBundleBalanceResp{} 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) } @@ -9674,7 +9737,7 @@ func (x *AddBundleBalanceResp) String() string { func (*AddBundleBalanceResp) ProtoMessage() {} func (x *AddBundleBalanceResp) 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 { @@ -9687,7 +9750,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{88} + return file_pb_bundle_proto_rawDescGZIP(), []int{89} } func (x *AddBundleBalanceResp) GetUsedType() uint32 { @@ -9719,7 +9782,7 @@ type GetUsedRecordListReq struct { func (x *GetUsedRecordListReq) Reset() { *x = GetUsedRecordListReq{} 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) } @@ -9732,7 +9795,7 @@ func (x *GetUsedRecordListReq) String() string { func (*GetUsedRecordListReq) ProtoMessage() {} func (x *GetUsedRecordListReq) 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 { @@ -9745,7 +9808,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{89} + return file_pb_bundle_proto_rawDescGZIP(), []int{90} } func (x *GetUsedRecordListReq) GetUser() string { @@ -9844,7 +9907,7 @@ type GetUsedRecordListResp struct { func (x *GetUsedRecordListResp) Reset() { *x = GetUsedRecordListResp{} 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) } @@ -9857,7 +9920,7 @@ func (x *GetUsedRecordListResp) String() string { func (*GetUsedRecordListResp) ProtoMessage() {} func (x *GetUsedRecordListResp) 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 { @@ -9870,7 +9933,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{90} + return file_pb_bundle_proto_rawDescGZIP(), []int{91} } func (x *GetUsedRecordListResp) GetTotal() int64 { @@ -9913,7 +9976,7 @@ type WorkCastItem struct { func (x *WorkCastItem) Reset() { *x = WorkCastItem{} 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) } @@ -9926,7 +9989,7 @@ func (x *WorkCastItem) String() string { func (*WorkCastItem) ProtoMessage() {} func (x *WorkCastItem) 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 { @@ -9939,7 +10002,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{91} + return file_pb_bundle_proto_rawDescGZIP(), []int{92} } func (x *WorkCastItem) GetArtistUuid() string { @@ -10065,7 +10128,7 @@ type GetImageWorkDetailReq struct { func (x *GetImageWorkDetailReq) Reset() { *x = GetImageWorkDetailReq{} 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) } @@ -10078,7 +10141,7 @@ func (x *GetImageWorkDetailReq) String() string { func (*GetImageWorkDetailReq) ProtoMessage() {} func (x *GetImageWorkDetailReq) 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 { @@ -10091,7 +10154,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{92} + return file_pb_bundle_proto_rawDescGZIP(), []int{93} } func (x *GetImageWorkDetailReq) GetWorkId() string { @@ -10112,7 +10175,7 @@ type GetVedioWorkDetailReq struct { func (x *GetVedioWorkDetailReq) Reset() { *x = GetVedioWorkDetailReq{} 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) } @@ -10125,7 +10188,7 @@ func (x *GetVedioWorkDetailReq) String() string { func (*GetVedioWorkDetailReq) ProtoMessage() {} func (x *GetVedioWorkDetailReq) 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 { @@ -10138,7 +10201,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{93} + return file_pb_bundle_proto_rawDescGZIP(), []int{94} } func (x *GetVedioWorkDetailReq) GetWorkId() string { @@ -10162,7 +10225,7 @@ type GetImageWorkDetailResp struct { func (x *GetImageWorkDetailResp) Reset() { *x = GetImageWorkDetailResp{} 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) } @@ -10175,7 +10238,7 @@ func (x *GetImageWorkDetailResp) String() string { func (*GetImageWorkDetailResp) ProtoMessage() {} func (x *GetImageWorkDetailResp) 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 { @@ -10188,7 +10251,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{94} + return file_pb_bundle_proto_rawDescGZIP(), []int{95} } func (x *GetImageWorkDetailResp) GetWorkId() string { @@ -10232,7 +10295,7 @@ type GetVedioeWorkDetailResp struct { func (x *GetVedioeWorkDetailResp) Reset() { *x = GetVedioeWorkDetailResp{} 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) } @@ -10245,7 +10308,7 @@ func (x *GetVedioeWorkDetailResp) String() string { func (*GetVedioeWorkDetailResp) ProtoMessage() {} func (x *GetVedioeWorkDetailResp) 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 { @@ -10258,7 +10321,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{95} + return file_pb_bundle_proto_rawDescGZIP(), []int{96} } func (x *GetVedioeWorkDetailResp) GetWorkId() string { @@ -10295,7 +10358,7 @@ type ToBeComfirmedWorksReq struct { func (x *ToBeComfirmedWorksReq) Reset() { *x = ToBeComfirmedWorksReq{} 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) } @@ -10308,7 +10371,7 @@ func (x *ToBeComfirmedWorksReq) String() string { func (*ToBeComfirmedWorksReq) ProtoMessage() {} func (x *ToBeComfirmedWorksReq) 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 { @@ -10321,7 +10384,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{96} + return file_pb_bundle_proto_rawDescGZIP(), []int{97} } func (x *ToBeComfirmedWorksReq) GetArtistUuid() string { @@ -10369,7 +10432,7 @@ type WorkItem struct { func (x *WorkItem) Reset() { *x = WorkItem{} 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) } @@ -10382,7 +10445,7 @@ func (x *WorkItem) String() string { func (*WorkItem) ProtoMessage() {} func (x *WorkItem) 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 { @@ -10395,7 +10458,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{97} + return file_pb_bundle_proto_rawDescGZIP(), []int{98} } func (x *WorkItem) GetUuid() string { @@ -10509,7 +10572,7 @@ type ToBeComfirmedWorksResp struct { func (x *ToBeComfirmedWorksResp) Reset() { *x = ToBeComfirmedWorksResp{} 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) } @@ -10522,7 +10585,7 @@ func (x *ToBeComfirmedWorksResp) String() string { func (*ToBeComfirmedWorksResp) ProtoMessage() {} func (x *ToBeComfirmedWorksResp) 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 { @@ -10535,7 +10598,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{98} + return file_pb_bundle_proto_rawDescGZIP(), []int{99} } func (x *ToBeComfirmedWorksResp) GetTotal() int64 { @@ -10571,7 +10634,7 @@ type GetBundleBalanceByUserIdReq struct { func (x *GetBundleBalanceByUserIdReq) Reset() { *x = GetBundleBalanceByUserIdReq{} 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) } @@ -10584,7 +10647,7 @@ func (x *GetBundleBalanceByUserIdReq) String() string { func (*GetBundleBalanceByUserIdReq) ProtoMessage() {} func (x *GetBundleBalanceByUserIdReq) 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 { @@ -10597,7 +10660,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{99} + return file_pb_bundle_proto_rawDescGZIP(), []int{100} } func (x *GetBundleBalanceByUserIdReq) GetUserId() int32 { @@ -10660,7 +10723,7 @@ type GetBundleBalanceByUserIdResp struct { func (x *GetBundleBalanceByUserIdResp) Reset() { *x = GetBundleBalanceByUserIdResp{} 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) } @@ -10673,7 +10736,7 @@ func (x *GetBundleBalanceByUserIdResp) String() string { func (*GetBundleBalanceByUserIdResp) ProtoMessage() {} func (x *GetBundleBalanceByUserIdResp) 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 { @@ -10686,7 +10749,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{100} + return file_pb_bundle_proto_rawDescGZIP(), []int{101} } func (x *GetBundleBalanceByUserIdResp) GetOrderUUID() string { @@ -10952,7 +11015,7 @@ type GetBundleOrderListByUserIdReq struct { func (x *GetBundleOrderListByUserIdReq) Reset() { *x = GetBundleOrderListByUserIdReq{} 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) } @@ -10965,7 +11028,7 @@ func (x *GetBundleOrderListByUserIdReq) String() string { func (*GetBundleOrderListByUserIdReq) ProtoMessage() {} func (x *GetBundleOrderListByUserIdReq) 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 { @@ -10978,7 +11041,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{101} + return file_pb_bundle_proto_rawDescGZIP(), []int{102} } func (x *GetBundleOrderListByUserIdReq) GetUserId() int32 { @@ -11001,7 +11064,7 @@ type BalanceOrderItem struct { func (x *BalanceOrderItem) Reset() { *x = BalanceOrderItem{} 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) } @@ -11014,7 +11077,7 @@ func (x *BalanceOrderItem) String() string { func (*BalanceOrderItem) ProtoMessage() {} func (x *BalanceOrderItem) 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 { @@ -11027,7 +11090,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{102} + return file_pb_bundle_proto_rawDescGZIP(), []int{103} } func (x *BalanceOrderItem) GetOrderUuid() string { @@ -11062,7 +11125,7 @@ type GetBundleOrderListByUserIdResp struct { func (x *GetBundleOrderListByUserIdResp) Reset() { *x = GetBundleOrderListByUserIdResp{} 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) } @@ -11075,7 +11138,7 @@ func (x *GetBundleOrderListByUserIdResp) String() string { func (*GetBundleOrderListByUserIdResp) ProtoMessage() {} func (x *GetBundleOrderListByUserIdResp) 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 { @@ -11088,7 +11151,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{103} + return file_pb_bundle_proto_rawDescGZIP(), []int{104} } func (x *GetBundleOrderListByUserIdResp) GetOrderItem() []*BalanceOrderItem { @@ -11109,7 +11172,7 @@ type GetBundleBalanceByOrderUUIDReq struct { func (x *GetBundleBalanceByOrderUUIDReq) Reset() { *x = GetBundleBalanceByOrderUUIDReq{} 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) } @@ -11122,7 +11185,7 @@ func (x *GetBundleBalanceByOrderUUIDReq) String() string { func (*GetBundleBalanceByOrderUUIDReq) ProtoMessage() {} func (x *GetBundleBalanceByOrderUUIDReq) 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 { @@ -11135,7 +11198,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{104} + return file_pb_bundle_proto_rawDescGZIP(), []int{105} } func (x *GetBundleBalanceByOrderUUIDReq) GetOrderUUID() string { @@ -11157,7 +11220,7 @@ type GetBundleBalanceByOrderUUIDResp struct { func (x *GetBundleBalanceByOrderUUIDResp) Reset() { *x = GetBundleBalanceByOrderUUIDResp{} 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) } @@ -11170,7 +11233,7 @@ func (x *GetBundleBalanceByOrderUUIDResp) String() string { func (*GetBundleBalanceByOrderUUIDResp) ProtoMessage() {} func (x *GetBundleBalanceByOrderUUIDResp) 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 { @@ -11183,7 +11246,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{105} + return file_pb_bundle_proto_rawDescGZIP(), []int{106} } func (x *GetBundleBalanceByOrderUUIDResp) GetStartTime() int64 { @@ -11211,7 +11274,7 @@ type OnlyAddValueListByOrderNoRequest struct { func (x *OnlyAddValueListByOrderNoRequest) Reset() { *x = OnlyAddValueListByOrderNoRequest{} 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) } @@ -11224,7 +11287,7 @@ func (x *OnlyAddValueListByOrderNoRequest) String() string { func (*OnlyAddValueListByOrderNoRequest) ProtoMessage() {} func (x *OnlyAddValueListByOrderNoRequest) 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 { @@ -11237,7 +11300,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{106} + return file_pb_bundle_proto_rawDescGZIP(), []int{107} } func (x *OnlyAddValueListByOrderNoRequest) GetOrderNo() string { @@ -11258,7 +11321,7 @@ type OnlyAddValueListByOrderNoResp struct { func (x *OnlyAddValueListByOrderNoResp) Reset() { *x = OnlyAddValueListByOrderNoResp{} 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) } @@ -11271,7 +11334,7 @@ func (x *OnlyAddValueListByOrderNoResp) String() string { func (*OnlyAddValueListByOrderNoResp) ProtoMessage() {} func (x *OnlyAddValueListByOrderNoResp) 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 { @@ -11284,7 +11347,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{107} + return file_pb_bundle_proto_rawDescGZIP(), []int{108} } func (x *OnlyAddValueListByOrderNoResp) GetAddBundleInfos() []*AddBundleInfo { @@ -11309,7 +11372,7 @@ type AddBundleInfo struct { func (x *AddBundleInfo) Reset() { *x = AddBundleInfo{} 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) } @@ -11322,7 +11385,7 @@ func (x *AddBundleInfo) String() string { func (*AddBundleInfo) ProtoMessage() {} func (x *AddBundleInfo) 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 { @@ -11335,7 +11398,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{108} + return file_pb_bundle_proto_rawDescGZIP(), []int{109} } func (x *AddBundleInfo) GetCustomerID() string { @@ -11386,7 +11449,7 @@ type UpdateStatusAndPayTimeBySerialNumber struct { func (x *UpdateStatusAndPayTimeBySerialNumber) Reset() { *x = UpdateStatusAndPayTimeBySerialNumber{} 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) } @@ -11399,7 +11462,7 @@ func (x *UpdateStatusAndPayTimeBySerialNumber) String() string { func (*UpdateStatusAndPayTimeBySerialNumber) ProtoMessage() {} func (x *UpdateStatusAndPayTimeBySerialNumber) 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 { @@ -11412,7 +11475,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{109} + return file_pb_bundle_proto_rawDescGZIP(), []int{110} } func (x *UpdateStatusAndPayTimeBySerialNumber) GetSerialNumber() string { @@ -11447,7 +11510,7 @@ type ConfirmWorkReq struct { func (x *ConfirmWorkReq) Reset() { *x = ConfirmWorkReq{} 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) } @@ -11460,7 +11523,7 @@ func (x *ConfirmWorkReq) String() string { func (*ConfirmWorkReq) ProtoMessage() {} func (x *ConfirmWorkReq) 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 { @@ -11473,7 +11536,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{110} + return file_pb_bundle_proto_rawDescGZIP(), []int{111} } func (x *ConfirmWorkReq) GetWorkUuid() string { @@ -11492,7 +11555,7 @@ type ConfirmWorkResp struct { func (x *ConfirmWorkResp) Reset() { *x = ConfirmWorkResp{} 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) } @@ -11505,7 +11568,7 @@ func (x *ConfirmWorkResp) String() string { func (*ConfirmWorkResp) ProtoMessage() {} func (x *ConfirmWorkResp) 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 { @@ -11518,7 +11581,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{111} + return file_pb_bundle_proto_rawDescGZIP(), []int{112} } type ConfirmWorkItem struct { @@ -11535,7 +11598,7 @@ type ConfirmWorkItem struct { func (x *ConfirmWorkItem) Reset() { *x = ConfirmWorkItem{} 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) } @@ -11548,7 +11611,7 @@ func (x *ConfirmWorkItem) String() string { func (*ConfirmWorkItem) ProtoMessage() {} func (x *ConfirmWorkItem) 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 { @@ -11561,7 +11624,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{112} + return file_pb_bundle_proto_rawDescGZIP(), []int{113} } func (x *ConfirmWorkItem) GetWorkUuid() string { @@ -11601,7 +11664,7 @@ type GetWaitConfirmWorkListReq struct { func (x *GetWaitConfirmWorkListReq) Reset() { *x = GetWaitConfirmWorkListReq{} 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) } @@ -11614,7 +11677,7 @@ func (x *GetWaitConfirmWorkListReq) String() string { func (*GetWaitConfirmWorkListReq) ProtoMessage() {} func (x *GetWaitConfirmWorkListReq) 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 { @@ -11627,7 +11690,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{113} + return file_pb_bundle_proto_rawDescGZIP(), []int{114} } type GetWaitConfirmWorkListResp struct { @@ -11641,7 +11704,7 @@ type GetWaitConfirmWorkListResp struct { func (x *GetWaitConfirmWorkListResp) Reset() { *x = GetWaitConfirmWorkListResp{} 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) } @@ -11654,7 +11717,7 @@ func (x *GetWaitConfirmWorkListResp) String() string { func (*GetWaitConfirmWorkListResp) ProtoMessage() {} func (x *GetWaitConfirmWorkListResp) 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 { @@ -11667,7 +11730,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{114} + return file_pb_bundle_proto_rawDescGZIP(), []int{115} } func (x *GetWaitConfirmWorkListResp) GetData() []*ConfirmWorkItem { @@ -11688,7 +11751,7 @@ type AutoCreateUserAndOrderRequest struct { func (x *AutoCreateUserAndOrderRequest) Reset() { *x = AutoCreateUserAndOrderRequest{} 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) } @@ -11701,7 +11764,7 @@ func (x *AutoCreateUserAndOrderRequest) String() string { func (*AutoCreateUserAndOrderRequest) ProtoMessage() {} func (x *AutoCreateUserAndOrderRequest) 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 { @@ -11714,7 +11777,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{115} + return file_pb_bundle_proto_rawDescGZIP(), []int{116} } func (x *AutoCreateUserAndOrderRequest) GetNum() int32 { @@ -11735,7 +11798,7 @@ type UnfinishedInfos struct { func (x *UnfinishedInfos) Reset() { *x = UnfinishedInfos{} 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) } @@ -11748,7 +11811,7 @@ func (x *UnfinishedInfos) String() string { func (*UnfinishedInfos) ProtoMessage() {} func (x *UnfinishedInfos) 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 { @@ -11761,7 +11824,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{116} + return file_pb_bundle_proto_rawDescGZIP(), []int{117} } func (x *UnfinishedInfos) GetUnfinishedInfos() []*UnfinishedInfo { @@ -11801,7 +11864,7 @@ type UnfinishedInfo struct { func (x *UnfinishedInfo) Reset() { *x = UnfinishedInfo{} 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) } @@ -11814,7 +11877,7 @@ func (x *UnfinishedInfo) String() string { func (*UnfinishedInfo) ProtoMessage() {} func (x *UnfinishedInfo) 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 { @@ -11827,7 +11890,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{117} + return file_pb_bundle_proto_rawDescGZIP(), []int{118} } func (x *UnfinishedInfo) GetID() uint32 { @@ -11981,7 +12044,7 @@ type SoftDeleteUnfinishedInfoRequest struct { func (x *SoftDeleteUnfinishedInfoRequest) Reset() { *x = SoftDeleteUnfinishedInfoRequest{} 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) } @@ -11994,7 +12057,7 @@ func (x *SoftDeleteUnfinishedInfoRequest) String() string { func (*SoftDeleteUnfinishedInfoRequest) ProtoMessage() {} func (x *SoftDeleteUnfinishedInfoRequest) 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 { @@ -12007,7 +12070,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{118} + return file_pb_bundle_proto_rawDescGZIP(), []int{119} } func (x *SoftDeleteUnfinishedInfoRequest) GetID() uint32 { @@ -12028,7 +12091,7 @@ type BundleActivateReq struct { func (x *BundleActivateReq) Reset() { *x = BundleActivateReq{} 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) } @@ -12041,7 +12104,7 @@ func (x *BundleActivateReq) String() string { func (*BundleActivateReq) ProtoMessage() {} func (x *BundleActivateReq) 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 { @@ -12054,7 +12117,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{119} + return file_pb_bundle_proto_rawDescGZIP(), []int{120} } func (x *BundleActivateReq) GetIds() []uint32 { @@ -12073,7 +12136,7 @@ type BundleActivateResp struct { func (x *BundleActivateResp) Reset() { *x = BundleActivateResp{} 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) } @@ -12086,7 +12149,7 @@ func (x *BundleActivateResp) String() string { func (*BundleActivateResp) ProtoMessage() {} func (x *BundleActivateResp) 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 { @@ -12099,7 +12162,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{120} + return file_pb_bundle_proto_rawDescGZIP(), []int{121} } // 查询待指派任务记录 @@ -12121,7 +12184,7 @@ type TaskQueryRequest struct { func (x *TaskQueryRequest) Reset() { *x = TaskQueryRequest{} 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) } @@ -12134,7 +12197,7 @@ func (x *TaskQueryRequest) String() string { func (*TaskQueryRequest) ProtoMessage() {} func (x *TaskQueryRequest) 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 { @@ -12147,7 +12210,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{121} + return file_pb_bundle_proto_rawDescGZIP(), []int{122} } func (x *TaskQueryRequest) GetKeyword() string { @@ -12220,7 +12283,7 @@ type TaskQueryResponse struct { func (x *TaskQueryResponse) Reset() { *x = TaskQueryResponse{} 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) } @@ -12233,7 +12296,7 @@ func (x *TaskQueryResponse) String() string { func (*TaskQueryResponse) ProtoMessage() {} func (x *TaskQueryResponse) 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 { @@ -12246,7 +12309,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{122} + return file_pb_bundle_proto_rawDescGZIP(), []int{123} } func (x *TaskQueryResponse) GetTasks() []*TaskManagementInfo { @@ -12298,7 +12361,7 @@ type TaskManagementInfo struct { func (x *TaskManagementInfo) Reset() { *x = TaskManagementInfo{} 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) } @@ -12311,7 +12374,7 @@ func (x *TaskManagementInfo) String() string { func (*TaskManagementInfo) ProtoMessage() {} func (x *TaskManagementInfo) 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 { @@ -12324,7 +12387,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{123} + return file_pb_bundle_proto_rawDescGZIP(), []int{124} } func (x *TaskManagementInfo) GetSubNum() string { @@ -12430,7 +12493,7 @@ type TaskAssignRequest struct { func (x *TaskAssignRequest) Reset() { *x = TaskAssignRequest{} 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) } @@ -12443,7 +12506,7 @@ func (x *TaskAssignRequest) String() string { func (*TaskAssignRequest) ProtoMessage() {} func (x *TaskAssignRequest) 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 { @@ -12456,7 +12519,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{124} + return file_pb_bundle_proto_rawDescGZIP(), []int{125} } func (x *TaskAssignRequest) GetSubNum() string { @@ -12585,7 +12648,7 @@ type UpdatePendingCountRequest struct { func (x *UpdatePendingCountRequest) Reset() { *x = UpdatePendingCountRequest{} 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) } @@ -12598,7 +12661,7 @@ func (x *UpdatePendingCountRequest) String() string { func (*UpdatePendingCountRequest) ProtoMessage() {} func (x *UpdatePendingCountRequest) 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 { @@ -12611,7 +12674,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{125} + return file_pb_bundle_proto_rawDescGZIP(), []int{126} } func (x *UpdatePendingCountRequest) GetSubNum() string { @@ -12696,7 +12759,7 @@ type AddHiddenTaskAssigneeRequest struct { func (x *AddHiddenTaskAssigneeRequest) Reset() { *x = AddHiddenTaskAssigneeRequest{} 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) } @@ -12709,7 +12772,7 @@ func (x *AddHiddenTaskAssigneeRequest) String() string { func (*AddHiddenTaskAssigneeRequest) ProtoMessage() {} func (x *AddHiddenTaskAssigneeRequest) 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 { @@ -12722,7 +12785,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{126} + return file_pb_bundle_proto_rawDescGZIP(), []int{127} } func (x *AddHiddenTaskAssigneeRequest) GetTaskAssignee() string { @@ -12751,7 +12814,7 @@ type RecentAssignRecordsRequest struct { func (x *RecentAssignRecordsRequest) Reset() { *x = RecentAssignRecordsRequest{} 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) } @@ -12764,7 +12827,7 @@ func (x *RecentAssignRecordsRequest) String() string { func (*RecentAssignRecordsRequest) ProtoMessage() {} func (x *RecentAssignRecordsRequest) 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 { @@ -12777,7 +12840,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{127} + return file_pb_bundle_proto_rawDescGZIP(), []int{128} } func (x *RecentAssignRecordsRequest) GetLimit() int32 { @@ -12799,7 +12862,7 @@ type RecentAssigneeItem struct { func (x *RecentAssigneeItem) Reset() { *x = RecentAssigneeItem{} 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) } @@ -12812,7 +12875,7 @@ func (x *RecentAssigneeItem) String() string { func (*RecentAssigneeItem) ProtoMessage() {} func (x *RecentAssigneeItem) 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 { @@ -12825,7 +12888,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{128} + return file_pb_bundle_proto_rawDescGZIP(), []int{129} } func (x *RecentAssigneeItem) GetTaskAssignee() string { @@ -12853,7 +12916,7 @@ type RecentAssignRecordsResponse struct { func (x *RecentAssignRecordsResponse) Reset() { *x = RecentAssignRecordsResponse{} 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) } @@ -12866,7 +12929,7 @@ func (x *RecentAssignRecordsResponse) String() string { func (*RecentAssignRecordsResponse) ProtoMessage() {} func (x *RecentAssignRecordsResponse) 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 { @@ -12879,7 +12942,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{129} + return file_pb_bundle_proto_rawDescGZIP(), []int{130} } func (x *RecentAssignRecordsResponse) GetOperatorList() []*RecentAssigneeItem { @@ -12913,7 +12976,7 @@ type EmployeeTaskQueryRequest struct { func (x *EmployeeTaskQueryRequest) Reset() { *x = EmployeeTaskQueryRequest{} 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) } @@ -12926,7 +12989,7 @@ func (x *EmployeeTaskQueryRequest) String() string { func (*EmployeeTaskQueryRequest) ProtoMessage() {} func (x *EmployeeTaskQueryRequest) 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 { @@ -12939,7 +13002,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{130} + return file_pb_bundle_proto_rawDescGZIP(), []int{131} } func (x *EmployeeTaskQueryRequest) GetTaskAssigneeNum() string { @@ -13047,7 +13110,7 @@ type EmployeeTaskQueryResponse struct { func (x *EmployeeTaskQueryResponse) Reset() { *x = EmployeeTaskQueryResponse{} 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) } @@ -13060,7 +13123,7 @@ func (x *EmployeeTaskQueryResponse) String() string { func (*EmployeeTaskQueryResponse) ProtoMessage() {} func (x *EmployeeTaskQueryResponse) 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 { @@ -13073,7 +13136,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{131} + return file_pb_bundle_proto_rawDescGZIP(), []int{132} } func (x *EmployeeTaskQueryResponse) GetRecords() []*TaskAssignRecordInfo { @@ -13141,7 +13204,7 @@ type TaskAssignRecordInfo struct { func (x *TaskAssignRecordInfo) Reset() { *x = TaskAssignRecordInfo{} 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) } @@ -13154,7 +13217,7 @@ func (x *TaskAssignRecordInfo) String() string { func (*TaskAssignRecordInfo) ProtoMessage() {} func (x *TaskAssignRecordInfo) 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 { @@ -13167,7 +13230,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{132} + return file_pb_bundle_proto_rawDescGZIP(), []int{133} } func (x *TaskAssignRecordInfo) GetAssignRecordsUUID() string { @@ -13378,7 +13441,7 @@ type BatchAssignTaskItem struct { func (x *BatchAssignTaskItem) Reset() { *x = BatchAssignTaskItem{} 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) } @@ -13391,7 +13454,7 @@ func (x *BatchAssignTaskItem) String() string { func (*BatchAssignTaskItem) ProtoMessage() {} func (x *BatchAssignTaskItem) 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 { @@ -13404,7 +13467,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{133} + return file_pb_bundle_proto_rawDescGZIP(), []int{134} } func (x *BatchAssignTaskItem) GetSubNum() string { @@ -13523,7 +13586,7 @@ type BatchAssignTaskRequest struct { func (x *BatchAssignTaskRequest) Reset() { *x = BatchAssignTaskRequest{} 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) } @@ -13536,7 +13599,7 @@ func (x *BatchAssignTaskRequest) String() string { func (*BatchAssignTaskRequest) ProtoMessage() {} func (x *BatchAssignTaskRequest) 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 { @@ -13549,7 +13612,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{134} + return file_pb_bundle_proto_rawDescGZIP(), []int{135} } func (x *BatchAssignTaskRequest) GetItems() []*BatchAssignTaskItem { @@ -13572,7 +13635,7 @@ type CompleteTaskManuallyRequest struct { func (x *CompleteTaskManuallyRequest) Reset() { *x = CompleteTaskManuallyRequest{} 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) } @@ -13585,7 +13648,7 @@ func (x *CompleteTaskManuallyRequest) String() string { func (*CompleteTaskManuallyRequest) ProtoMessage() {} func (x *CompleteTaskManuallyRequest) 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 { @@ -13598,7 +13661,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{135} + return file_pb_bundle_proto_rawDescGZIP(), []int{136} } func (x *CompleteTaskManuallyRequest) GetAssignRecordsUUID() string { @@ -13627,7 +13690,7 @@ type TerminateTaskByUUIDRequest struct { func (x *TerminateTaskByUUIDRequest) Reset() { *x = TerminateTaskByUUIDRequest{} 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) } @@ -13640,7 +13703,7 @@ func (x *TerminateTaskByUUIDRequest) String() string { func (*TerminateTaskByUUIDRequest) ProtoMessage() {} func (x *TerminateTaskByUUIDRequest) 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 { @@ -13653,7 +13716,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{136} + return file_pb_bundle_proto_rawDescGZIP(), []int{137} } func (x *TerminateTaskByUUIDRequest) GetAssignRecordsUUID() string { @@ -13675,7 +13738,7 @@ type BatchTerminateTaskRequest struct { func (x *BatchTerminateTaskRequest) Reset() { *x = BatchTerminateTaskRequest{} 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) } @@ -13688,7 +13751,7 @@ func (x *BatchTerminateTaskRequest) String() string { func (*BatchTerminateTaskRequest) ProtoMessage() {} func (x *BatchTerminateTaskRequest) 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 { @@ -13701,7 +13764,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{137} + return file_pb_bundle_proto_rawDescGZIP(), []int{138} } func (x *BatchTerminateTaskRequest) GetAssignRecordsUUIDs() []string { @@ -13722,7 +13785,7 @@ type RevertTaskCompletionByUUIDItemRequest struct { func (x *RevertTaskCompletionByUUIDItemRequest) Reset() { *x = RevertTaskCompletionByUUIDItemRequest{} 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) } @@ -13735,7 +13798,7 @@ func (x *RevertTaskCompletionByUUIDItemRequest) String() string { func (*RevertTaskCompletionByUUIDItemRequest) ProtoMessage() {} func (x *RevertTaskCompletionByUUIDItemRequest) 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 { @@ -13748,7 +13811,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{138} + return file_pb_bundle_proto_rawDescGZIP(), []int{139} } func (x *RevertTaskCompletionByUUIDItemRequest) GetUuid() string { @@ -13769,7 +13832,7 @@ type GetTaskActualStatusByUUIDRequest struct { func (x *GetTaskActualStatusByUUIDRequest) Reset() { *x = GetTaskActualStatusByUUIDRequest{} 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) } @@ -13782,7 +13845,7 @@ func (x *GetTaskActualStatusByUUIDRequest) String() string { func (*GetTaskActualStatusByUUIDRequest) ProtoMessage() {} func (x *GetTaskActualStatusByUUIDRequest) 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 { @@ -13795,7 +13858,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{139} + return file_pb_bundle_proto_rawDescGZIP(), []int{140} } func (x *GetTaskActualStatusByUUIDRequest) GetAssignRecordsUUID() string { @@ -13816,7 +13879,7 @@ type GetTaskActualStatusByUUIDResponse struct { func (x *GetTaskActualStatusByUUIDResponse) Reset() { *x = GetTaskActualStatusByUUIDResponse{} 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) } @@ -13829,7 +13892,7 @@ func (x *GetTaskActualStatusByUUIDResponse) String() string { func (*GetTaskActualStatusByUUIDResponse) ProtoMessage() {} func (x *GetTaskActualStatusByUUIDResponse) 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 { @@ -13842,7 +13905,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{140} + return file_pb_bundle_proto_rawDescGZIP(), []int{141} } func (x *GetTaskActualStatusByUUIDResponse) GetActualStatus() int32 { @@ -13869,7 +13932,7 @@ type UpdateTaskProgressRequest struct { func (x *UpdateTaskProgressRequest) Reset() { *x = UpdateTaskProgressRequest{} 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) } @@ -13882,7 +13945,7 @@ func (x *UpdateTaskProgressRequest) String() string { func (*UpdateTaskProgressRequest) ProtoMessage() {} func (x *UpdateTaskProgressRequest) 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 { @@ -13895,7 +13958,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{141} + return file_pb_bundle_proto_rawDescGZIP(), []int{142} } func (x *UpdateTaskProgressRequest) GetAssignRecordsUUID() string { @@ -13965,7 +14028,7 @@ type TaskAssignRecordsQueryRequest struct { func (x *TaskAssignRecordsQueryRequest) Reset() { *x = TaskAssignRecordsQueryRequest{} 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) } @@ -13978,7 +14041,7 @@ func (x *TaskAssignRecordsQueryRequest) String() string { func (*TaskAssignRecordsQueryRequest) ProtoMessage() {} func (x *TaskAssignRecordsQueryRequest) 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 { @@ -13991,7 +14054,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{142} + return file_pb_bundle_proto_rawDescGZIP(), []int{143} } func (x *TaskAssignRecordsQueryRequest) GetKeyword() string { @@ -14103,7 +14166,7 @@ type ComResponse struct { func (x *ComResponse) Reset() { *x = ComResponse{} 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) } @@ -14116,7 +14179,7 @@ func (x *ComResponse) String() string { func (*ComResponse) ProtoMessage() {} func (x *ComResponse) 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 { @@ -14129,7 +14192,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{143} + return file_pb_bundle_proto_rawDescGZIP(), []int{144} } func (x *ComResponse) GetMsg() string { @@ -14154,7 +14217,7 @@ type TaskAssignRecordsQueryResponse struct { func (x *TaskAssignRecordsQueryResponse) Reset() { *x = TaskAssignRecordsQueryResponse{} 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) } @@ -14167,7 +14230,7 @@ func (x *TaskAssignRecordsQueryResponse) String() string { func (*TaskAssignRecordsQueryResponse) ProtoMessage() {} func (x *TaskAssignRecordsQueryResponse) 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 { @@ -14180,7 +14243,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{144} + return file_pb_bundle_proto_rawDescGZIP(), []int{145} } func (x *TaskAssignRecordsQueryResponse) GetRecords() []*TaskAssignRecordInfo { @@ -14241,7 +14304,7 @@ type TaskAssignRecordsSummary struct { func (x *TaskAssignRecordsSummary) Reset() { *x = TaskAssignRecordsSummary{} 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) } @@ -14254,7 +14317,7 @@ func (x *TaskAssignRecordsSummary) String() string { func (*TaskAssignRecordsSummary) ProtoMessage() {} func (x *TaskAssignRecordsSummary) 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 { @@ -14267,7 +14330,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{145} + return file_pb_bundle_proto_rawDescGZIP(), []int{146} } func (x *TaskAssignRecordsSummary) GetTotalPendingVideoScriptCount() int32 { @@ -14395,7 +14458,7 @@ type ArtistUploadStatsItem struct { func (x *ArtistUploadStatsItem) Reset() { *x = ArtistUploadStatsItem{} 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) } @@ -14408,7 +14471,7 @@ func (x *ArtistUploadStatsItem) String() string { func (*ArtistUploadStatsItem) ProtoMessage() {} func (x *ArtistUploadStatsItem) 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 { @@ -14421,7 +14484,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{146} + return file_pb_bundle_proto_rawDescGZIP(), []int{147} } func (x *ArtistUploadStatsItem) GetSubNum() string { @@ -14691,7 +14754,7 @@ type ArtistUploadStatsResponse struct { func (x *ArtistUploadStatsResponse) Reset() { *x = ArtistUploadStatsResponse{} 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) } @@ -14704,7 +14767,7 @@ func (x *ArtistUploadStatsResponse) String() string { func (*ArtistUploadStatsResponse) ProtoMessage() {} func (x *ArtistUploadStatsResponse) 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 { @@ -14717,7 +14780,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{147} + return file_pb_bundle_proto_rawDescGZIP(), []int{148} } func (x *ArtistUploadStatsResponse) GetItems() []*ArtistUploadStatsItem { @@ -14761,7 +14824,7 @@ type PendingUploadBreakdownRequest struct { func (x *PendingUploadBreakdownRequest) Reset() { *x = PendingUploadBreakdownRequest{} 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) } @@ -14774,7 +14837,7 @@ func (x *PendingUploadBreakdownRequest) String() string { func (*PendingUploadBreakdownRequest) ProtoMessage() {} func (x *PendingUploadBreakdownRequest) 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 { @@ -14787,7 +14850,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{148} + return file_pb_bundle_proto_rawDescGZIP(), []int{149} } func (x *PendingUploadBreakdownRequest) GetSubNums() []string { @@ -14831,7 +14894,7 @@ type PendingUploadBreakdownItem struct { func (x *PendingUploadBreakdownItem) Reset() { *x = PendingUploadBreakdownItem{} 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) } @@ -14844,7 +14907,7 @@ func (x *PendingUploadBreakdownItem) String() string { func (*PendingUploadBreakdownItem) ProtoMessage() {} func (x *PendingUploadBreakdownItem) 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 { @@ -14857,7 +14920,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{149} + return file_pb_bundle_proto_rawDescGZIP(), []int{150} } func (x *PendingUploadBreakdownItem) GetSubNum() string { @@ -14944,7 +15007,7 @@ type PendingUploadBreakdownResponse struct { func (x *PendingUploadBreakdownResponse) Reset() { *x = PendingUploadBreakdownResponse{} 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) } @@ -14957,7 +15020,7 @@ func (x *PendingUploadBreakdownResponse) String() string { func (*PendingUploadBreakdownResponse) ProtoMessage() {} func (x *PendingUploadBreakdownResponse) 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 { @@ -14970,7 +15033,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{150} + return file_pb_bundle_proto_rawDescGZIP(), []int{151} } func (x *PendingUploadBreakdownResponse) GetItems() []*PendingUploadBreakdownItem { @@ -15016,7 +15079,7 @@ type PendingAssignRequest struct { func (x *PendingAssignRequest) Reset() { *x = PendingAssignRequest{} 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) } @@ -15029,7 +15092,7 @@ func (x *PendingAssignRequest) String() string { func (*PendingAssignRequest) ProtoMessage() {} func (x *PendingAssignRequest) 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 { @@ -15042,7 +15105,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{151} + return file_pb_bundle_proto_rawDescGZIP(), []int{152} } func (x *PendingAssignRequest) GetSubNums() []string { @@ -15092,7 +15155,7 @@ type PendingAssignItem struct { func (x *PendingAssignItem) Reset() { *x = PendingAssignItem{} 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) } @@ -15105,7 +15168,7 @@ func (x *PendingAssignItem) String() string { func (*PendingAssignItem) ProtoMessage() {} func (x *PendingAssignItem) 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 { @@ -15118,7 +15181,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{152} + return file_pb_bundle_proto_rawDescGZIP(), []int{153} } func (x *PendingAssignItem) GetSubNum() string { @@ -15192,7 +15255,7 @@ type PendingAssignResponse struct { func (x *PendingAssignResponse) Reset() { *x = PendingAssignResponse{} 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) } @@ -15205,7 +15268,7 @@ func (x *PendingAssignResponse) String() string { func (*PendingAssignResponse) ProtoMessage() {} func (x *PendingAssignResponse) 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 { @@ -15218,7 +15281,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{153} + return file_pb_bundle_proto_rawDescGZIP(), []int{154} } func (x *PendingAssignResponse) GetItems() []*PendingAssignItem { @@ -15262,7 +15325,7 @@ type ArtistBundleBalanceRequest struct { func (x *ArtistBundleBalanceRequest) Reset() { *x = ArtistBundleBalanceRequest{} 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) } @@ -15275,7 +15338,7 @@ func (x *ArtistBundleBalanceRequest) String() string { func (*ArtistBundleBalanceRequest) ProtoMessage() {} func (x *ArtistBundleBalanceRequest) 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 { @@ -15288,7 +15351,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{154} + return file_pb_bundle_proto_rawDescGZIP(), []int{155} } func (x *ArtistBundleBalanceRequest) GetCustomerNum() string { @@ -15332,7 +15395,7 @@ type ArtistBundleBalanceResponse struct { func (x *ArtistBundleBalanceResponse) Reset() { *x = ArtistBundleBalanceResponse{} 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) } @@ -15345,7 +15408,7 @@ func (x *ArtistBundleBalanceResponse) String() string { func (*ArtistBundleBalanceResponse) ProtoMessage() {} func (x *ArtistBundleBalanceResponse) 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 { @@ -15358,7 +15421,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{155} + return file_pb_bundle_proto_rawDescGZIP(), []int{156} } func (x *ArtistBundleBalanceResponse) GetBundleVideoBalance() int32 { @@ -15458,7 +15521,7 @@ type SetBundleBalanceLayoutReq struct { func (x *SetBundleBalanceLayoutReq) Reset() { *x = SetBundleBalanceLayoutReq{} 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) } @@ -15471,7 +15534,7 @@ func (x *SetBundleBalanceLayoutReq) String() string { func (*SetBundleBalanceLayoutReq) ProtoMessage() {} func (x *SetBundleBalanceLayoutReq) 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 { @@ -15484,7 +15547,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{156} + return file_pb_bundle_proto_rawDescGZIP(), []int{157} } func (x *SetBundleBalanceLayoutReq) GetUserId() uint32 { @@ -15517,7 +15580,7 @@ type SetBundleBalanceLayoutResp struct { func (x *SetBundleBalanceLayoutResp) Reset() { *x = SetBundleBalanceLayoutResp{} 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) } @@ -15530,7 +15593,7 @@ func (x *SetBundleBalanceLayoutResp) String() string { func (*SetBundleBalanceLayoutResp) ProtoMessage() {} func (x *SetBundleBalanceLayoutResp) 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 { @@ -15543,7 +15606,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{157} + return file_pb_bundle_proto_rawDescGZIP(), []int{158} } type GetBundleBalanceLayoutReq struct { @@ -15558,7 +15621,7 @@ type GetBundleBalanceLayoutReq struct { func (x *GetBundleBalanceLayoutReq) Reset() { *x = GetBundleBalanceLayoutReq{} 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) } @@ -15571,7 +15634,7 @@ func (x *GetBundleBalanceLayoutReq) String() string { func (*GetBundleBalanceLayoutReq) ProtoMessage() {} func (x *GetBundleBalanceLayoutReq) 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 { @@ -15584,7 +15647,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{158} + return file_pb_bundle_proto_rawDescGZIP(), []int{159} } func (x *GetBundleBalanceLayoutReq) GetUserId() uint32 { @@ -15612,7 +15675,7 @@ type GetBundleBalanceLayoutResp struct { func (x *GetBundleBalanceLayoutResp) Reset() { *x = GetBundleBalanceLayoutResp{} 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) } @@ -15625,7 +15688,7 @@ func (x *GetBundleBalanceLayoutResp) String() string { func (*GetBundleBalanceLayoutResp) ProtoMessage() {} func (x *GetBundleBalanceLayoutResp) 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 { @@ -15638,7 +15701,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{159} + return file_pb_bundle_proto_rawDescGZIP(), []int{160} } func (x *GetBundleBalanceLayoutResp) GetData() string { @@ -15657,7 +15720,7 @@ type GetPendingTaskLayoutReq struct { func (x *GetPendingTaskLayoutReq) Reset() { *x = GetPendingTaskLayoutReq{} 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) } @@ -15670,7 +15733,7 @@ func (x *GetPendingTaskLayoutReq) String() string { func (*GetPendingTaskLayoutReq) ProtoMessage() {} func (x *GetPendingTaskLayoutReq) 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 { @@ -15683,7 +15746,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{160} + return file_pb_bundle_proto_rawDescGZIP(), []int{161} } type GetPendingTaskLayoutResp struct { @@ -15697,7 +15760,7 @@ type GetPendingTaskLayoutResp struct { func (x *GetPendingTaskLayoutResp) Reset() { *x = GetPendingTaskLayoutResp{} 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) } @@ -15710,7 +15773,7 @@ func (x *GetPendingTaskLayoutResp) String() string { func (*GetPendingTaskLayoutResp) ProtoMessage() {} func (x *GetPendingTaskLayoutResp) 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 { @@ -15723,7 +15786,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{161} + return file_pb_bundle_proto_rawDescGZIP(), []int{162} } func (x *GetPendingTaskLayoutResp) GetData() string { @@ -15744,7 +15807,7 @@ type SetPendingTaskLayoutReq struct { func (x *SetPendingTaskLayoutReq) Reset() { *x = SetPendingTaskLayoutReq{} 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) } @@ -15757,7 +15820,7 @@ func (x *SetPendingTaskLayoutReq) String() string { func (*SetPendingTaskLayoutReq) ProtoMessage() {} func (x *SetPendingTaskLayoutReq) 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 { @@ -15770,7 +15833,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{162} + return file_pb_bundle_proto_rawDescGZIP(), []int{163} } func (x *SetPendingTaskLayoutReq) GetData() string { @@ -15789,7 +15852,7 @@ type SetPendingTaskLayoutResp struct { func (x *SetPendingTaskLayoutResp) Reset() { *x = SetPendingTaskLayoutResp{} 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) } @@ -15802,7 +15865,7 @@ func (x *SetPendingTaskLayoutResp) String() string { func (*SetPendingTaskLayoutResp) ProtoMessage() {} func (x *SetPendingTaskLayoutResp) 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 { @@ -15815,7 +15878,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{163} + return file_pb_bundle_proto_rawDescGZIP(), []int{164} } type TaskWorkLogQueryRequest struct { @@ -15837,7 +15900,7 @@ type TaskWorkLogQueryRequest struct { func (x *TaskWorkLogQueryRequest) Reset() { *x = TaskWorkLogQueryRequest{} 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) } @@ -15850,7 +15913,7 @@ func (x *TaskWorkLogQueryRequest) String() string { func (*TaskWorkLogQueryRequest) ProtoMessage() {} func (x *TaskWorkLogQueryRequest) 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 { @@ -15863,7 +15926,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{164} + return file_pb_bundle_proto_rawDescGZIP(), []int{165} } func (x *TaskWorkLogQueryRequest) GetAssignRecordsUUID() string { @@ -15957,7 +16020,7 @@ type TaskWorkLogInfo struct { func (x *TaskWorkLogInfo) Reset() { *x = TaskWorkLogInfo{} 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) } @@ -15970,7 +16033,7 @@ func (x *TaskWorkLogInfo) String() string { func (*TaskWorkLogInfo) ProtoMessage() {} func (x *TaskWorkLogInfo) 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 { @@ -15983,7 +16046,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{165} + return file_pb_bundle_proto_rawDescGZIP(), []int{166} } func (x *TaskWorkLogInfo) GetWorkLogUUID() string { @@ -16126,7 +16189,7 @@ type TaskWorkLogQueryResponse struct { func (x *TaskWorkLogQueryResponse) Reset() { *x = TaskWorkLogQueryResponse{} 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) } @@ -16139,7 +16202,7 @@ func (x *TaskWorkLogQueryResponse) String() string { func (*TaskWorkLogQueryResponse) ProtoMessage() {} func (x *TaskWorkLogQueryResponse) 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 { @@ -16152,7 +16215,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{166} + return file_pb_bundle_proto_rawDescGZIP(), []int{167} } func (x *TaskWorkLogQueryResponse) GetRecords() []*TaskWorkLogInfo { @@ -16208,7 +16271,7 @@ type CreateTaskWorkLogRequest struct { func (x *CreateTaskWorkLogRequest) Reset() { *x = CreateTaskWorkLogRequest{} 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) } @@ -16221,7 +16284,7 @@ func (x *CreateTaskWorkLogRequest) String() string { func (*CreateTaskWorkLogRequest) ProtoMessage() {} func (x *CreateTaskWorkLogRequest) 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 { @@ -16234,7 +16297,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{167} + return file_pb_bundle_proto_rawDescGZIP(), []int{168} } func (x *CreateTaskWorkLogRequest) GetAssignRecordsUUID() string { @@ -16348,7 +16411,7 @@ type MetricsBusinessReq struct { func (x *MetricsBusinessReq) Reset() { *x = MetricsBusinessReq{} 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) } @@ -16361,7 +16424,7 @@ func (x *MetricsBusinessReq) String() string { func (*MetricsBusinessReq) ProtoMessage() {} func (x *MetricsBusinessReq) 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 { @@ -16374,7 +16437,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{168} + return file_pb_bundle_proto_rawDescGZIP(), []int{169} } func (x *MetricsBusinessReq) GetBundleUuid() string { @@ -16451,7 +16514,7 @@ type MetricsBusinessResp struct { func (x *MetricsBusinessResp) Reset() { *x = MetricsBusinessResp{} 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) } @@ -16464,7 +16527,7 @@ func (x *MetricsBusinessResp) String() string { func (*MetricsBusinessResp) ProtoMessage() {} func (x *MetricsBusinessResp) 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 { @@ -16477,7 +16540,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{169} + return file_pb_bundle_proto_rawDescGZIP(), []int{170} } func (x *MetricsBusinessResp) GetTotalBundlePaymentAmount() string { @@ -16737,7 +16800,7 @@ type MetricsOperatingCreateReq struct { func (x *MetricsOperatingCreateReq) Reset() { *x = MetricsOperatingCreateReq{} 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) } @@ -16750,7 +16813,7 @@ func (x *MetricsOperatingCreateReq) String() string { func (*MetricsOperatingCreateReq) ProtoMessage() {} func (x *MetricsOperatingCreateReq) 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 { @@ -16763,7 +16826,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{170} + return file_pb_bundle_proto_rawDescGZIP(), []int{171} } func (x *MetricsOperatingCreateReq) GetStart() string { @@ -16831,7 +16894,7 @@ type MetricsOperatingCreateResp struct { func (x *MetricsOperatingCreateResp) Reset() { *x = MetricsOperatingCreateResp{} 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) } @@ -16844,7 +16907,7 @@ func (x *MetricsOperatingCreateResp) String() string { func (*MetricsOperatingCreateResp) ProtoMessage() {} func (x *MetricsOperatingCreateResp) 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 { @@ -16857,7 +16920,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{171} + return file_pb_bundle_proto_rawDescGZIP(), []int{172} } func (x *MetricsOperatingCreateResp) GetNewPendingUploadBundleVideoCount() int64 { @@ -17123,7 +17186,7 @@ type MetricsOperatingStatusReq struct { func (x *MetricsOperatingStatusReq) Reset() { *x = MetricsOperatingStatusReq{} 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) } @@ -17136,7 +17199,7 @@ func (x *MetricsOperatingStatusReq) String() string { func (*MetricsOperatingStatusReq) ProtoMessage() {} func (x *MetricsOperatingStatusReq) 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 { @@ -17149,7 +17212,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{172} + return file_pb_bundle_proto_rawDescGZIP(), []int{173} } func (x *MetricsOperatingStatusReq) GetDate() string { @@ -17208,7 +17271,7 @@ type MetricsOperatingStatusResp struct { func (x *MetricsOperatingStatusResp) Reset() { *x = MetricsOperatingStatusResp{} 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) } @@ -17221,7 +17284,7 @@ func (x *MetricsOperatingStatusResp) String() string { func (*MetricsOperatingStatusResp) ProtoMessage() {} func (x *MetricsOperatingStatusResp) 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 { @@ -17234,7 +17297,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{173} + return file_pb_bundle_proto_rawDescGZIP(), []int{174} } func (x *MetricsOperatingStatusResp) GetDraftVideoCount() int64 { @@ -17494,7 +17557,7 @@ type MetricsBundlePurchaseExportReq struct { func (x *MetricsBundlePurchaseExportReq) Reset() { *x = MetricsBundlePurchaseExportReq{} 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) } @@ -17507,7 +17570,7 @@ func (x *MetricsBundlePurchaseExportReq) String() string { func (*MetricsBundlePurchaseExportReq) ProtoMessage() {} func (x *MetricsBundlePurchaseExportReq) 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 { @@ -17520,7 +17583,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{174} + return file_pb_bundle_proto_rawDescGZIP(), []int{175} } func (x *MetricsBundlePurchaseExportReq) GetMonth() string { @@ -17548,7 +17611,7 @@ type MetricsBundlePurchaseExportResp struct { func (x *MetricsBundlePurchaseExportResp) Reset() { *x = MetricsBundlePurchaseExportResp{} 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) } @@ -17561,7 +17624,7 @@ func (x *MetricsBundlePurchaseExportResp) String() string { func (*MetricsBundlePurchaseExportResp) ProtoMessage() {} func (x *MetricsBundlePurchaseExportResp) 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 { @@ -17574,7 +17637,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{175} + return file_pb_bundle_proto_rawDescGZIP(), []int{176} } func (x *MetricsBundlePurchaseExportResp) GetData() []*MetricsBundlePurchaseItem { @@ -17607,7 +17670,7 @@ type MetricsBundlePurchaseItem struct { func (x *MetricsBundlePurchaseItem) Reset() { *x = MetricsBundlePurchaseItem{} 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) } @@ -17620,7 +17683,7 @@ func (x *MetricsBundlePurchaseItem) String() string { func (*MetricsBundlePurchaseItem) ProtoMessage() {} func (x *MetricsBundlePurchaseItem) 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 { @@ -17633,7 +17696,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{176} + return file_pb_bundle_proto_rawDescGZIP(), []int{177} } func (x *MetricsBundlePurchaseItem) GetOrderNo() string { @@ -17738,7 +17801,7 @@ type MetricsArtistAccountExportReq struct { func (x *MetricsArtistAccountExportReq) Reset() { *x = MetricsArtistAccountExportReq{} 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) } @@ -17751,7 +17814,7 @@ func (x *MetricsArtistAccountExportReq) String() string { func (*MetricsArtistAccountExportReq) ProtoMessage() {} func (x *MetricsArtistAccountExportReq) 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 { @@ -17764,7 +17827,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{177} + return file_pb_bundle_proto_rawDescGZIP(), []int{178} } func (x *MetricsArtistAccountExportReq) GetMonth() []string { @@ -17785,7 +17848,7 @@ type MetricsArtistAccountExportResp struct { func (x *MetricsArtistAccountExportResp) Reset() { *x = MetricsArtistAccountExportResp{} 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) } @@ -17798,7 +17861,7 @@ func (x *MetricsArtistAccountExportResp) String() string { func (*MetricsArtistAccountExportResp) ProtoMessage() {} func (x *MetricsArtistAccountExportResp) 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 { @@ -17811,7 +17874,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{178} + return file_pb_bundle_proto_rawDescGZIP(), []int{179} } func (x *MetricsArtistAccountExportResp) GetData() []*MetricsArtistAccountExportItem { @@ -17848,7 +17911,7 @@ type MetricsArtistAccountExportItem struct { func (x *MetricsArtistAccountExportItem) Reset() { *x = MetricsArtistAccountExportItem{} 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) } @@ -17861,7 +17924,7 @@ func (x *MetricsArtistAccountExportItem) String() string { func (*MetricsArtistAccountExportItem) ProtoMessage() {} func (x *MetricsArtistAccountExportItem) 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 { @@ -17874,7 +17937,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{179} + return file_pb_bundle_proto_rawDescGZIP(), []int{180} } func (x *MetricsArtistAccountExportItem) GetArtistName() string { @@ -18007,7 +18070,7 @@ type MetricsVideoSubmitExportReq struct { func (x *MetricsVideoSubmitExportReq) Reset() { *x = MetricsVideoSubmitExportReq{} 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) } @@ -18020,7 +18083,7 @@ func (x *MetricsVideoSubmitExportReq) String() string { func (*MetricsVideoSubmitExportReq) ProtoMessage() {} func (x *MetricsVideoSubmitExportReq) 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 { @@ -18033,7 +18096,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{180} + return file_pb_bundle_proto_rawDescGZIP(), []int{181} } func (x *MetricsVideoSubmitExportReq) GetMonth() []string { @@ -18054,7 +18117,7 @@ type MetricsVideoSubmitExportResp struct { func (x *MetricsVideoSubmitExportResp) Reset() { *x = MetricsVideoSubmitExportResp{} 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) } @@ -18067,7 +18130,7 @@ func (x *MetricsVideoSubmitExportResp) String() string { func (*MetricsVideoSubmitExportResp) ProtoMessage() {} func (x *MetricsVideoSubmitExportResp) 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 { @@ -18080,7 +18143,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{181} + return file_pb_bundle_proto_rawDescGZIP(), []int{182} } func (x *MetricsVideoSubmitExportResp) GetData() []*MetricsVideoSubmitExportItem { @@ -18106,7 +18169,7 @@ type MetricsVideoSubmitExportItem struct { func (x *MetricsVideoSubmitExportItem) Reset() { *x = MetricsVideoSubmitExportItem{} 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) } @@ -18119,7 +18182,7 @@ func (x *MetricsVideoSubmitExportItem) String() string { func (*MetricsVideoSubmitExportItem) ProtoMessage() {} func (x *MetricsVideoSubmitExportItem) 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 { @@ -18132,7 +18195,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{182} + return file_pb_bundle_proto_rawDescGZIP(), []int{183} } func (x *MetricsVideoSubmitExportItem) GetArtistName() string { @@ -18188,7 +18251,7 @@ type MetricsBalanceDetailExportReq struct { func (x *MetricsBalanceDetailExportReq) Reset() { *x = MetricsBalanceDetailExportReq{} 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) } @@ -18201,7 +18264,7 @@ func (x *MetricsBalanceDetailExportReq) String() string { func (*MetricsBalanceDetailExportReq) ProtoMessage() {} func (x *MetricsBalanceDetailExportReq) 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 { @@ -18214,7 +18277,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{183} + return file_pb_bundle_proto_rawDescGZIP(), []int{184} } func (x *MetricsBalanceDetailExportReq) GetMonth() string { @@ -18240,7 +18303,7 @@ type CustomerListRequest struct { func (x *CustomerListRequest) Reset() { *x = CustomerListRequest{} 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) } @@ -18253,7 +18316,7 @@ func (x *CustomerListRequest) String() string { func (*CustomerListRequest) ProtoMessage() {} func (x *CustomerListRequest) 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 { @@ -18266,7 +18329,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{184} + return file_pb_bundle_proto_rawDescGZIP(), []int{185} } func (x *CustomerListRequest) GetCustomerName() string { @@ -18312,7 +18375,7 @@ type CustomerListResponse struct { func (x *CustomerListResponse) Reset() { *x = CustomerListResponse{} 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) } @@ -18325,7 +18388,7 @@ func (x *CustomerListResponse) String() string { func (*CustomerListResponse) ProtoMessage() {} func (x *CustomerListResponse) 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 { @@ -18338,7 +18401,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{185} + return file_pb_bundle_proto_rawDescGZIP(), []int{186} } func (x *CustomerListResponse) GetList() []*CustomerInfo { @@ -18381,7 +18444,7 @@ type CustomerDetailRequest struct { func (x *CustomerDetailRequest) Reset() { *x = CustomerDetailRequest{} 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) } @@ -18394,7 +18457,7 @@ func (x *CustomerDetailRequest) String() string { func (*CustomerDetailRequest) ProtoMessage() {} func (x *CustomerDetailRequest) 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 { @@ -18407,7 +18470,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{186} + return file_pb_bundle_proto_rawDescGZIP(), []int{187} } func (x *CustomerDetailRequest) GetCustomerID() string { @@ -18430,7 +18493,7 @@ type CustomerDetailResponse struct { func (x *CustomerDetailResponse) Reset() { *x = CustomerDetailResponse{} 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) } @@ -18443,7 +18506,7 @@ func (x *CustomerDetailResponse) String() string { func (*CustomerDetailResponse) ProtoMessage() {} func (x *CustomerDetailResponse) 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 { @@ -18456,7 +18519,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{187} + return file_pb_bundle_proto_rawDescGZIP(), []int{188} } func (x *CustomerDetailResponse) GetCustomer() *Customer { @@ -18486,7 +18549,7 @@ type CustomerUpdateRequest struct { func (x *CustomerUpdateRequest) Reset() { *x = CustomerUpdateRequest{} 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) } @@ -18499,7 +18562,7 @@ func (x *CustomerUpdateRequest) String() string { func (*CustomerUpdateRequest) ProtoMessage() {} func (x *CustomerUpdateRequest) 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 { @@ -18512,7 +18575,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{188} + return file_pb_bundle_proto_rawDescGZIP(), []int{189} } func (x *CustomerUpdateRequest) GetAction() string { @@ -18547,7 +18610,7 @@ type CustomerInfo struct { func (x *CustomerInfo) Reset() { *x = CustomerInfo{} 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) } @@ -18560,7 +18623,7 @@ func (x *CustomerInfo) String() string { func (*CustomerInfo) ProtoMessage() {} func (x *CustomerInfo) 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 { @@ -18573,7 +18636,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{189} + return file_pb_bundle_proto_rawDescGZIP(), []int{190} } func (x *CustomerInfo) GetCustomerID() string { @@ -18646,7 +18709,7 @@ type Customer struct { func (x *Customer) Reset() { *x = Customer{} 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) } @@ -18659,7 +18722,7 @@ func (x *Customer) String() string { func (*Customer) ProtoMessage() {} func (x *Customer) 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 { @@ -18672,7 +18735,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{190} + return file_pb_bundle_proto_rawDescGZIP(), []int{191} } func (x *Customer) GetCustomerID() string { @@ -18764,7 +18827,7 @@ type ReferralPersonListRequest struct { func (x *ReferralPersonListRequest) Reset() { *x = ReferralPersonListRequest{} 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) } @@ -18777,7 +18840,7 @@ func (x *ReferralPersonListRequest) String() string { func (*ReferralPersonListRequest) ProtoMessage() {} func (x *ReferralPersonListRequest) 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 { @@ -18790,7 +18853,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{191} + return file_pb_bundle_proto_rawDescGZIP(), []int{192} } func (x *ReferralPersonListRequest) GetKeyword() string { @@ -18813,7 +18876,7 @@ type ReferralPersonListResponse struct { func (x *ReferralPersonListResponse) Reset() { *x = ReferralPersonListResponse{} 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) } @@ -18826,7 +18889,7 @@ func (x *ReferralPersonListResponse) String() string { func (*ReferralPersonListResponse) ProtoMessage() {} func (x *ReferralPersonListResponse) 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 { @@ -18839,7 +18902,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{192} + return file_pb_bundle_proto_rawDescGZIP(), []int{193} } func (x *ReferralPersonListResponse) GetList() []string { @@ -18869,7 +18932,7 @@ type ContractUpdateRequest struct { func (x *ContractUpdateRequest) Reset() { *x = ContractUpdateRequest{} 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) } @@ -18882,7 +18945,7 @@ func (x *ContractUpdateRequest) String() string { func (*ContractUpdateRequest) ProtoMessage() {} func (x *ContractUpdateRequest) 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 { @@ -18895,7 +18958,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{193} + return file_pb_bundle_proto_rawDescGZIP(), []int{194} } func (x *ContractUpdateRequest) GetAction() string { @@ -18928,7 +18991,7 @@ type ContractListRequest struct { func (x *ContractListRequest) Reset() { *x = ContractListRequest{} 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) } @@ -18941,7 +19004,7 @@ func (x *ContractListRequest) String() string { func (*ContractListRequest) ProtoMessage() {} func (x *ContractListRequest) 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 { @@ -18954,7 +19017,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{194} + return file_pb_bundle_proto_rawDescGZIP(), []int{195} } func (x *ContractListRequest) GetContractName() string { @@ -19007,7 +19070,7 @@ type ContractListResponse struct { func (x *ContractListResponse) Reset() { *x = ContractListResponse{} 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) } @@ -19020,7 +19083,7 @@ func (x *ContractListResponse) String() string { func (*ContractListResponse) ProtoMessage() {} func (x *ContractListResponse) 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 { @@ -19033,7 +19096,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{195} + return file_pb_bundle_proto_rawDescGZIP(), []int{196} } func (x *ContractListResponse) GetList() []*ContractInfo { @@ -19076,7 +19139,7 @@ type ContractDetailRequest struct { func (x *ContractDetailRequest) Reset() { *x = ContractDetailRequest{} 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) } @@ -19089,7 +19152,7 @@ func (x *ContractDetailRequest) String() string { func (*ContractDetailRequest) ProtoMessage() {} func (x *ContractDetailRequest) 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 { @@ -19102,7 +19165,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{196} + return file_pb_bundle_proto_rawDescGZIP(), []int{197} } func (x *ContractDetailRequest) GetContractUUID() string { @@ -19125,7 +19188,7 @@ type ContractDetailResponse struct { func (x *ContractDetailResponse) Reset() { *x = ContractDetailResponse{} 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) } @@ -19138,7 +19201,7 @@ func (x *ContractDetailResponse) String() string { func (*ContractDetailResponse) ProtoMessage() {} func (x *ContractDetailResponse) 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 { @@ -19151,7 +19214,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{197} + return file_pb_bundle_proto_rawDescGZIP(), []int{198} } func (x *ContractDetailResponse) GetContract() *Contract { @@ -19180,7 +19243,7 @@ type GetDevelopmentCyclesByContractUUIDRequest struct { func (x *GetDevelopmentCyclesByContractUUIDRequest) Reset() { *x = GetDevelopmentCyclesByContractUUIDRequest{} 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) } @@ -19193,7 +19256,7 @@ func (x *GetDevelopmentCyclesByContractUUIDRequest) String() string { func (*GetDevelopmentCyclesByContractUUIDRequest) ProtoMessage() {} func (x *GetDevelopmentCyclesByContractUUIDRequest) 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 { @@ -19206,7 +19269,7 @@ func (x *GetDevelopmentCyclesByContractUUIDRequest) ProtoReflect() protoreflect. // Deprecated: Use GetDevelopmentCyclesByContractUUIDRequest.ProtoReflect.Descriptor instead. func (*GetDevelopmentCyclesByContractUUIDRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{198} + return file_pb_bundle_proto_rawDescGZIP(), []int{199} } func (x *GetDevelopmentCyclesByContractUUIDRequest) GetContractUUID() string { @@ -19229,7 +19292,7 @@ type GetDevelopmentCyclesByContractUUIDResponse struct { func (x *GetDevelopmentCyclesByContractUUIDResponse) Reset() { *x = GetDevelopmentCyclesByContractUUIDResponse{} 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) } @@ -19242,7 +19305,7 @@ func (x *GetDevelopmentCyclesByContractUUIDResponse) String() string { func (*GetDevelopmentCyclesByContractUUIDResponse) ProtoMessage() {} func (x *GetDevelopmentCyclesByContractUUIDResponse) 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 { @@ -19255,7 +19318,7 @@ func (x *GetDevelopmentCyclesByContractUUIDResponse) ProtoReflect() protoreflect // Deprecated: Use GetDevelopmentCyclesByContractUUIDResponse.ProtoReflect.Descriptor instead. func (*GetDevelopmentCyclesByContractUUIDResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{199} + return file_pb_bundle_proto_rawDescGZIP(), []int{200} } func (x *GetDevelopmentCyclesByContractUUIDResponse) GetList() []*DevelopmentCycle { @@ -19284,7 +19347,7 @@ type GetPaymentCyclesByContractUUIDRequest struct { func (x *GetPaymentCyclesByContractUUIDRequest) Reset() { *x = GetPaymentCyclesByContractUUIDRequest{} 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) } @@ -19297,7 +19360,7 @@ func (x *GetPaymentCyclesByContractUUIDRequest) String() string { func (*GetPaymentCyclesByContractUUIDRequest) ProtoMessage() {} func (x *GetPaymentCyclesByContractUUIDRequest) 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 { @@ -19310,7 +19373,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{200} + return file_pb_bundle_proto_rawDescGZIP(), []int{201} } func (x *GetPaymentCyclesByContractUUIDRequest) GetContractUUID() string { @@ -19333,7 +19396,7 @@ type GetPaymentCyclesByContractUUIDResponse struct { func (x *GetPaymentCyclesByContractUUIDResponse) Reset() { *x = GetPaymentCyclesByContractUUIDResponse{} 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) } @@ -19346,7 +19409,7 @@ func (x *GetPaymentCyclesByContractUUIDResponse) String() string { func (*GetPaymentCyclesByContractUUIDResponse) ProtoMessage() {} func (x *GetPaymentCyclesByContractUUIDResponse) 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 { @@ -19359,7 +19422,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{201} + return file_pb_bundle_proto_rawDescGZIP(), []int{202} } func (x *GetPaymentCyclesByContractUUIDResponse) GetList() []*ContractPaymentCycle { @@ -19389,7 +19452,7 @@ type AttachmentItem struct { func (x *AttachmentItem) Reset() { *x = AttachmentItem{} 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) } @@ -19402,7 +19465,7 @@ func (x *AttachmentItem) String() string { func (*AttachmentItem) ProtoMessage() {} func (x *AttachmentItem) 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 { @@ -19415,7 +19478,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{202} + return file_pb_bundle_proto_rawDescGZIP(), []int{203} } func (x *AttachmentItem) GetUrl() string { @@ -19464,7 +19527,7 @@ type ContractInfo struct { func (x *ContractInfo) Reset() { *x = ContractInfo{} 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) } @@ -19477,7 +19540,7 @@ func (x *ContractInfo) String() string { func (*ContractInfo) ProtoMessage() {} func (x *ContractInfo) 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 { @@ -19490,7 +19553,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{203} + return file_pb_bundle_proto_rawDescGZIP(), []int{204} } func (x *ContractInfo) GetContractUUID() string { @@ -19676,7 +19739,7 @@ type Contract struct { func (x *Contract) Reset() { *x = Contract{} 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) } @@ -19689,7 +19752,7 @@ func (x *Contract) String() string { func (*Contract) ProtoMessage() {} func (x *Contract) 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 { @@ -19702,7 +19765,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{204} + return file_pb_bundle_proto_rawDescGZIP(), []int{205} } func (x *Contract) GetContractUUID() string { @@ -19897,7 +19960,7 @@ type ContractPaymentCycle struct { func (x *ContractPaymentCycle) Reset() { *x = ContractPaymentCycle{} 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) } @@ -19910,7 +19973,7 @@ func (x *ContractPaymentCycle) String() string { func (*ContractPaymentCycle) ProtoMessage() {} func (x *ContractPaymentCycle) 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 { @@ -19923,7 +19986,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{205} + return file_pb_bundle_proto_rawDescGZIP(), []int{206} } func (x *ContractPaymentCycle) GetContractPaymentCycleUUID() string { @@ -19985,7 +20048,7 @@ type DevelopmentCycle struct { func (x *DevelopmentCycle) Reset() { *x = DevelopmentCycle{} 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) } @@ -19998,7 +20061,7 @@ func (x *DevelopmentCycle) String() string { func (*DevelopmentCycle) ProtoMessage() {} func (x *DevelopmentCycle) 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 { @@ -20011,7 +20074,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{206} + return file_pb_bundle_proto_rawDescGZIP(), []int{207} } func (x *DevelopmentCycle) GetDevelopmentCycleUUID() string { @@ -20076,7 +20139,7 @@ type CreateInvoiceReq struct { func (x *CreateInvoiceReq) Reset() { *x = CreateInvoiceReq{} 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) } @@ -20089,7 +20152,7 @@ func (x *CreateInvoiceReq) String() string { func (*CreateInvoiceReq) ProtoMessage() {} func (x *CreateInvoiceReq) 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 { @@ -20102,7 +20165,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{207} + return file_pb_bundle_proto_rawDescGZIP(), []int{208} } func (x *CreateInvoiceReq) GetUserId() string { @@ -20184,7 +20247,7 @@ type CreateInvoiceResp struct { func (x *CreateInvoiceResp) Reset() { *x = CreateInvoiceResp{} 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) } @@ -20197,7 +20260,7 @@ func (x *CreateInvoiceResp) String() string { func (*CreateInvoiceResp) ProtoMessage() {} func (x *CreateInvoiceResp) 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 { @@ -20210,7 +20273,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{208} + return file_pb_bundle_proto_rawDescGZIP(), []int{209} } type CreatePaperInvoiceAddressReq struct { @@ -20234,7 +20297,7 @@ type CreatePaperInvoiceAddressReq struct { func (x *CreatePaperInvoiceAddressReq) Reset() { *x = CreatePaperInvoiceAddressReq{} 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) } @@ -20247,7 +20310,7 @@ func (x *CreatePaperInvoiceAddressReq) String() string { func (*CreatePaperInvoiceAddressReq) ProtoMessage() {} func (x *CreatePaperInvoiceAddressReq) 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 { @@ -20260,7 +20323,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{209} + return file_pb_bundle_proto_rawDescGZIP(), []int{210} } func (x *CreatePaperInvoiceAddressReq) GetUserId() string { @@ -20349,7 +20412,7 @@ type CreatePaperInvoiceAddressResp struct { func (x *CreatePaperInvoiceAddressResp) Reset() { *x = CreatePaperInvoiceAddressResp{} 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) } @@ -20362,7 +20425,7 @@ func (x *CreatePaperInvoiceAddressResp) String() string { func (*CreatePaperInvoiceAddressResp) ProtoMessage() {} func (x *CreatePaperInvoiceAddressResp) 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 { @@ -20375,7 +20438,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{210} + return file_pb_bundle_proto_rawDescGZIP(), []int{211} } type InvoiceInfo struct { @@ -20399,7 +20462,7 @@ type InvoiceInfo struct { func (x *InvoiceInfo) Reset() { *x = InvoiceInfo{} 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) } @@ -20412,7 +20475,7 @@ func (x *InvoiceInfo) String() string { func (*InvoiceInfo) ProtoMessage() {} func (x *InvoiceInfo) 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 { @@ -20425,7 +20488,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{211} + return file_pb_bundle_proto_rawDescGZIP(), []int{212} } func (x *InvoiceInfo) GetName() string { @@ -20525,7 +20588,7 @@ type GetInvoiceListReq struct { func (x *GetInvoiceListReq) Reset() { *x = GetInvoiceListReq{} 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) } @@ -20538,7 +20601,7 @@ func (x *GetInvoiceListReq) String() string { func (*GetInvoiceListReq) ProtoMessage() {} func (x *GetInvoiceListReq) 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 { @@ -20551,7 +20614,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{212} + return file_pb_bundle_proto_rawDescGZIP(), []int{213} } func (x *GetInvoiceListReq) GetSize() int64 { @@ -20638,7 +20701,7 @@ type GetInvoiceListResp struct { func (x *GetInvoiceListResp) Reset() { *x = GetInvoiceListResp{} 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) } @@ -20651,7 +20714,7 @@ func (x *GetInvoiceListResp) String() string { func (*GetInvoiceListResp) ProtoMessage() {} func (x *GetInvoiceListResp) 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 { @@ -20664,7 +20727,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{213} + return file_pb_bundle_proto_rawDescGZIP(), []int{214} } func (x *GetInvoiceListResp) GetData() []*InvoiceInfo { @@ -20709,7 +20772,7 @@ type UpdateInvoiceExpressInfoReq struct { func (x *UpdateInvoiceExpressInfoReq) Reset() { *x = UpdateInvoiceExpressInfoReq{} 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) } @@ -20722,7 +20785,7 @@ func (x *UpdateInvoiceExpressInfoReq) String() string { func (*UpdateInvoiceExpressInfoReq) ProtoMessage() {} func (x *UpdateInvoiceExpressInfoReq) 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 { @@ -20735,7 +20798,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{214} + return file_pb_bundle_proto_rawDescGZIP(), []int{215} } func (x *UpdateInvoiceExpressInfoReq) GetOrderNo() string { @@ -20775,7 +20838,7 @@ type UpdateInvoiceExpressInfoResp struct { func (x *UpdateInvoiceExpressInfoResp) Reset() { *x = UpdateInvoiceExpressInfoResp{} 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) } @@ -20788,7 +20851,7 @@ func (x *UpdateInvoiceExpressInfoResp) String() string { func (*UpdateInvoiceExpressInfoResp) ProtoMessage() {} func (x *UpdateInvoiceExpressInfoResp) 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 { @@ -20801,7 +20864,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{215} + return file_pb_bundle_proto_rawDescGZIP(), []int{216} } type GetInvoiceExpressInfoReq struct { @@ -20815,7 +20878,7 @@ type GetInvoiceExpressInfoReq struct { func (x *GetInvoiceExpressInfoReq) Reset() { *x = GetInvoiceExpressInfoReq{} 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) } @@ -20828,7 +20891,7 @@ func (x *GetInvoiceExpressInfoReq) String() string { func (*GetInvoiceExpressInfoReq) ProtoMessage() {} func (x *GetInvoiceExpressInfoReq) 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 { @@ -20841,7 +20904,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{216} + return file_pb_bundle_proto_rawDescGZIP(), []int{217} } func (x *GetInvoiceExpressInfoReq) GetOrderNo() string { @@ -20864,7 +20927,7 @@ type GetInvoiceExpressInfoResp struct { func (x *GetInvoiceExpressInfoResp) Reset() { *x = GetInvoiceExpressInfoResp{} 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) } @@ -20877,7 +20940,7 @@ func (x *GetInvoiceExpressInfoResp) String() string { func (*GetInvoiceExpressInfoResp) ProtoMessage() {} func (x *GetInvoiceExpressInfoResp) 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 { @@ -20890,7 +20953,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{217} + return file_pb_bundle_proto_rawDescGZIP(), []int{218} } func (x *GetInvoiceExpressInfoResp) GetExpressCompany() string { @@ -20926,7 +20989,7 @@ type GetOrderInfoByOrderNoReq struct { func (x *GetOrderInfoByOrderNoReq) Reset() { *x = GetOrderInfoByOrderNoReq{} 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) } @@ -20939,7 +21002,7 @@ func (x *GetOrderInfoByOrderNoReq) String() string { func (*GetOrderInfoByOrderNoReq) ProtoMessage() {} func (x *GetOrderInfoByOrderNoReq) 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 { @@ -20952,7 +21015,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{218} + return file_pb_bundle_proto_rawDescGZIP(), []int{219} } func (x *GetOrderInfoByOrderNoReq) GetUuid() string { @@ -20989,7 +21052,7 @@ type GetOrderInfoByOrderNoResp struct { func (x *GetOrderInfoByOrderNoResp) Reset() { *x = GetOrderInfoByOrderNoResp{} 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) } @@ -21002,7 +21065,7 @@ func (x *GetOrderInfoByOrderNoResp) String() string { func (*GetOrderInfoByOrderNoResp) ProtoMessage() {} func (x *GetOrderInfoByOrderNoResp) 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 { @@ -21015,7 +21078,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{219} + return file_pb_bundle_proto_rawDescGZIP(), []int{220} } func (x *GetOrderInfoByOrderNoResp) GetUserName() string { @@ -21109,7 +21172,7 @@ type WorkCastInfo struct { func (x *WorkCastInfo) Reset() { *x = WorkCastInfo{} 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) } @@ -21122,7 +21185,7 @@ func (x *WorkCastInfo) String() string { func (*WorkCastInfo) ProtoMessage() {} func (x *WorkCastInfo) 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 { @@ -21135,7 +21198,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{220} + return file_pb_bundle_proto_rawDescGZIP(), []int{221} } func (x *WorkCastInfo) GetCustomerName() string { @@ -21227,7 +21290,7 @@ type ExportWorkCastInfoReq struct { func (x *ExportWorkCastInfoReq) Reset() { *x = ExportWorkCastInfoReq{} 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) } @@ -21240,7 +21303,7 @@ func (x *ExportWorkCastInfoReq) String() string { func (*ExportWorkCastInfoReq) ProtoMessage() {} func (x *ExportWorkCastInfoReq) 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 { @@ -21253,7 +21316,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{221} + return file_pb_bundle_proto_rawDescGZIP(), []int{222} } func (x *ExportWorkCastInfoReq) GetStartTime() string { @@ -21281,7 +21344,7 @@ type ExportWorkCastInfoResp struct { func (x *ExportWorkCastInfoResp) Reset() { *x = ExportWorkCastInfoResp{} 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) } @@ -21294,7 +21357,7 @@ func (x *ExportWorkCastInfoResp) String() string { func (*ExportWorkCastInfoResp) ProtoMessage() {} func (x *ExportWorkCastInfoResp) 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 { @@ -21307,7 +21370,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{222} + return file_pb_bundle_proto_rawDescGZIP(), []int{223} } func (x *ExportWorkCastInfoResp) GetData() []*WorkCastInfo { @@ -21328,7 +21391,7 @@ type OrderInfoByOrderUuidRequest struct { func (x *OrderInfoByOrderUuidRequest) Reset() { *x = OrderInfoByOrderUuidRequest{} 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) } @@ -21341,7 +21404,7 @@ func (x *OrderInfoByOrderUuidRequest) String() string { func (*OrderInfoByOrderUuidRequest) ProtoMessage() {} func (x *OrderInfoByOrderUuidRequest) 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 { @@ -21354,7 +21417,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{223} + return file_pb_bundle_proto_rawDescGZIP(), []int{224} } func (x *OrderInfoByOrderUuidRequest) GetOrderUuid() string { @@ -21376,7 +21439,7 @@ type GetInvoiceInfoByOrderNoReq struct { func (x *GetInvoiceInfoByOrderNoReq) Reset() { *x = GetInvoiceInfoByOrderNoReq{} 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) } @@ -21389,7 +21452,7 @@ func (x *GetInvoiceInfoByOrderNoReq) String() string { func (*GetInvoiceInfoByOrderNoReq) ProtoMessage() {} func (x *GetInvoiceInfoByOrderNoReq) 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 { @@ -21402,7 +21465,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{224} + return file_pb_bundle_proto_rawDescGZIP(), []int{225} } func (x *GetInvoiceInfoByOrderNoReq) GetUserId() string { @@ -21437,7 +21500,7 @@ type InvoiceInfoByOrderNo struct { func (x *InvoiceInfoByOrderNo) Reset() { *x = InvoiceInfoByOrderNo{} 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) } @@ -21450,7 +21513,7 @@ func (x *InvoiceInfoByOrderNo) String() string { func (*InvoiceInfoByOrderNo) ProtoMessage() {} func (x *InvoiceInfoByOrderNo) 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 { @@ -21463,7 +21526,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{225} + return file_pb_bundle_proto_rawDescGZIP(), []int{226} } func (x *InvoiceInfoByOrderNo) GetOrderNo() string { @@ -21533,7 +21596,7 @@ type GetInvoiceInfoByOrderNoResp struct { func (x *GetInvoiceInfoByOrderNoResp) Reset() { *x = GetInvoiceInfoByOrderNoResp{} 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) } @@ -21546,7 +21609,7 @@ func (x *GetInvoiceInfoByOrderNoResp) String() string { func (*GetInvoiceInfoByOrderNoResp) ProtoMessage() {} func (x *GetInvoiceInfoByOrderNoResp) 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 { @@ -21559,7 +21622,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{226} + return file_pb_bundle_proto_rawDescGZIP(), []int{227} } func (x *GetInvoiceInfoByOrderNoResp) GetData() []*InvoiceInfoByOrderNo { @@ -21578,7 +21641,7 @@ type GetLastInvoiceNoReq struct { func (x *GetLastInvoiceNoReq) Reset() { *x = GetLastInvoiceNoReq{} 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) } @@ -21591,7 +21654,7 @@ func (x *GetLastInvoiceNoReq) String() string { func (*GetLastInvoiceNoReq) ProtoMessage() {} func (x *GetLastInvoiceNoReq) 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 { @@ -21604,7 +21667,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{227} + return file_pb_bundle_proto_rawDescGZIP(), []int{228} } type GetLastInvoiceNoResp struct { @@ -21618,7 +21681,7 @@ type GetLastInvoiceNoResp struct { func (x *GetLastInvoiceNoResp) Reset() { *x = GetLastInvoiceNoResp{} 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) } @@ -21631,7 +21694,7 @@ func (x *GetLastInvoiceNoResp) String() string { func (*GetLastInvoiceNoResp) ProtoMessage() {} func (x *GetLastInvoiceNoResp) 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 { @@ -21644,7 +21707,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{228} + return file_pb_bundle_proto_rawDescGZIP(), []int{229} } func (x *GetLastInvoiceNoResp) GetLastNo() string { @@ -21666,7 +21729,7 @@ type UpdataInvoiceInfoReq struct { func (x *UpdataInvoiceInfoReq) Reset() { *x = UpdataInvoiceInfoReq{} 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) } @@ -21679,7 +21742,7 @@ func (x *UpdataInvoiceInfoReq) String() string { func (*UpdataInvoiceInfoReq) ProtoMessage() {} func (x *UpdataInvoiceInfoReq) 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 { @@ -21692,7 +21755,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{229} + return file_pb_bundle_proto_rawDescGZIP(), []int{230} } func (x *UpdataInvoiceInfoReq) GetOrderNo() string { @@ -21718,7 +21781,7 @@ type UpdataInvoiceInfoResp struct { func (x *UpdataInvoiceInfoResp) Reset() { *x = UpdataInvoiceInfoResp{} 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) } @@ -21731,7 +21794,7 @@ func (x *UpdataInvoiceInfoResp) String() string { func (*UpdataInvoiceInfoResp) ProtoMessage() {} func (x *UpdataInvoiceInfoResp) 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 { @@ -21744,7 +21807,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{230} + return file_pb_bundle_proto_rawDescGZIP(), []int{231} } type SendQuestionnaireSurveyRequest struct { @@ -21760,7 +21823,7 @@ type SendQuestionnaireSurveyRequest struct { func (x *SendQuestionnaireSurveyRequest) Reset() { *x = SendQuestionnaireSurveyRequest{} 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) } @@ -21773,7 +21836,7 @@ func (x *SendQuestionnaireSurveyRequest) String() string { func (*SendQuestionnaireSurveyRequest) ProtoMessage() {} func (x *SendQuestionnaireSurveyRequest) 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 { @@ -21786,7 +21849,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{231} + return file_pb_bundle_proto_rawDescGZIP(), []int{232} } func (x *SendQuestionnaireSurveyRequest) GetEndTime() string { @@ -21821,7 +21884,7 @@ type SendQuestionnaireSurveyResponse struct { func (x *SendQuestionnaireSurveyResponse) Reset() { *x = SendQuestionnaireSurveyResponse{} 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) } @@ -21834,7 +21897,7 @@ func (x *SendQuestionnaireSurveyResponse) String() string { func (*SendQuestionnaireSurveyResponse) ProtoMessage() {} func (x *SendQuestionnaireSurveyResponse) 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 { @@ -21847,7 +21910,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{232} + return file_pb_bundle_proto_rawDescGZIP(), []int{233} } func (x *SendQuestionnaireSurveyResponse) GetStatus() int32 { @@ -21868,7 +21931,7 @@ type GetQuestionnaireSurveyInfoRequest struct { func (x *GetQuestionnaireSurveyInfoRequest) Reset() { *x = GetQuestionnaireSurveyInfoRequest{} 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) } @@ -21881,7 +21944,7 @@ func (x *GetQuestionnaireSurveyInfoRequest) String() string { func (*GetQuestionnaireSurveyInfoRequest) ProtoMessage() {} func (x *GetQuestionnaireSurveyInfoRequest) 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 { @@ -21894,7 +21957,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{233} + return file_pb_bundle_proto_rawDescGZIP(), []int{234} } func (x *GetQuestionnaireSurveyInfoRequest) GetUserTel() string { @@ -21923,7 +21986,7 @@ type SurveyBundleInfo struct { func (x *SurveyBundleInfo) Reset() { *x = SurveyBundleInfo{} 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) } @@ -21936,7 +21999,7 @@ func (x *SurveyBundleInfo) String() string { func (*SurveyBundleInfo) ProtoMessage() {} func (x *SurveyBundleInfo) 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 { @@ -21949,7 +22012,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{234} + return file_pb_bundle_proto_rawDescGZIP(), []int{235} } func (x *SurveyBundleInfo) GetBundleName() string { @@ -22027,7 +22090,7 @@ type GetQuestionnaireSurveyInfoResponse struct { func (x *GetQuestionnaireSurveyInfoResponse) Reset() { *x = GetQuestionnaireSurveyInfoResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[235] + mi := &file_pb_bundle_proto_msgTypes[236] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22040,7 +22103,7 @@ func (x *GetQuestionnaireSurveyInfoResponse) String() string { func (*GetQuestionnaireSurveyInfoResponse) ProtoMessage() {} func (x *GetQuestionnaireSurveyInfoResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[235] + mi := &file_pb_bundle_proto_msgTypes[236] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22053,7 +22116,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{235} + return file_pb_bundle_proto_rawDescGZIP(), []int{236} } func (x *GetQuestionnaireSurveyInfoResponse) GetUserName() string { @@ -22088,7 +22151,7 @@ type SurveyAnswer struct { func (x *SurveyAnswer) Reset() { *x = SurveyAnswer{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[236] + mi := &file_pb_bundle_proto_msgTypes[237] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22101,7 +22164,7 @@ func (x *SurveyAnswer) String() string { func (*SurveyAnswer) ProtoMessage() {} func (x *SurveyAnswer) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[236] + mi := &file_pb_bundle_proto_msgTypes[237] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22114,7 +22177,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{236} + return file_pb_bundle_proto_rawDescGZIP(), []int{237} } func (x *SurveyAnswer) GetBundleAccountScore() int32 { @@ -22186,7 +22249,7 @@ type SurveyFeedback struct { func (x *SurveyFeedback) Reset() { *x = SurveyFeedback{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[237] + mi := &file_pb_bundle_proto_msgTypes[238] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22199,7 +22262,7 @@ func (x *SurveyFeedback) String() string { func (*SurveyFeedback) ProtoMessage() {} func (x *SurveyFeedback) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[237] + mi := &file_pb_bundle_proto_msgTypes[238] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22212,7 +22275,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{237} + return file_pb_bundle_proto_rawDescGZIP(), []int{238} } func (x *SurveyFeedback) GetMeritsReview() string { @@ -22255,7 +22318,7 @@ type CreateQuestionnaireSurveyAnswerRequest struct { func (x *CreateQuestionnaireSurveyAnswerRequest) Reset() { *x = CreateQuestionnaireSurveyAnswerRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[238] + mi := &file_pb_bundle_proto_msgTypes[239] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22268,7 +22331,7 @@ func (x *CreateQuestionnaireSurveyAnswerRequest) String() string { func (*CreateQuestionnaireSurveyAnswerRequest) ProtoMessage() {} func (x *CreateQuestionnaireSurveyAnswerRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[238] + mi := &file_pb_bundle_proto_msgTypes[239] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22281,7 +22344,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{238} + return file_pb_bundle_proto_rawDescGZIP(), []int{239} } func (x *CreateQuestionnaireSurveyAnswerRequest) GetUserTel() string { @@ -22356,7 +22419,7 @@ type CreateQuestionnaireSurveyAnswerResponse struct { func (x *CreateQuestionnaireSurveyAnswerResponse) Reset() { *x = CreateQuestionnaireSurveyAnswerResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[239] + mi := &file_pb_bundle_proto_msgTypes[240] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22369,7 +22432,7 @@ func (x *CreateQuestionnaireSurveyAnswerResponse) String() string { func (*CreateQuestionnaireSurveyAnswerResponse) ProtoMessage() {} func (x *CreateQuestionnaireSurveyAnswerResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[239] + mi := &file_pb_bundle_proto_msgTypes[240] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22382,7 +22445,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{239} + return file_pb_bundle_proto_rawDescGZIP(), []int{240} } type GetQuestionnaireSurveyListRequest struct { @@ -22400,7 +22463,7 @@ type GetQuestionnaireSurveyListRequest struct { func (x *GetQuestionnaireSurveyListRequest) Reset() { *x = GetQuestionnaireSurveyListRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[240] + mi := &file_pb_bundle_proto_msgTypes[241] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22413,7 +22476,7 @@ func (x *GetQuestionnaireSurveyListRequest) String() string { func (*GetQuestionnaireSurveyListRequest) ProtoMessage() {} func (x *GetQuestionnaireSurveyListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[240] + mi := &file_pb_bundle_proto_msgTypes[241] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22426,7 +22489,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{240} + return file_pb_bundle_proto_rawDescGZIP(), []int{241} } func (x *GetQuestionnaireSurveyListRequest) GetPage() int32 { @@ -22480,7 +22543,7 @@ type SurveyListInfo struct { func (x *SurveyListInfo) Reset() { *x = SurveyListInfo{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[241] + mi := &file_pb_bundle_proto_msgTypes[242] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22493,7 +22556,7 @@ func (x *SurveyListInfo) String() string { func (*SurveyListInfo) ProtoMessage() {} func (x *SurveyListInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[241] + mi := &file_pb_bundle_proto_msgTypes[242] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22506,7 +22569,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{241} + return file_pb_bundle_proto_rawDescGZIP(), []int{242} } func (x *SurveyListInfo) GetUserName() string { @@ -22565,7 +22628,7 @@ type GetQuestionnaireSurveyListResponse struct { func (x *GetQuestionnaireSurveyListResponse) Reset() { *x = GetQuestionnaireSurveyListResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[242] + mi := &file_pb_bundle_proto_msgTypes[243] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22578,7 +22641,7 @@ func (x *GetQuestionnaireSurveyListResponse) String() string { func (*GetQuestionnaireSurveyListResponse) ProtoMessage() {} func (x *GetQuestionnaireSurveyListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[242] + mi := &file_pb_bundle_proto_msgTypes[243] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22591,7 +22654,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{242} + return file_pb_bundle_proto_rawDescGZIP(), []int{243} } func (x *GetQuestionnaireSurveyListResponse) GetSurveyList() []*SurveyListInfo { @@ -22682,7 +22745,7 @@ type GetUserOrderListRequest struct { func (x *GetUserOrderListRequest) Reset() { *x = GetUserOrderListRequest{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[243] + mi := &file_pb_bundle_proto_msgTypes[244] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -22695,7 +22758,7 @@ func (x *GetUserOrderListRequest) String() string { func (*GetUserOrderListRequest) ProtoMessage() {} func (x *GetUserOrderListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[243] + mi := &file_pb_bundle_proto_msgTypes[244] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -22708,7 +22771,7 @@ func (x *GetUserOrderListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetUserOrderListRequest.ProtoReflect.Descriptor instead. func (*GetUserOrderListRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{243} + return file_pb_bundle_proto_rawDescGZIP(), []int{244} } func (x *GetUserOrderListRequest) GetCustomerID() string { @@ -22990,7 +23053,7 @@ type GetUserOrderListResponse struct { func (x *GetUserOrderListResponse) Reset() { *x = GetUserOrderListResponse{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[244] + mi := &file_pb_bundle_proto_msgTypes[245] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23003,7 +23066,7 @@ func (x *GetUserOrderListResponse) String() string { func (*GetUserOrderListResponse) ProtoMessage() {} func (x *GetUserOrderListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[244] + mi := &file_pb_bundle_proto_msgTypes[245] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23016,7 +23079,7 @@ func (x *GetUserOrderListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetUserOrderListResponse.ProtoReflect.Descriptor instead. func (*GetUserOrderListResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{244} + return file_pb_bundle_proto_rawDescGZIP(), []int{245} } func (x *GetUserOrderListResponse) GetTotal() int64 { @@ -23076,7 +23139,7 @@ type UserOrderDetail struct { func (x *UserOrderDetail) Reset() { *x = UserOrderDetail{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[245] + mi := &file_pb_bundle_proto_msgTypes[246] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23089,7 +23152,7 @@ func (x *UserOrderDetail) String() string { func (*UserOrderDetail) ProtoMessage() {} func (x *UserOrderDetail) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[245] + mi := &file_pb_bundle_proto_msgTypes[246] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23102,7 +23165,7 @@ func (x *UserOrderDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use UserOrderDetail.ProtoReflect.Descriptor instead. func (*UserOrderDetail) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{245} + return file_pb_bundle_proto_rawDescGZIP(), []int{246} } func (x *UserOrderDetail) GetUUID() string { @@ -23348,7 +23411,7 @@ type OrderValueAddDetail struct { func (x *OrderValueAddDetail) Reset() { *x = OrderValueAddDetail{} if protoimpl.UnsafeEnabled { - mi := &file_pb_bundle_proto_msgTypes[246] + mi := &file_pb_bundle_proto_msgTypes[247] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -23361,7 +23424,7 @@ func (x *OrderValueAddDetail) String() string { func (*OrderValueAddDetail) ProtoMessage() {} func (x *OrderValueAddDetail) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[246] + mi := &file_pb_bundle_proto_msgTypes[247] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -23374,7 +23437,7 @@ func (x *OrderValueAddDetail) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderValueAddDetail.ProtoReflect.Descriptor instead. func (*OrderValueAddDetail) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{246} + return file_pb_bundle_proto_rawDescGZIP(), []int{247} } func (x *OrderValueAddDetail) GetUUID() string { @@ -25568,7 +25631,7 @@ var file_pb_bundle_proto_rawDesc = []byte{ 0x6f, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x70, 0x74, 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, + 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x50, 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, @@ -25580,13 +25643,22 @@ var file_pb_bundle_proto_rawDesc = []byte{ 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, 0x17, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, + 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, 0x5f, 0x0a, 0x18, + 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, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x2d, @@ -28311,7 +28383,7 @@ var file_pb_bundle_proto_rawDesc = []byte{ 0x00, 0x12, 0x1a, 0x0a, 0x16, 0x42, 0x55, 0x4e, 0x44, 0x4c, 0x45, 0x5f, 0x54, 0x41, 0x53, 0x4b, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x42, 0x55, 0x4e, 0x44, 0x4c, 0x45, 0x5f, 0x54, 0x41, 0x53, 0x4b, 0x5f, 0x54, 0x59, 0x50, - 0x45, 0x5f, 0x50, 0x41, 0x59, 0x5f, 0x4c, 0x41, 0x54, 0x45, 0x52, 0x10, 0x02, 0x32, 0xad, 0x55, + 0x45, 0x5f, 0x50, 0x41, 0x59, 0x5f, 0x4c, 0x41, 0x54, 0x45, 0x52, 0x10, 0x02, 0x32, 0x97, 0x56, 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, @@ -28594,409 +28666,415 @@ var file_pb_bundle_proto_rawDesc = []byte{ 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, 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, + 0x65, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 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, 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, 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, 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, + 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, 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, - 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, 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, 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, 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, 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, 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, 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, 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, - 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, 0x51, 0x75, 0x65, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 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, 0x2e, 0x62, 0x75, + 0x6f, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x65, 0x2e, 0x43, + 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, + 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, 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, 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, + 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, 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, - 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, + 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 ( @@ -29012,7 +29090,7 @@ func file_pb_bundle_proto_rawDescGZIP() []byte { } var file_pb_bundle_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_pb_bundle_proto_msgTypes = make([]protoimpl.MessageInfo, 247) +var file_pb_bundle_proto_msgTypes = make([]protoimpl.MessageInfo, 248) var file_pb_bundle_proto_goTypes = []interface{}{ (BundleTaskType)(0), // 0: bundle.BundleTaskType (*GetInEffectOrderRecordRequest)(nil), // 1: bundle.GetInEffectOrderRecordRequest @@ -29099,169 +29177,170 @@ var file_pb_bundle_proto_goTypes = []interface{}{ (*BundleBalanceExportItem)(nil), // 82: bundle.BundleBalanceExportItem (*BundleBalanceExportReq)(nil), // 83: bundle.BundleBalanceExportReq (*BundleBalanceExportResp)(nil), // 84: bundle.BundleBalanceExportResp - (*GetBundleBalanceListResp)(nil), // 85: bundle.GetBundleBalanceListResp - (*CreateBundleBalanceReq)(nil), // 86: bundle.CreateBundleBalanceReq - (*CreateBundleBalanceResp)(nil), // 87: bundle.CreateBundleBalanceResp - (*AddBundleBalanceReq)(nil), // 88: bundle.AddBundleBalanceReq - (*AddBundleBalanceResp)(nil), // 89: bundle.AddBundleBalanceResp - (*GetUsedRecordListReq)(nil), // 90: bundle.GetUsedRecordListReq - (*GetUsedRecordListResp)(nil), // 91: bundle.GetUsedRecordListResp - (*WorkCastItem)(nil), // 92: bundle.WorkCastItem - (*GetImageWorkDetailReq)(nil), // 93: bundle.GetImageWorkDetailReq - (*GetVedioWorkDetailReq)(nil), // 94: bundle.GetVedioWorkDetailReq - (*GetImageWorkDetailResp)(nil), // 95: bundle.GetImageWorkDetailResp - (*GetVedioeWorkDetailResp)(nil), // 96: bundle.GetVedioeWorkDetailResp - (*ToBeComfirmedWorksReq)(nil), // 97: bundle.ToBeComfirmedWorksReq - (*WorkItem)(nil), // 98: bundle.workItem - (*ToBeComfirmedWorksResp)(nil), // 99: bundle.ToBeComfirmedWorksResp - (*GetBundleBalanceByUserIdReq)(nil), // 100: bundle.GetBundleBalanceByUserIdReq - (*GetBundleBalanceByUserIdResp)(nil), // 101: bundle.GetBundleBalanceByUserIdResp - (*GetBundleOrderListByUserIdReq)(nil), // 102: bundle.GetBundleOrderListByUserIdReq - (*BalanceOrderItem)(nil), // 103: bundle.BalanceOrderItem - (*GetBundleOrderListByUserIdResp)(nil), // 104: bundle.GetBundleOrderListByUserIdResp - (*GetBundleBalanceByOrderUUIDReq)(nil), // 105: bundle.GetBundleBalanceByOrderUUIDReq - (*GetBundleBalanceByOrderUUIDResp)(nil), // 106: bundle.GetBundleBalanceByOrderUUIDResp - (*OnlyAddValueListByOrderNoRequest)(nil), // 107: bundle.OnlyAddValueListByOrderNoRequest - (*OnlyAddValueListByOrderNoResp)(nil), // 108: bundle.OnlyAddValueListByOrderNoResp - (*AddBundleInfo)(nil), // 109: bundle.AddBundleInfo - (*UpdateStatusAndPayTimeBySerialNumber)(nil), // 110: bundle.UpdateStatusAndPayTimeBySerialNumber - (*ConfirmWorkReq)(nil), // 111: bundle.ConfirmWorkReq - (*ConfirmWorkResp)(nil), // 112: bundle.ConfirmWorkResp - (*ConfirmWorkItem)(nil), // 113: bundle.ConfirmWorkItem - (*GetWaitConfirmWorkListReq)(nil), // 114: bundle.GetWaitConfirmWorkListReq - (*GetWaitConfirmWorkListResp)(nil), // 115: bundle.GetWaitConfirmWorkListResp - (*AutoCreateUserAndOrderRequest)(nil), // 116: bundle.AutoCreateUserAndOrderRequest - (*UnfinishedInfos)(nil), // 117: bundle.UnfinishedInfos - (*UnfinishedInfo)(nil), // 118: bundle.UnfinishedInfo - (*SoftDeleteUnfinishedInfoRequest)(nil), // 119: bundle.SoftDeleteUnfinishedInfoRequest - (*BundleActivateReq)(nil), // 120: bundle.BundleActivateReq - (*BundleActivateResp)(nil), // 121: bundle.BundleActivateResp - (*TaskQueryRequest)(nil), // 122: bundle.TaskQueryRequest - (*TaskQueryResponse)(nil), // 123: bundle.TaskQueryResponse - (*TaskManagementInfo)(nil), // 124: bundle.TaskManagementInfo - (*TaskAssignRequest)(nil), // 125: bundle.TaskAssignRequest - (*UpdatePendingCountRequest)(nil), // 126: bundle.UpdatePendingCountRequest - (*AddHiddenTaskAssigneeRequest)(nil), // 127: bundle.AddHiddenTaskAssigneeRequest - (*RecentAssignRecordsRequest)(nil), // 128: bundle.RecentAssignRecordsRequest - (*RecentAssigneeItem)(nil), // 129: bundle.RecentAssigneeItem - (*RecentAssignRecordsResponse)(nil), // 130: bundle.RecentAssignRecordsResponse - (*EmployeeTaskQueryRequest)(nil), // 131: bundle.EmployeeTaskQueryRequest - (*EmployeeTaskQueryResponse)(nil), // 132: bundle.EmployeeTaskQueryResponse - (*TaskAssignRecordInfo)(nil), // 133: bundle.TaskAssignRecordInfo - (*BatchAssignTaskItem)(nil), // 134: bundle.BatchAssignTaskItem - (*BatchAssignTaskRequest)(nil), // 135: bundle.BatchAssignTaskRequest - (*CompleteTaskManuallyRequest)(nil), // 136: bundle.CompleteTaskManuallyRequest - (*TerminateTaskByUUIDRequest)(nil), // 137: bundle.TerminateTaskByUUIDRequest - (*BatchTerminateTaskRequest)(nil), // 138: bundle.BatchTerminateTaskRequest - (*RevertTaskCompletionByUUIDItemRequest)(nil), // 139: bundle.RevertTaskCompletionByUUIDItemRequest - (*GetTaskActualStatusByUUIDRequest)(nil), // 140: bundle.GetTaskActualStatusByUUIDRequest - (*GetTaskActualStatusByUUIDResponse)(nil), // 141: bundle.GetTaskActualStatusByUUIDResponse - (*UpdateTaskProgressRequest)(nil), // 142: bundle.UpdateTaskProgressRequest - (*TaskAssignRecordsQueryRequest)(nil), // 143: bundle.TaskAssignRecordsQueryRequest - (*ComResponse)(nil), // 144: bundle.ComResponse - (*TaskAssignRecordsQueryResponse)(nil), // 145: bundle.TaskAssignRecordsQueryResponse - (*TaskAssignRecordsSummary)(nil), // 146: bundle.TaskAssignRecordsSummary - (*ArtistUploadStatsItem)(nil), // 147: bundle.ArtistUploadStatsItem - (*ArtistUploadStatsResponse)(nil), // 148: bundle.ArtistUploadStatsResponse - (*PendingUploadBreakdownRequest)(nil), // 149: bundle.PendingUploadBreakdownRequest - (*PendingUploadBreakdownItem)(nil), // 150: bundle.PendingUploadBreakdownItem - (*PendingUploadBreakdownResponse)(nil), // 151: bundle.PendingUploadBreakdownResponse - (*PendingAssignRequest)(nil), // 152: bundle.PendingAssignRequest - (*PendingAssignItem)(nil), // 153: bundle.PendingAssignItem - (*PendingAssignResponse)(nil), // 154: bundle.PendingAssignResponse - (*ArtistBundleBalanceRequest)(nil), // 155: bundle.ArtistBundleBalanceRequest - (*ArtistBundleBalanceResponse)(nil), // 156: bundle.ArtistBundleBalanceResponse - (*SetBundleBalanceLayoutReq)(nil), // 157: bundle.SetBundleBalanceLayoutReq - (*SetBundleBalanceLayoutResp)(nil), // 158: bundle.SetBundleBalanceLayoutResp - (*GetBundleBalanceLayoutReq)(nil), // 159: bundle.GetBundleBalanceLayoutReq - (*GetBundleBalanceLayoutResp)(nil), // 160: bundle.GetBundleBalanceLayoutResp - (*GetPendingTaskLayoutReq)(nil), // 161: bundle.GetPendingTaskLayoutReq - (*GetPendingTaskLayoutResp)(nil), // 162: bundle.GetPendingTaskLayoutResp - (*SetPendingTaskLayoutReq)(nil), // 163: bundle.SetPendingTaskLayoutReq - (*SetPendingTaskLayoutResp)(nil), // 164: bundle.SetPendingTaskLayoutResp - (*TaskWorkLogQueryRequest)(nil), // 165: bundle.TaskWorkLogQueryRequest - (*TaskWorkLogInfo)(nil), // 166: bundle.TaskWorkLogInfo - (*TaskWorkLogQueryResponse)(nil), // 167: bundle.TaskWorkLogQueryResponse - (*CreateTaskWorkLogRequest)(nil), // 168: bundle.CreateTaskWorkLogRequest - (*MetricsBusinessReq)(nil), // 169: bundle.MetricsBusinessReq - (*MetricsBusinessResp)(nil), // 170: bundle.MetricsBusinessResp - (*MetricsOperatingCreateReq)(nil), // 171: bundle.MetricsOperatingCreateReq - (*MetricsOperatingCreateResp)(nil), // 172: bundle.MetricsOperatingCreateResp - (*MetricsOperatingStatusReq)(nil), // 173: bundle.MetricsOperatingStatusReq - (*MetricsOperatingStatusResp)(nil), // 174: bundle.MetricsOperatingStatusResp - (*MetricsBundlePurchaseExportReq)(nil), // 175: bundle.MetricsBundlePurchaseExportReq - (*MetricsBundlePurchaseExportResp)(nil), // 176: bundle.MetricsBundlePurchaseExportResp - (*MetricsBundlePurchaseItem)(nil), // 177: bundle.MetricsBundlePurchaseItem - (*MetricsArtistAccountExportReq)(nil), // 178: bundle.MetricsArtistAccountExportReq - (*MetricsArtistAccountExportResp)(nil), // 179: bundle.MetricsArtistAccountExportResp - (*MetricsArtistAccountExportItem)(nil), // 180: bundle.MetricsArtistAccountExportItem - (*MetricsVideoSubmitExportReq)(nil), // 181: bundle.MetricsVideoSubmitExportReq - (*MetricsVideoSubmitExportResp)(nil), // 182: bundle.MetricsVideoSubmitExportResp - (*MetricsVideoSubmitExportItem)(nil), // 183: bundle.MetricsVideoSubmitExportItem - (*MetricsBalanceDetailExportReq)(nil), // 184: bundle.MetricsBalanceDetailExportReq - (*CustomerListRequest)(nil), // 185: bundle.CustomerListRequest - (*CustomerListResponse)(nil), // 186: bundle.CustomerListResponse - (*CustomerDetailRequest)(nil), // 187: bundle.CustomerDetailRequest - (*CustomerDetailResponse)(nil), // 188: bundle.CustomerDetailResponse - (*CustomerUpdateRequest)(nil), // 189: bundle.CustomerUpdateRequest - (*CustomerInfo)(nil), // 190: bundle.CustomerInfo - (*Customer)(nil), // 191: bundle.Customer - (*ReferralPersonListRequest)(nil), // 192: bundle.ReferralPersonListRequest - (*ReferralPersonListResponse)(nil), // 193: bundle.ReferralPersonListResponse - (*ContractUpdateRequest)(nil), // 194: bundle.ContractUpdateRequest - (*ContractListRequest)(nil), // 195: bundle.ContractListRequest - (*ContractListResponse)(nil), // 196: bundle.ContractListResponse - (*ContractDetailRequest)(nil), // 197: bundle.ContractDetailRequest - (*ContractDetailResponse)(nil), // 198: bundle.ContractDetailResponse - (*GetDevelopmentCyclesByContractUUIDRequest)(nil), // 199: bundle.GetDevelopmentCyclesByContractUUIDRequest - (*GetDevelopmentCyclesByContractUUIDResponse)(nil), // 200: bundle.GetDevelopmentCyclesByContractUUIDResponse - (*GetPaymentCyclesByContractUUIDRequest)(nil), // 201: bundle.GetPaymentCyclesByContractUUIDRequest - (*GetPaymentCyclesByContractUUIDResponse)(nil), // 202: bundle.GetPaymentCyclesByContractUUIDResponse - (*AttachmentItem)(nil), // 203: bundle.AttachmentItem - (*ContractInfo)(nil), // 204: bundle.ContractInfo - (*Contract)(nil), // 205: bundle.Contract - (*ContractPaymentCycle)(nil), // 206: bundle.ContractPaymentCycle - (*DevelopmentCycle)(nil), // 207: bundle.DevelopmentCycle - (*CreateInvoiceReq)(nil), // 208: bundle.CreateInvoiceReq - (*CreateInvoiceResp)(nil), // 209: bundle.CreateInvoiceResp - (*CreatePaperInvoiceAddressReq)(nil), // 210: bundle.CreatePaperInvoiceAddressReq - (*CreatePaperInvoiceAddressResp)(nil), // 211: bundle.CreatePaperInvoiceAddressResp - (*InvoiceInfo)(nil), // 212: bundle.InvoiceInfo - (*GetInvoiceListReq)(nil), // 213: bundle.GetInvoiceListReq - (*GetInvoiceListResp)(nil), // 214: bundle.GetInvoiceListResp - (*UpdateInvoiceExpressInfoReq)(nil), // 215: bundle.UpdateInvoiceExpressInfoReq - (*UpdateInvoiceExpressInfoResp)(nil), // 216: bundle.UpdateInvoiceExpressInfoResp - (*GetInvoiceExpressInfoReq)(nil), // 217: bundle.GetInvoiceExpressInfoReq - (*GetInvoiceExpressInfoResp)(nil), // 218: bundle.GetInvoiceExpressInfoResp - (*GetOrderInfoByOrderNoReq)(nil), // 219: bundle.GetOrderInfoByOrderNoReq - (*GetOrderInfoByOrderNoResp)(nil), // 220: bundle.GetOrderInfoByOrderNoResp - (*WorkCastInfo)(nil), // 221: bundle.WorkCastInfo - (*ExportWorkCastInfoReq)(nil), // 222: bundle.ExportWorkCastInfoReq - (*ExportWorkCastInfoResp)(nil), // 223: bundle.ExportWorkCastInfoResp - (*OrderInfoByOrderUuidRequest)(nil), // 224: bundle.OrderInfoByOrderUuidRequest - (*GetInvoiceInfoByOrderNoReq)(nil), // 225: bundle.GetInvoiceInfoByOrderNoReq - (*InvoiceInfoByOrderNo)(nil), // 226: bundle.InvoiceInfoByOrderNo - (*GetInvoiceInfoByOrderNoResp)(nil), // 227: bundle.GetInvoiceInfoByOrderNoResp - (*GetLastInvoiceNoReq)(nil), // 228: bundle.GetLastInvoiceNoReq - (*GetLastInvoiceNoResp)(nil), // 229: bundle.GetLastInvoiceNoResp - (*UpdataInvoiceInfoReq)(nil), // 230: bundle.UpdataInvoiceInfoReq - (*UpdataInvoiceInfoResp)(nil), // 231: bundle.UpdataInvoiceInfoResp - (*SendQuestionnaireSurveyRequest)(nil), // 232: bundle.SendQuestionnaireSurveyRequest - (*SendQuestionnaireSurveyResponse)(nil), // 233: bundle.SendQuestionnaireSurveyResponse - (*GetQuestionnaireSurveyInfoRequest)(nil), // 234: bundle.GetQuestionnaireSurveyInfoRequest - (*SurveyBundleInfo)(nil), // 235: bundle.SurveyBundleInfo - (*GetQuestionnaireSurveyInfoResponse)(nil), // 236: bundle.GetQuestionnaireSurveyInfoResponse - (*SurveyAnswer)(nil), // 237: bundle.SurveyAnswer - (*SurveyFeedback)(nil), // 238: bundle.SurveyFeedback - (*CreateQuestionnaireSurveyAnswerRequest)(nil), // 239: bundle.CreateQuestionnaireSurveyAnswerRequest - (*CreateQuestionnaireSurveyAnswerResponse)(nil), // 240: bundle.CreateQuestionnaireSurveyAnswerResponse - (*GetQuestionnaireSurveyListRequest)(nil), // 241: bundle.GetQuestionnaireSurveyListRequest - (*SurveyListInfo)(nil), // 242: bundle.SurveyListInfo - (*GetQuestionnaireSurveyListResponse)(nil), // 243: bundle.GetQuestionnaireSurveyListResponse - (*GetUserOrderListRequest)(nil), // 244: bundle.GetUserOrderListRequest - (*GetUserOrderListResponse)(nil), // 245: bundle.GetUserOrderListResponse - (*UserOrderDetail)(nil), // 246: bundle.UserOrderDetail - (*OrderValueAddDetail)(nil), // 247: bundle.OrderValueAddDetail + (*PayLaterBundleBalanceExportResp)(nil), // 85: bundle.PayLaterBundleBalanceExportResp + (*GetBundleBalanceListResp)(nil), // 86: bundle.GetBundleBalanceListResp + (*CreateBundleBalanceReq)(nil), // 87: bundle.CreateBundleBalanceReq + (*CreateBundleBalanceResp)(nil), // 88: bundle.CreateBundleBalanceResp + (*AddBundleBalanceReq)(nil), // 89: bundle.AddBundleBalanceReq + (*AddBundleBalanceResp)(nil), // 90: bundle.AddBundleBalanceResp + (*GetUsedRecordListReq)(nil), // 91: bundle.GetUsedRecordListReq + (*GetUsedRecordListResp)(nil), // 92: bundle.GetUsedRecordListResp + (*WorkCastItem)(nil), // 93: bundle.WorkCastItem + (*GetImageWorkDetailReq)(nil), // 94: bundle.GetImageWorkDetailReq + (*GetVedioWorkDetailReq)(nil), // 95: bundle.GetVedioWorkDetailReq + (*GetImageWorkDetailResp)(nil), // 96: bundle.GetImageWorkDetailResp + (*GetVedioeWorkDetailResp)(nil), // 97: bundle.GetVedioeWorkDetailResp + (*ToBeComfirmedWorksReq)(nil), // 98: bundle.ToBeComfirmedWorksReq + (*WorkItem)(nil), // 99: bundle.workItem + (*ToBeComfirmedWorksResp)(nil), // 100: bundle.ToBeComfirmedWorksResp + (*GetBundleBalanceByUserIdReq)(nil), // 101: bundle.GetBundleBalanceByUserIdReq + (*GetBundleBalanceByUserIdResp)(nil), // 102: bundle.GetBundleBalanceByUserIdResp + (*GetBundleOrderListByUserIdReq)(nil), // 103: bundle.GetBundleOrderListByUserIdReq + (*BalanceOrderItem)(nil), // 104: bundle.BalanceOrderItem + (*GetBundleOrderListByUserIdResp)(nil), // 105: bundle.GetBundleOrderListByUserIdResp + (*GetBundleBalanceByOrderUUIDReq)(nil), // 106: bundle.GetBundleBalanceByOrderUUIDReq + (*GetBundleBalanceByOrderUUIDResp)(nil), // 107: bundle.GetBundleBalanceByOrderUUIDResp + (*OnlyAddValueListByOrderNoRequest)(nil), // 108: bundle.OnlyAddValueListByOrderNoRequest + (*OnlyAddValueListByOrderNoResp)(nil), // 109: bundle.OnlyAddValueListByOrderNoResp + (*AddBundleInfo)(nil), // 110: bundle.AddBundleInfo + (*UpdateStatusAndPayTimeBySerialNumber)(nil), // 111: bundle.UpdateStatusAndPayTimeBySerialNumber + (*ConfirmWorkReq)(nil), // 112: bundle.ConfirmWorkReq + (*ConfirmWorkResp)(nil), // 113: bundle.ConfirmWorkResp + (*ConfirmWorkItem)(nil), // 114: bundle.ConfirmWorkItem + (*GetWaitConfirmWorkListReq)(nil), // 115: bundle.GetWaitConfirmWorkListReq + (*GetWaitConfirmWorkListResp)(nil), // 116: bundle.GetWaitConfirmWorkListResp + (*AutoCreateUserAndOrderRequest)(nil), // 117: bundle.AutoCreateUserAndOrderRequest + (*UnfinishedInfos)(nil), // 118: bundle.UnfinishedInfos + (*UnfinishedInfo)(nil), // 119: bundle.UnfinishedInfo + (*SoftDeleteUnfinishedInfoRequest)(nil), // 120: bundle.SoftDeleteUnfinishedInfoRequest + (*BundleActivateReq)(nil), // 121: bundle.BundleActivateReq + (*BundleActivateResp)(nil), // 122: bundle.BundleActivateResp + (*TaskQueryRequest)(nil), // 123: bundle.TaskQueryRequest + (*TaskQueryResponse)(nil), // 124: bundle.TaskQueryResponse + (*TaskManagementInfo)(nil), // 125: bundle.TaskManagementInfo + (*TaskAssignRequest)(nil), // 126: bundle.TaskAssignRequest + (*UpdatePendingCountRequest)(nil), // 127: bundle.UpdatePendingCountRequest + (*AddHiddenTaskAssigneeRequest)(nil), // 128: bundle.AddHiddenTaskAssigneeRequest + (*RecentAssignRecordsRequest)(nil), // 129: bundle.RecentAssignRecordsRequest + (*RecentAssigneeItem)(nil), // 130: bundle.RecentAssigneeItem + (*RecentAssignRecordsResponse)(nil), // 131: bundle.RecentAssignRecordsResponse + (*EmployeeTaskQueryRequest)(nil), // 132: bundle.EmployeeTaskQueryRequest + (*EmployeeTaskQueryResponse)(nil), // 133: bundle.EmployeeTaskQueryResponse + (*TaskAssignRecordInfo)(nil), // 134: bundle.TaskAssignRecordInfo + (*BatchAssignTaskItem)(nil), // 135: bundle.BatchAssignTaskItem + (*BatchAssignTaskRequest)(nil), // 136: bundle.BatchAssignTaskRequest + (*CompleteTaskManuallyRequest)(nil), // 137: bundle.CompleteTaskManuallyRequest + (*TerminateTaskByUUIDRequest)(nil), // 138: bundle.TerminateTaskByUUIDRequest + (*BatchTerminateTaskRequest)(nil), // 139: bundle.BatchTerminateTaskRequest + (*RevertTaskCompletionByUUIDItemRequest)(nil), // 140: bundle.RevertTaskCompletionByUUIDItemRequest + (*GetTaskActualStatusByUUIDRequest)(nil), // 141: bundle.GetTaskActualStatusByUUIDRequest + (*GetTaskActualStatusByUUIDResponse)(nil), // 142: bundle.GetTaskActualStatusByUUIDResponse + (*UpdateTaskProgressRequest)(nil), // 143: bundle.UpdateTaskProgressRequest + (*TaskAssignRecordsQueryRequest)(nil), // 144: bundle.TaskAssignRecordsQueryRequest + (*ComResponse)(nil), // 145: bundle.ComResponse + (*TaskAssignRecordsQueryResponse)(nil), // 146: bundle.TaskAssignRecordsQueryResponse + (*TaskAssignRecordsSummary)(nil), // 147: bundle.TaskAssignRecordsSummary + (*ArtistUploadStatsItem)(nil), // 148: bundle.ArtistUploadStatsItem + (*ArtistUploadStatsResponse)(nil), // 149: bundle.ArtistUploadStatsResponse + (*PendingUploadBreakdownRequest)(nil), // 150: bundle.PendingUploadBreakdownRequest + (*PendingUploadBreakdownItem)(nil), // 151: bundle.PendingUploadBreakdownItem + (*PendingUploadBreakdownResponse)(nil), // 152: bundle.PendingUploadBreakdownResponse + (*PendingAssignRequest)(nil), // 153: bundle.PendingAssignRequest + (*PendingAssignItem)(nil), // 154: bundle.PendingAssignItem + (*PendingAssignResponse)(nil), // 155: bundle.PendingAssignResponse + (*ArtistBundleBalanceRequest)(nil), // 156: bundle.ArtistBundleBalanceRequest + (*ArtistBundleBalanceResponse)(nil), // 157: bundle.ArtistBundleBalanceResponse + (*SetBundleBalanceLayoutReq)(nil), // 158: bundle.SetBundleBalanceLayoutReq + (*SetBundleBalanceLayoutResp)(nil), // 159: bundle.SetBundleBalanceLayoutResp + (*GetBundleBalanceLayoutReq)(nil), // 160: bundle.GetBundleBalanceLayoutReq + (*GetBundleBalanceLayoutResp)(nil), // 161: bundle.GetBundleBalanceLayoutResp + (*GetPendingTaskLayoutReq)(nil), // 162: bundle.GetPendingTaskLayoutReq + (*GetPendingTaskLayoutResp)(nil), // 163: bundle.GetPendingTaskLayoutResp + (*SetPendingTaskLayoutReq)(nil), // 164: bundle.SetPendingTaskLayoutReq + (*SetPendingTaskLayoutResp)(nil), // 165: bundle.SetPendingTaskLayoutResp + (*TaskWorkLogQueryRequest)(nil), // 166: bundle.TaskWorkLogQueryRequest + (*TaskWorkLogInfo)(nil), // 167: bundle.TaskWorkLogInfo + (*TaskWorkLogQueryResponse)(nil), // 168: bundle.TaskWorkLogQueryResponse + (*CreateTaskWorkLogRequest)(nil), // 169: bundle.CreateTaskWorkLogRequest + (*MetricsBusinessReq)(nil), // 170: bundle.MetricsBusinessReq + (*MetricsBusinessResp)(nil), // 171: bundle.MetricsBusinessResp + (*MetricsOperatingCreateReq)(nil), // 172: bundle.MetricsOperatingCreateReq + (*MetricsOperatingCreateResp)(nil), // 173: bundle.MetricsOperatingCreateResp + (*MetricsOperatingStatusReq)(nil), // 174: bundle.MetricsOperatingStatusReq + (*MetricsOperatingStatusResp)(nil), // 175: bundle.MetricsOperatingStatusResp + (*MetricsBundlePurchaseExportReq)(nil), // 176: bundle.MetricsBundlePurchaseExportReq + (*MetricsBundlePurchaseExportResp)(nil), // 177: bundle.MetricsBundlePurchaseExportResp + (*MetricsBundlePurchaseItem)(nil), // 178: bundle.MetricsBundlePurchaseItem + (*MetricsArtistAccountExportReq)(nil), // 179: bundle.MetricsArtistAccountExportReq + (*MetricsArtistAccountExportResp)(nil), // 180: bundle.MetricsArtistAccountExportResp + (*MetricsArtistAccountExportItem)(nil), // 181: bundle.MetricsArtistAccountExportItem + (*MetricsVideoSubmitExportReq)(nil), // 182: bundle.MetricsVideoSubmitExportReq + (*MetricsVideoSubmitExportResp)(nil), // 183: bundle.MetricsVideoSubmitExportResp + (*MetricsVideoSubmitExportItem)(nil), // 184: bundle.MetricsVideoSubmitExportItem + (*MetricsBalanceDetailExportReq)(nil), // 185: bundle.MetricsBalanceDetailExportReq + (*CustomerListRequest)(nil), // 186: bundle.CustomerListRequest + (*CustomerListResponse)(nil), // 187: bundle.CustomerListResponse + (*CustomerDetailRequest)(nil), // 188: bundle.CustomerDetailRequest + (*CustomerDetailResponse)(nil), // 189: bundle.CustomerDetailResponse + (*CustomerUpdateRequest)(nil), // 190: bundle.CustomerUpdateRequest + (*CustomerInfo)(nil), // 191: bundle.CustomerInfo + (*Customer)(nil), // 192: bundle.Customer + (*ReferralPersonListRequest)(nil), // 193: bundle.ReferralPersonListRequest + (*ReferralPersonListResponse)(nil), // 194: bundle.ReferralPersonListResponse + (*ContractUpdateRequest)(nil), // 195: bundle.ContractUpdateRequest + (*ContractListRequest)(nil), // 196: bundle.ContractListRequest + (*ContractListResponse)(nil), // 197: bundle.ContractListResponse + (*ContractDetailRequest)(nil), // 198: bundle.ContractDetailRequest + (*ContractDetailResponse)(nil), // 199: bundle.ContractDetailResponse + (*GetDevelopmentCyclesByContractUUIDRequest)(nil), // 200: bundle.GetDevelopmentCyclesByContractUUIDRequest + (*GetDevelopmentCyclesByContractUUIDResponse)(nil), // 201: bundle.GetDevelopmentCyclesByContractUUIDResponse + (*GetPaymentCyclesByContractUUIDRequest)(nil), // 202: bundle.GetPaymentCyclesByContractUUIDRequest + (*GetPaymentCyclesByContractUUIDResponse)(nil), // 203: bundle.GetPaymentCyclesByContractUUIDResponse + (*AttachmentItem)(nil), // 204: bundle.AttachmentItem + (*ContractInfo)(nil), // 205: bundle.ContractInfo + (*Contract)(nil), // 206: bundle.Contract + (*ContractPaymentCycle)(nil), // 207: bundle.ContractPaymentCycle + (*DevelopmentCycle)(nil), // 208: bundle.DevelopmentCycle + (*CreateInvoiceReq)(nil), // 209: bundle.CreateInvoiceReq + (*CreateInvoiceResp)(nil), // 210: bundle.CreateInvoiceResp + (*CreatePaperInvoiceAddressReq)(nil), // 211: bundle.CreatePaperInvoiceAddressReq + (*CreatePaperInvoiceAddressResp)(nil), // 212: bundle.CreatePaperInvoiceAddressResp + (*InvoiceInfo)(nil), // 213: bundle.InvoiceInfo + (*GetInvoiceListReq)(nil), // 214: bundle.GetInvoiceListReq + (*GetInvoiceListResp)(nil), // 215: bundle.GetInvoiceListResp + (*UpdateInvoiceExpressInfoReq)(nil), // 216: bundle.UpdateInvoiceExpressInfoReq + (*UpdateInvoiceExpressInfoResp)(nil), // 217: bundle.UpdateInvoiceExpressInfoResp + (*GetInvoiceExpressInfoReq)(nil), // 218: bundle.GetInvoiceExpressInfoReq + (*GetInvoiceExpressInfoResp)(nil), // 219: bundle.GetInvoiceExpressInfoResp + (*GetOrderInfoByOrderNoReq)(nil), // 220: bundle.GetOrderInfoByOrderNoReq + (*GetOrderInfoByOrderNoResp)(nil), // 221: bundle.GetOrderInfoByOrderNoResp + (*WorkCastInfo)(nil), // 222: bundle.WorkCastInfo + (*ExportWorkCastInfoReq)(nil), // 223: bundle.ExportWorkCastInfoReq + (*ExportWorkCastInfoResp)(nil), // 224: bundle.ExportWorkCastInfoResp + (*OrderInfoByOrderUuidRequest)(nil), // 225: bundle.OrderInfoByOrderUuidRequest + (*GetInvoiceInfoByOrderNoReq)(nil), // 226: bundle.GetInvoiceInfoByOrderNoReq + (*InvoiceInfoByOrderNo)(nil), // 227: bundle.InvoiceInfoByOrderNo + (*GetInvoiceInfoByOrderNoResp)(nil), // 228: bundle.GetInvoiceInfoByOrderNoResp + (*GetLastInvoiceNoReq)(nil), // 229: bundle.GetLastInvoiceNoReq + (*GetLastInvoiceNoResp)(nil), // 230: bundle.GetLastInvoiceNoResp + (*UpdataInvoiceInfoReq)(nil), // 231: bundle.UpdataInvoiceInfoReq + (*UpdataInvoiceInfoResp)(nil), // 232: bundle.UpdataInvoiceInfoResp + (*SendQuestionnaireSurveyRequest)(nil), // 233: bundle.SendQuestionnaireSurveyRequest + (*SendQuestionnaireSurveyResponse)(nil), // 234: bundle.SendQuestionnaireSurveyResponse + (*GetQuestionnaireSurveyInfoRequest)(nil), // 235: bundle.GetQuestionnaireSurveyInfoRequest + (*SurveyBundleInfo)(nil), // 236: bundle.SurveyBundleInfo + (*GetQuestionnaireSurveyInfoResponse)(nil), // 237: bundle.GetQuestionnaireSurveyInfoResponse + (*SurveyAnswer)(nil), // 238: bundle.SurveyAnswer + (*SurveyFeedback)(nil), // 239: bundle.SurveyFeedback + (*CreateQuestionnaireSurveyAnswerRequest)(nil), // 240: bundle.CreateQuestionnaireSurveyAnswerRequest + (*CreateQuestionnaireSurveyAnswerResponse)(nil), // 241: bundle.CreateQuestionnaireSurveyAnswerResponse + (*GetQuestionnaireSurveyListRequest)(nil), // 242: bundle.GetQuestionnaireSurveyListRequest + (*SurveyListInfo)(nil), // 243: bundle.SurveyListInfo + (*GetQuestionnaireSurveyListResponse)(nil), // 244: bundle.GetQuestionnaireSurveyListResponse + (*GetUserOrderListRequest)(nil), // 245: bundle.GetUserOrderListRequest + (*GetUserOrderListResponse)(nil), // 246: bundle.GetUserOrderListResponse + (*UserOrderDetail)(nil), // 247: bundle.UserOrderDetail + (*OrderValueAddDetail)(nil), // 248: bundle.OrderValueAddDetail } var file_pb_bundle_proto_depIdxs = []int32{ 4, // 0: bundle.QueryTheOrderSnapshotInformationResp.bundleOrder:type_name -> bundle.ServiceInformation @@ -29292,303 +29371,306 @@ var file_pb_bundle_proto_depIdxs = []int32{ 75, // 25: bundle.BundleExtendRecordsListResponse.data:type_name -> bundle.BundleExtendRecordItem 78, // 26: bundle.GetPayLaterBundleBalanceListResp.data:type_name -> bundle.PayLaterBundleBalanceItem 82, // 27: bundle.BundleBalanceExportResp.data:type_name -> bundle.BundleBalanceExportItem - 81, // 28: bundle.GetBundleBalanceListResp.data:type_name -> bundle.BundleBalanceItem - 92, // 29: bundle.GetUsedRecordListResp.data:type_name -> bundle.WorkCastItem - 98, // 30: bundle.ToBeComfirmedWorksResp.data:type_name -> bundle.workItem - 103, // 31: bundle.GetBundleOrderListByUserIdResp.orderItem:type_name -> bundle.BalanceOrderItem - 109, // 32: bundle.OnlyAddValueListByOrderNoResp.AddBundleInfos:type_name -> bundle.AddBundleInfo - 113, // 33: bundle.GetWaitConfirmWorkListResp.data:type_name -> bundle.ConfirmWorkItem - 118, // 34: bundle.UnfinishedInfos.unfinishedInfos:type_name -> bundle.UnfinishedInfo - 0, // 35: bundle.TaskQueryRequest.bundleTaskType:type_name -> bundle.BundleTaskType - 124, // 36: bundle.TaskQueryResponse.tasks:type_name -> bundle.TaskManagementInfo - 0, // 37: bundle.TaskAssignRequest.bundleTaskType:type_name -> bundle.BundleTaskType - 129, // 38: bundle.RecentAssignRecordsResponse.operatorList:type_name -> bundle.RecentAssigneeItem - 0, // 39: bundle.EmployeeTaskQueryRequest.bundleTaskType:type_name -> bundle.BundleTaskType - 133, // 40: bundle.EmployeeTaskQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo - 0, // 41: bundle.TaskAssignRecordInfo.bundleTaskType:type_name -> bundle.BundleTaskType - 0, // 42: bundle.BatchAssignTaskItem.bundleTaskType:type_name -> bundle.BundleTaskType - 134, // 43: bundle.BatchAssignTaskRequest.items:type_name -> bundle.BatchAssignTaskItem - 0, // 44: bundle.TaskAssignRecordsQueryRequest.bundleTaskType:type_name -> bundle.BundleTaskType - 133, // 45: bundle.TaskAssignRecordsQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo - 146, // 46: bundle.TaskAssignRecordsQueryResponse.summary:type_name -> bundle.TaskAssignRecordsSummary - 147, // 47: bundle.ArtistUploadStatsResponse.items:type_name -> bundle.ArtistUploadStatsItem - 150, // 48: bundle.PendingUploadBreakdownResponse.items:type_name -> bundle.PendingUploadBreakdownItem - 0, // 49: bundle.PendingAssignRequest.bundleTaskType:type_name -> bundle.BundleTaskType - 153, // 50: bundle.PendingAssignResponse.items:type_name -> bundle.PendingAssignItem - 0, // 51: bundle.TaskWorkLogQueryRequest.bundleTaskType:type_name -> bundle.BundleTaskType - 0, // 52: bundle.TaskWorkLogInfo.bundleTaskType:type_name -> bundle.BundleTaskType - 166, // 53: bundle.TaskWorkLogQueryResponse.records:type_name -> bundle.TaskWorkLogInfo - 0, // 54: bundle.CreateTaskWorkLogRequest.bundleTaskType:type_name -> bundle.BundleTaskType - 177, // 55: bundle.MetricsBundlePurchaseExportResp.data:type_name -> bundle.MetricsBundlePurchaseItem - 180, // 56: bundle.MetricsArtistAccountExportResp.data:type_name -> bundle.MetricsArtistAccountExportItem - 183, // 57: bundle.MetricsVideoSubmitExportResp.data:type_name -> bundle.MetricsVideoSubmitExportItem - 190, // 58: bundle.CustomerListResponse.list:type_name -> bundle.CustomerInfo - 191, // 59: bundle.CustomerDetailResponse.customer:type_name -> bundle.Customer - 191, // 60: bundle.CustomerUpdateRequest.Customer:type_name -> bundle.Customer - 205, // 61: bundle.ContractUpdateRequest.contract:type_name -> bundle.Contract - 204, // 62: bundle.ContractListResponse.list:type_name -> bundle.ContractInfo - 205, // 63: bundle.ContractDetailResponse.contract:type_name -> bundle.Contract - 207, // 64: bundle.GetDevelopmentCyclesByContractUUIDResponse.list:type_name -> bundle.DevelopmentCycle - 206, // 65: bundle.GetPaymentCyclesByContractUUIDResponse.list:type_name -> bundle.ContractPaymentCycle - 203, // 66: bundle.ContractInfo.contractAttachments:type_name -> bundle.AttachmentItem - 203, // 67: bundle.ContractInfo.otherAttachments:type_name -> bundle.AttachmentItem - 203, // 68: bundle.Contract.contractAttachments:type_name -> bundle.AttachmentItem - 203, // 69: bundle.Contract.otherAttachments:type_name -> bundle.AttachmentItem - 206, // 70: bundle.Contract.paymentCycles:type_name -> bundle.ContractPaymentCycle - 207, // 71: bundle.Contract.developmentCycles:type_name -> bundle.DevelopmentCycle - 203, // 72: bundle.DevelopmentCycle.attachments:type_name -> bundle.AttachmentItem - 212, // 73: bundle.GetInvoiceListResp.data:type_name -> bundle.InvoiceInfo - 221, // 74: bundle.ExportWorkCastInfoResp.data:type_name -> bundle.WorkCastInfo - 226, // 75: bundle.GetInvoiceInfoByOrderNoResp.data:type_name -> bundle.InvoiceInfoByOrderNo - 235, // 76: bundle.GetQuestionnaireSurveyInfoResponse.bundleInfo:type_name -> bundle.SurveyBundleInfo - 237, // 77: bundle.CreateQuestionnaireSurveyAnswerRequest.surveyAnswer:type_name -> bundle.SurveyAnswer - 238, // 78: bundle.CreateQuestionnaireSurveyAnswerRequest.surveyFeedback:type_name -> bundle.SurveyFeedback - 242, // 79: bundle.GetQuestionnaireSurveyListResponse.surveyList:type_name -> bundle.SurveyListInfo - 246, // 80: bundle.GetUserOrderListResponse.list:type_name -> bundle.UserOrderDetail - 247, // 81: bundle.UserOrderDetail.valueAddList:type_name -> bundle.OrderValueAddDetail - 20, // 82: bundle.Bundle.CreateBundle:input_type -> bundle.BundleProfile - 20, // 83: bundle.Bundle.UpdateBundle:input_type -> bundle.BundleProfile - 26, // 84: bundle.Bundle.DeleteBundle:input_type -> bundle.DelBundleRequest - 30, // 85: bundle.Bundle.HandShelf:input_type -> bundle.HandShelfRequest - 20, // 86: bundle.Bundle.SaveBundle:input_type -> bundle.BundleProfile - 27, // 87: bundle.Bundle.BundleListV2:input_type -> bundle.BundleListRequest - 29, // 88: bundle.Bundle.BundleDetailV2:input_type -> bundle.BundleDetailRequest - 27, // 89: bundle.Bundle.BundleListH5V2:input_type -> bundle.BundleListRequest - 29, // 90: bundle.Bundle.BundleLangDetailV2:input_type -> bundle.BundleDetailRequest - 27, // 91: bundle.Bundle.BundleList:input_type -> bundle.BundleListRequest - 29, // 92: bundle.Bundle.BundleDetail:input_type -> bundle.BundleDetailRequest - 12, // 93: bundle.Bundle.CreateOrderRecord:input_type -> bundle.OrderCreateRecord - 33, // 94: bundle.Bundle.UpdateOrderRecord:input_type -> bundle.OrderRecord - 33, // 95: bundle.Bundle.UpdateOrderRecordByOrderNo:input_type -> bundle.OrderRecord - 46, // 96: bundle.Bundle.OrderRecordsList:input_type -> bundle.OrderRecordsRequest - 48, // 97: bundle.Bundle.OrderRecordsDetail:input_type -> bundle.OrderRecordsDetailRequest - 57, // 98: bundle.Bundle.UpdateFinancialConfirmationStatus:input_type -> bundle.FinancialConfirmationRequest - 43, // 99: bundle.Bundle.CreateOrderAddRecord:input_type -> bundle.OrderAddRecord - 33, // 100: bundle.Bundle.PackagePriceAndTime:input_type -> bundle.OrderRecord - 14, // 101: bundle.Bundle.OrderRecordsListV2:input_type -> bundle.OrderRecordsRequestV2 - 10, // 102: bundle.Bundle.OrderListByOrderNo:input_type -> bundle.OrderInfoByOrderNoRequest - 107, // 103: bundle.Bundle.OnlyAddValueListByOrderNo:input_type -> bundle.OnlyAddValueListByOrderNoRequest - 5, // 104: bundle.Bundle.ReSignTheContract:input_type -> bundle.ReSignTheContractRequest - 1, // 105: bundle.Bundle.GetInEffectOrderRecord:input_type -> bundle.GetInEffectOrderRecordRequest - 34, // 106: bundle.Bundle.CheckOrderEligibility:input_type -> bundle.CheckOrderEligibilityRequest - 36, // 107: bundle.Bundle.MarkOverdueOrders:input_type -> bundle.MarkOverdueOrdersRequest - 244, // 108: bundle.Bundle.GetUserOrderList:input_type -> bundle.GetUserOrderListRequest - 38, // 109: bundle.Bundle.UpdateOrderExpiration:input_type -> bundle.UpdateOrderExpirationRequest - 40, // 110: bundle.Bundle.CompleteExpiredOrders:input_type -> bundle.CompleteExpiredOrdersRequest - 51, // 111: bundle.Bundle.CreateValueAddBundle:input_type -> bundle.CreateValueAddBundleRequest - 53, // 112: bundle.Bundle.ValueAddBundleList:input_type -> bundle.ValueAddBundleListRequest - 55, // 113: bundle.Bundle.ValueAddBundleDetail:input_type -> bundle.ValueAddBundleDetailRequest - 59, // 114: bundle.Bundle.SaveValueAddService:input_type -> bundle.ValueAddServiceLang - 61, // 115: bundle.Bundle.ValueAddServiceList:input_type -> bundle.ValueAddServiceListRequest - 63, // 116: bundle.Bundle.ValueAddServiceDetail:input_type -> bundle.ValueAddServiceDetailRequest - 63, // 117: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:input_type -> bundle.ValueAddServiceDetailRequest - 65, // 118: bundle.Bundle.CalculatePrice:input_type -> bundle.CalculatePriceRequest - 67, // 119: bundle.Bundle.BatchGetValueAddServiceLang:input_type -> bundle.BatchGetValueAddServiceLangRequest - 6, // 120: bundle.Bundle.DeleteValueAddService:input_type -> bundle.DeleteValueAddServiceRequest - 69, // 121: bundle.Bundle.UpdateBundleBalance:input_type -> bundle.UpdateBundleBalanceReq - 71, // 122: bundle.Bundle.BundleExtend:input_type -> bundle.BundleExtendRequest - 73, // 123: bundle.Bundle.BundleExtendRecordsList:input_type -> bundle.BundleExtendRecordsListRequest - 76, // 124: bundle.Bundle.GetBundleBalanceList:input_type -> bundle.GetBundleBalanceListReq - 77, // 125: bundle.Bundle.GetPayLaterBundleBalanceList:input_type -> bundle.GetPayLaterBundleBalanceListReq - 100, // 126: bundle.Bundle.GetBundleBalanceByUserId:input_type -> bundle.GetBundleBalanceByUserIdReq - 102, // 127: bundle.Bundle.GetBundleOrderListByUserId:input_type -> bundle.GetBundleOrderListByUserIdReq - 105, // 128: bundle.Bundle.GetBundleBalanceByOrderUUID:input_type -> bundle.GetBundleBalanceByOrderUUIDReq - 86, // 129: bundle.Bundle.CreateBundleBalance:input_type -> bundle.CreateBundleBalanceReq - 88, // 130: bundle.Bundle.AddBundleBalance:input_type -> bundle.AddBundleBalanceReq - 120, // 131: bundle.Bundle.BundleActivate:input_type -> bundle.BundleActivateReq - 83, // 132: bundle.Bundle.BundleBalanceExport:input_type -> bundle.BundleBalanceExportReq - 159, // 133: bundle.Bundle.GetBundleBalanceLayout:input_type -> bundle.GetBundleBalanceLayoutReq - 157, // 134: bundle.Bundle.SetBundleBalanceLayout:input_type -> bundle.SetBundleBalanceLayoutReq - 90, // 135: bundle.Bundle.GetUsedRecordList:input_type -> bundle.GetUsedRecordListReq - 93, // 136: bundle.Bundle.GetImageWorkDetail:input_type -> bundle.GetImageWorkDetailReq - 94, // 137: bundle.Bundle.GetVedioWorkDetail:input_type -> bundle.GetVedioWorkDetailReq - 97, // 138: bundle.Bundle.ToBeComfirmedWorks:input_type -> bundle.ToBeComfirmedWorksReq - 111, // 139: bundle.Bundle.ConfirmWork:input_type -> bundle.ConfirmWorkReq - 114, // 140: bundle.Bundle.GetWaitConfirmWorkList:input_type -> bundle.GetWaitConfirmWorkListReq - 7, // 141: bundle.Bundle.GetReconciliationList:input_type -> bundle.GetReconciliationListReq - 9, // 142: bundle.Bundle.CreateReconciliation:input_type -> bundle.ReconciliationInfo - 9, // 143: bundle.Bundle.UpdateReconciliation:input_type -> bundle.ReconciliationInfo - 110, // 144: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:input_type -> bundle.UpdateStatusAndPayTimeBySerialNumber - 116, // 145: bundle.Bundle.ListUnfinishedInfos:input_type -> bundle.AutoCreateUserAndOrderRequest - 119, // 146: bundle.Bundle.SoftDeleteUnfinishedInfo:input_type -> bundle.SoftDeleteUnfinishedInfoRequest - 122, // 147: bundle.Bundle.GetPendingTaskList:input_type -> bundle.TaskQueryRequest - 125, // 148: bundle.Bundle.AssignTask:input_type -> bundle.TaskAssignRequest - 126, // 149: bundle.Bundle.UpdatePendingCount:input_type -> bundle.UpdatePendingCountRequest - 128, // 150: bundle.Bundle.GetRecentAssignRecords:input_type -> bundle.RecentAssignRecordsRequest - 131, // 151: bundle.Bundle.GetEmployeeAssignedTasks:input_type -> bundle.EmployeeTaskQueryRequest - 136, // 152: bundle.Bundle.CompleteTaskManually:input_type -> bundle.CompleteTaskManuallyRequest - 142, // 153: bundle.Bundle.UpdateTaskProgress:input_type -> bundle.UpdateTaskProgressRequest - 143, // 154: bundle.Bundle.GetTaskAssignRecordsList:input_type -> bundle.TaskAssignRecordsQueryRequest - 155, // 155: bundle.Bundle.GetArtistBundleBalance:input_type -> bundle.ArtistBundleBalanceRequest - 137, // 156: bundle.Bundle.TerminateTaskByUUID:input_type -> bundle.TerminateTaskByUUIDRequest - 140, // 157: bundle.Bundle.GetTaskActualStatusByUUID:input_type -> bundle.GetTaskActualStatusByUUIDRequest - 135, // 158: bundle.Bundle.BatchAssignTask:input_type -> bundle.BatchAssignTaskRequest - 138, // 159: bundle.Bundle.BatchTerminateTask:input_type -> bundle.BatchTerminateTaskRequest - 122, // 160: bundle.Bundle.GetArtistUploadStatsList:input_type -> bundle.TaskQueryRequest - 165, // 161: bundle.Bundle.GetTaskWorkLogList:input_type -> bundle.TaskWorkLogQueryRequest - 168, // 162: bundle.Bundle.CreateTaskWorkLog:input_type -> bundle.CreateTaskWorkLogRequest - 169, // 163: bundle.Bundle.MetricsBusiness:input_type -> bundle.MetricsBusinessReq - 171, // 164: bundle.Bundle.MetricsOperatingCreate:input_type -> bundle.MetricsOperatingCreateReq - 173, // 165: bundle.Bundle.MetricsOperatingStatus:input_type -> bundle.MetricsOperatingStatusReq - 175, // 166: bundle.Bundle.MetricsBundlePurchaseExport:input_type -> bundle.MetricsBundlePurchaseExportReq - 178, // 167: bundle.Bundle.MetricsArtistAccountExport:input_type -> bundle.MetricsArtistAccountExportReq - 181, // 168: bundle.Bundle.MetricsVideoSubmitExport:input_type -> bundle.MetricsVideoSubmitExportReq - 161, // 169: bundle.Bundle.GetPendingTaskLayout:input_type -> bundle.GetPendingTaskLayoutReq - 163, // 170: bundle.Bundle.SetPendingTaskLayout:input_type -> bundle.SetPendingTaskLayoutReq - 149, // 171: bundle.Bundle.GetPendingUploadBreakdown:input_type -> bundle.PendingUploadBreakdownRequest - 152, // 172: bundle.Bundle.GetPendingAssign:input_type -> bundle.PendingAssignRequest - 139, // 173: bundle.Bundle.RevertTaskCompletionByUUIDItem:input_type -> bundle.RevertTaskCompletionByUUIDItemRequest - 127, // 174: bundle.Bundle.AddHiddenTaskAssignee:input_type -> bundle.AddHiddenTaskAssigneeRequest - 2, // 175: bundle.Bundle.QueryTheOrderSnapshotInformation:input_type -> bundle.QueryTheOrderSnapshotInformationReq - 208, // 176: bundle.Bundle.CreateInvoice:input_type -> bundle.CreateInvoiceReq - 210, // 177: bundle.Bundle.CreatePaperInvoiceAddress:input_type -> bundle.CreatePaperInvoiceAddressReq - 213, // 178: bundle.Bundle.GetInvoiceList:input_type -> bundle.GetInvoiceListReq - 215, // 179: bundle.Bundle.UpdateInvoiceExpressInfo:input_type -> bundle.UpdateInvoiceExpressInfoReq - 217, // 180: bundle.Bundle.GetInvoiceExpressInfo:input_type -> bundle.GetInvoiceExpressInfoReq - 219, // 181: bundle.Bundle.GetOrderInfoByOrderNo:input_type -> bundle.GetOrderInfoByOrderNoReq - 225, // 182: bundle.Bundle.GetInvoiceInfoByOrderNo:input_type -> bundle.GetInvoiceInfoByOrderNoReq - 228, // 183: bundle.Bundle.GetLastInvoiceNo:input_type -> bundle.GetLastInvoiceNoReq - 230, // 184: bundle.Bundle.UpdataInvoiceInfo:input_type -> bundle.UpdataInvoiceInfoReq - 222, // 185: bundle.Bundle.ExportWorkCastInfo:input_type -> bundle.ExportWorkCastInfoReq - 185, // 186: bundle.Bundle.GetCustomerList:input_type -> bundle.CustomerListRequest - 187, // 187: bundle.Bundle.GetCustomerDetail:input_type -> bundle.CustomerDetailRequest - 189, // 188: bundle.Bundle.UpdateCustomer:input_type -> bundle.CustomerUpdateRequest - 192, // 189: bundle.Bundle.GetReferralPersonList:input_type -> bundle.ReferralPersonListRequest - 194, // 190: bundle.Bundle.UpdateContract:input_type -> bundle.ContractUpdateRequest - 195, // 191: bundle.Bundle.GetContractList:input_type -> bundle.ContractListRequest - 197, // 192: bundle.Bundle.GetContractDetail:input_type -> bundle.ContractDetailRequest - 199, // 193: bundle.Bundle.GetDevelopmentCyclesByContractUUID:input_type -> bundle.GetDevelopmentCyclesByContractUUIDRequest - 201, // 194: bundle.Bundle.GetPaymentCyclesByContractUUID:input_type -> bundle.GetPaymentCyclesByContractUUIDRequest - 33, // 195: bundle.Bundle.UpdateOrderRecordByOrderUuid:input_type -> bundle.OrderRecord - 224, // 196: bundle.Bundle.OrderListByOrderUuid:input_type -> bundle.OrderInfoByOrderUuidRequest - 232, // 197: bundle.Bundle.SendQuestionnaireSurvey:input_type -> bundle.SendQuestionnaireSurveyRequest - 234, // 198: bundle.Bundle.GetQuestionnaireSurveyInfo:input_type -> bundle.GetQuestionnaireSurveyInfoRequest - 239, // 199: bundle.Bundle.CreateQuestionnaireSurveyAnswer:input_type -> bundle.CreateQuestionnaireSurveyAnswerRequest - 241, // 200: bundle.Bundle.GetQuestionnaireSurveyList:input_type -> bundle.GetQuestionnaireSurveyListRequest - 19, // 201: bundle.Bundle.CreateBundle:output_type -> bundle.CommonResponse - 19, // 202: bundle.Bundle.UpdateBundle:output_type -> bundle.CommonResponse - 19, // 203: bundle.Bundle.DeleteBundle:output_type -> bundle.CommonResponse - 19, // 204: bundle.Bundle.HandShelf:output_type -> bundle.CommonResponse - 23, // 205: bundle.Bundle.SaveBundle:output_type -> bundle.SaveResponse - 28, // 206: bundle.Bundle.BundleListV2:output_type -> bundle.BundleListResponse - 32, // 207: bundle.Bundle.BundleDetailV2:output_type -> bundle.BundleDetailResponseV2 - 28, // 208: bundle.Bundle.BundleListH5V2:output_type -> bundle.BundleListResponse - 21, // 209: bundle.Bundle.BundleLangDetailV2:output_type -> bundle.BundleProfileLang - 28, // 210: bundle.Bundle.BundleList:output_type -> bundle.BundleListResponse - 31, // 211: bundle.Bundle.BundleDetail:output_type -> bundle.BundleDetailResponse - 19, // 212: bundle.Bundle.CreateOrderRecord:output_type -> bundle.CommonResponse - 19, // 213: bundle.Bundle.UpdateOrderRecord:output_type -> bundle.CommonResponse - 19, // 214: bundle.Bundle.UpdateOrderRecordByOrderNo:output_type -> bundle.CommonResponse - 47, // 215: bundle.Bundle.OrderRecordsList:output_type -> bundle.OrderRecordsResponse - 49, // 216: bundle.Bundle.OrderRecordsDetail:output_type -> bundle.OrderRecordsDetailResponse - 19, // 217: bundle.Bundle.UpdateFinancialConfirmationStatus:output_type -> bundle.CommonResponse - 19, // 218: bundle.Bundle.CreateOrderAddRecord:output_type -> bundle.CommonResponse - 18, // 219: bundle.Bundle.PackagePriceAndTime:output_type -> bundle.PackagePriceAndTimeResponse - 15, // 220: bundle.Bundle.OrderRecordsListV2:output_type -> bundle.OrderRecordsResponseV2 - 11, // 221: bundle.Bundle.OrderListByOrderNo:output_type -> bundle.OrderInfoByOrderNoResp - 108, // 222: bundle.Bundle.OnlyAddValueListByOrderNo:output_type -> bundle.OnlyAddValueListByOrderNoResp - 19, // 223: bundle.Bundle.ReSignTheContract:output_type -> bundle.CommonResponse - 33, // 224: bundle.Bundle.GetInEffectOrderRecord:output_type -> bundle.OrderRecord - 35, // 225: bundle.Bundle.CheckOrderEligibility:output_type -> bundle.CheckOrderEligibilityResponse - 37, // 226: bundle.Bundle.MarkOverdueOrders:output_type -> bundle.MarkOverdueOrdersResponse - 245, // 227: bundle.Bundle.GetUserOrderList:output_type -> bundle.GetUserOrderListResponse - 39, // 228: bundle.Bundle.UpdateOrderExpiration:output_type -> bundle.UpdateOrderExpirationResponse - 41, // 229: bundle.Bundle.CompleteExpiredOrders:output_type -> bundle.CompleteExpiredOrdersResponse - 52, // 230: bundle.Bundle.CreateValueAddBundle:output_type -> bundle.CreateValueAddBundleResponse - 54, // 231: bundle.Bundle.ValueAddBundleList:output_type -> bundle.ValueAddBundleListResponse - 56, // 232: bundle.Bundle.ValueAddBundleDetail:output_type -> bundle.ValueAddBundleDetailResponse - 23, // 233: bundle.Bundle.SaveValueAddService:output_type -> bundle.SaveResponse - 62, // 234: bundle.Bundle.ValueAddServiceList:output_type -> bundle.ValueAddServiceListResponse - 64, // 235: bundle.Bundle.ValueAddServiceDetail:output_type -> bundle.ValueAddServiceDetailResponse - 59, // 236: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:output_type -> bundle.ValueAddServiceLang - 66, // 237: bundle.Bundle.CalculatePrice:output_type -> bundle.CalculatePriceResponse - 68, // 238: bundle.Bundle.BatchGetValueAddServiceLang:output_type -> bundle.BatchGetValueAddServiceLangResponse - 19, // 239: bundle.Bundle.DeleteValueAddService:output_type -> bundle.CommonResponse - 70, // 240: bundle.Bundle.UpdateBundleBalance:output_type -> bundle.UpdateBundleBalanceResp - 72, // 241: bundle.Bundle.BundleExtend:output_type -> bundle.BundleExtendResponse - 74, // 242: bundle.Bundle.BundleExtendRecordsList:output_type -> bundle.BundleExtendRecordsListResponse - 85, // 243: bundle.Bundle.GetBundleBalanceList:output_type -> bundle.GetBundleBalanceListResp - 79, // 244: bundle.Bundle.GetPayLaterBundleBalanceList:output_type -> bundle.GetPayLaterBundleBalanceListResp - 101, // 245: bundle.Bundle.GetBundleBalanceByUserId:output_type -> bundle.GetBundleBalanceByUserIdResp - 104, // 246: bundle.Bundle.GetBundleOrderListByUserId:output_type -> bundle.GetBundleOrderListByUserIdResp - 106, // 247: bundle.Bundle.GetBundleBalanceByOrderUUID:output_type -> bundle.GetBundleBalanceByOrderUUIDResp - 87, // 248: bundle.Bundle.CreateBundleBalance:output_type -> bundle.CreateBundleBalanceResp - 89, // 249: bundle.Bundle.AddBundleBalance:output_type -> bundle.AddBundleBalanceResp - 121, // 250: bundle.Bundle.BundleActivate:output_type -> bundle.BundleActivateResp - 84, // 251: bundle.Bundle.BundleBalanceExport:output_type -> bundle.BundleBalanceExportResp - 160, // 252: bundle.Bundle.GetBundleBalanceLayout:output_type -> bundle.GetBundleBalanceLayoutResp - 158, // 253: bundle.Bundle.SetBundleBalanceLayout:output_type -> bundle.SetBundleBalanceLayoutResp - 91, // 254: bundle.Bundle.GetUsedRecordList:output_type -> bundle.GetUsedRecordListResp - 95, // 255: bundle.Bundle.GetImageWorkDetail:output_type -> bundle.GetImageWorkDetailResp - 96, // 256: bundle.Bundle.GetVedioWorkDetail:output_type -> bundle.GetVedioeWorkDetailResp - 99, // 257: bundle.Bundle.ToBeComfirmedWorks:output_type -> bundle.ToBeComfirmedWorksResp - 112, // 258: bundle.Bundle.ConfirmWork:output_type -> bundle.ConfirmWorkResp - 115, // 259: bundle.Bundle.GetWaitConfirmWorkList:output_type -> bundle.GetWaitConfirmWorkListResp - 8, // 260: bundle.Bundle.GetReconciliationList:output_type -> bundle.GetReconciliationListResp - 19, // 261: bundle.Bundle.CreateReconciliation:output_type -> bundle.CommonResponse - 19, // 262: bundle.Bundle.UpdateReconciliation:output_type -> bundle.CommonResponse - 19, // 263: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:output_type -> bundle.CommonResponse - 117, // 264: bundle.Bundle.ListUnfinishedInfos:output_type -> bundle.UnfinishedInfos - 19, // 265: bundle.Bundle.SoftDeleteUnfinishedInfo:output_type -> bundle.CommonResponse - 123, // 266: bundle.Bundle.GetPendingTaskList:output_type -> bundle.TaskQueryResponse - 19, // 267: bundle.Bundle.AssignTask:output_type -> bundle.CommonResponse - 19, // 268: bundle.Bundle.UpdatePendingCount:output_type -> bundle.CommonResponse - 130, // 269: bundle.Bundle.GetRecentAssignRecords:output_type -> bundle.RecentAssignRecordsResponse - 132, // 270: bundle.Bundle.GetEmployeeAssignedTasks:output_type -> bundle.EmployeeTaskQueryResponse - 19, // 271: bundle.Bundle.CompleteTaskManually:output_type -> bundle.CommonResponse - 19, // 272: bundle.Bundle.UpdateTaskProgress:output_type -> bundle.CommonResponse - 145, // 273: bundle.Bundle.GetTaskAssignRecordsList:output_type -> bundle.TaskAssignRecordsQueryResponse - 156, // 274: bundle.Bundle.GetArtistBundleBalance:output_type -> bundle.ArtistBundleBalanceResponse - 144, // 275: bundle.Bundle.TerminateTaskByUUID:output_type -> bundle.ComResponse - 141, // 276: bundle.Bundle.GetTaskActualStatusByUUID:output_type -> bundle.GetTaskActualStatusByUUIDResponse - 144, // 277: bundle.Bundle.BatchAssignTask:output_type -> bundle.ComResponse - 144, // 278: bundle.Bundle.BatchTerminateTask:output_type -> bundle.ComResponse - 148, // 279: bundle.Bundle.GetArtistUploadStatsList:output_type -> bundle.ArtistUploadStatsResponse - 167, // 280: bundle.Bundle.GetTaskWorkLogList:output_type -> bundle.TaskWorkLogQueryResponse - 19, // 281: bundle.Bundle.CreateTaskWorkLog:output_type -> bundle.CommonResponse - 170, // 282: bundle.Bundle.MetricsBusiness:output_type -> bundle.MetricsBusinessResp - 172, // 283: bundle.Bundle.MetricsOperatingCreate:output_type -> bundle.MetricsOperatingCreateResp - 174, // 284: bundle.Bundle.MetricsOperatingStatus:output_type -> bundle.MetricsOperatingStatusResp - 176, // 285: bundle.Bundle.MetricsBundlePurchaseExport:output_type -> bundle.MetricsBundlePurchaseExportResp - 179, // 286: bundle.Bundle.MetricsArtistAccountExport:output_type -> bundle.MetricsArtistAccountExportResp - 182, // 287: bundle.Bundle.MetricsVideoSubmitExport:output_type -> bundle.MetricsVideoSubmitExportResp - 162, // 288: bundle.Bundle.GetPendingTaskLayout:output_type -> bundle.GetPendingTaskLayoutResp - 164, // 289: bundle.Bundle.SetPendingTaskLayout:output_type -> bundle.SetPendingTaskLayoutResp - 151, // 290: bundle.Bundle.GetPendingUploadBreakdown:output_type -> bundle.PendingUploadBreakdownResponse - 154, // 291: bundle.Bundle.GetPendingAssign:output_type -> bundle.PendingAssignResponse - 144, // 292: bundle.Bundle.RevertTaskCompletionByUUIDItem:output_type -> bundle.ComResponse - 144, // 293: bundle.Bundle.AddHiddenTaskAssignee:output_type -> bundle.ComResponse - 3, // 294: bundle.Bundle.QueryTheOrderSnapshotInformation:output_type -> bundle.QueryTheOrderSnapshotInformationResp - 209, // 295: bundle.Bundle.CreateInvoice:output_type -> bundle.CreateInvoiceResp - 211, // 296: bundle.Bundle.CreatePaperInvoiceAddress:output_type -> bundle.CreatePaperInvoiceAddressResp - 214, // 297: bundle.Bundle.GetInvoiceList:output_type -> bundle.GetInvoiceListResp - 216, // 298: bundle.Bundle.UpdateInvoiceExpressInfo:output_type -> bundle.UpdateInvoiceExpressInfoResp - 218, // 299: bundle.Bundle.GetInvoiceExpressInfo:output_type -> bundle.GetInvoiceExpressInfoResp - 220, // 300: bundle.Bundle.GetOrderInfoByOrderNo:output_type -> bundle.GetOrderInfoByOrderNoResp - 227, // 301: bundle.Bundle.GetInvoiceInfoByOrderNo:output_type -> bundle.GetInvoiceInfoByOrderNoResp - 229, // 302: bundle.Bundle.GetLastInvoiceNo:output_type -> bundle.GetLastInvoiceNoResp - 231, // 303: bundle.Bundle.UpdataInvoiceInfo:output_type -> bundle.UpdataInvoiceInfoResp - 223, // 304: bundle.Bundle.ExportWorkCastInfo:output_type -> bundle.ExportWorkCastInfoResp - 186, // 305: bundle.Bundle.GetCustomerList:output_type -> bundle.CustomerListResponse - 188, // 306: bundle.Bundle.GetCustomerDetail:output_type -> bundle.CustomerDetailResponse - 144, // 307: bundle.Bundle.UpdateCustomer:output_type -> bundle.ComResponse - 193, // 308: bundle.Bundle.GetReferralPersonList:output_type -> bundle.ReferralPersonListResponse - 144, // 309: bundle.Bundle.UpdateContract:output_type -> bundle.ComResponse - 196, // 310: bundle.Bundle.GetContractList:output_type -> bundle.ContractListResponse - 198, // 311: bundle.Bundle.GetContractDetail:output_type -> bundle.ContractDetailResponse - 200, // 312: bundle.Bundle.GetDevelopmentCyclesByContractUUID:output_type -> bundle.GetDevelopmentCyclesByContractUUIDResponse - 202, // 313: bundle.Bundle.GetPaymentCyclesByContractUUID:output_type -> bundle.GetPaymentCyclesByContractUUIDResponse - 19, // 314: bundle.Bundle.UpdateOrderRecordByOrderUuid:output_type -> bundle.CommonResponse - 11, // 315: bundle.Bundle.OrderListByOrderUuid:output_type -> bundle.OrderInfoByOrderNoResp - 233, // 316: bundle.Bundle.SendQuestionnaireSurvey:output_type -> bundle.SendQuestionnaireSurveyResponse - 236, // 317: bundle.Bundle.GetQuestionnaireSurveyInfo:output_type -> bundle.GetQuestionnaireSurveyInfoResponse - 240, // 318: bundle.Bundle.CreateQuestionnaireSurveyAnswer:output_type -> bundle.CreateQuestionnaireSurveyAnswerResponse - 243, // 319: bundle.Bundle.GetQuestionnaireSurveyList:output_type -> bundle.GetQuestionnaireSurveyListResponse - 201, // [201:320] is the sub-list for method output_type - 82, // [82:201] is the sub-list for method input_type - 82, // [82:82] is the sub-list for extension type_name - 82, // [82:82] is the sub-list for extension extendee - 0, // [0:82] is the sub-list for field type_name + 78, // 28: bundle.PayLaterBundleBalanceExportResp.data:type_name -> bundle.PayLaterBundleBalanceItem + 81, // 29: bundle.GetBundleBalanceListResp.data:type_name -> bundle.BundleBalanceItem + 93, // 30: bundle.GetUsedRecordListResp.data:type_name -> bundle.WorkCastItem + 99, // 31: bundle.ToBeComfirmedWorksResp.data:type_name -> bundle.workItem + 104, // 32: bundle.GetBundleOrderListByUserIdResp.orderItem:type_name -> bundle.BalanceOrderItem + 110, // 33: bundle.OnlyAddValueListByOrderNoResp.AddBundleInfos:type_name -> bundle.AddBundleInfo + 114, // 34: bundle.GetWaitConfirmWorkListResp.data:type_name -> bundle.ConfirmWorkItem + 119, // 35: bundle.UnfinishedInfos.unfinishedInfos:type_name -> bundle.UnfinishedInfo + 0, // 36: bundle.TaskQueryRequest.bundleTaskType:type_name -> bundle.BundleTaskType + 125, // 37: bundle.TaskQueryResponse.tasks:type_name -> bundle.TaskManagementInfo + 0, // 38: bundle.TaskAssignRequest.bundleTaskType:type_name -> bundle.BundleTaskType + 130, // 39: bundle.RecentAssignRecordsResponse.operatorList:type_name -> bundle.RecentAssigneeItem + 0, // 40: bundle.EmployeeTaskQueryRequest.bundleTaskType:type_name -> bundle.BundleTaskType + 134, // 41: bundle.EmployeeTaskQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo + 0, // 42: bundle.TaskAssignRecordInfo.bundleTaskType:type_name -> bundle.BundleTaskType + 0, // 43: bundle.BatchAssignTaskItem.bundleTaskType:type_name -> bundle.BundleTaskType + 135, // 44: bundle.BatchAssignTaskRequest.items:type_name -> bundle.BatchAssignTaskItem + 0, // 45: bundle.TaskAssignRecordsQueryRequest.bundleTaskType:type_name -> bundle.BundleTaskType + 134, // 46: bundle.TaskAssignRecordsQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo + 147, // 47: bundle.TaskAssignRecordsQueryResponse.summary:type_name -> bundle.TaskAssignRecordsSummary + 148, // 48: bundle.ArtistUploadStatsResponse.items:type_name -> bundle.ArtistUploadStatsItem + 151, // 49: bundle.PendingUploadBreakdownResponse.items:type_name -> bundle.PendingUploadBreakdownItem + 0, // 50: bundle.PendingAssignRequest.bundleTaskType:type_name -> bundle.BundleTaskType + 154, // 51: bundle.PendingAssignResponse.items:type_name -> bundle.PendingAssignItem + 0, // 52: bundle.TaskWorkLogQueryRequest.bundleTaskType:type_name -> bundle.BundleTaskType + 0, // 53: bundle.TaskWorkLogInfo.bundleTaskType:type_name -> bundle.BundleTaskType + 167, // 54: bundle.TaskWorkLogQueryResponse.records:type_name -> bundle.TaskWorkLogInfo + 0, // 55: bundle.CreateTaskWorkLogRequest.bundleTaskType:type_name -> bundle.BundleTaskType + 178, // 56: bundle.MetricsBundlePurchaseExportResp.data:type_name -> bundle.MetricsBundlePurchaseItem + 181, // 57: bundle.MetricsArtistAccountExportResp.data:type_name -> bundle.MetricsArtistAccountExportItem + 184, // 58: bundle.MetricsVideoSubmitExportResp.data:type_name -> bundle.MetricsVideoSubmitExportItem + 191, // 59: bundle.CustomerListResponse.list:type_name -> bundle.CustomerInfo + 192, // 60: bundle.CustomerDetailResponse.customer:type_name -> bundle.Customer + 192, // 61: bundle.CustomerUpdateRequest.Customer:type_name -> bundle.Customer + 206, // 62: bundle.ContractUpdateRequest.contract:type_name -> bundle.Contract + 205, // 63: bundle.ContractListResponse.list:type_name -> bundle.ContractInfo + 206, // 64: bundle.ContractDetailResponse.contract:type_name -> bundle.Contract + 208, // 65: bundle.GetDevelopmentCyclesByContractUUIDResponse.list:type_name -> bundle.DevelopmentCycle + 207, // 66: bundle.GetPaymentCyclesByContractUUIDResponse.list:type_name -> bundle.ContractPaymentCycle + 204, // 67: bundle.ContractInfo.contractAttachments:type_name -> bundle.AttachmentItem + 204, // 68: bundle.ContractInfo.otherAttachments:type_name -> bundle.AttachmentItem + 204, // 69: bundle.Contract.contractAttachments:type_name -> bundle.AttachmentItem + 204, // 70: bundle.Contract.otherAttachments:type_name -> bundle.AttachmentItem + 207, // 71: bundle.Contract.paymentCycles:type_name -> bundle.ContractPaymentCycle + 208, // 72: bundle.Contract.developmentCycles:type_name -> bundle.DevelopmentCycle + 204, // 73: bundle.DevelopmentCycle.attachments:type_name -> bundle.AttachmentItem + 213, // 74: bundle.GetInvoiceListResp.data:type_name -> bundle.InvoiceInfo + 222, // 75: bundle.ExportWorkCastInfoResp.data:type_name -> bundle.WorkCastInfo + 227, // 76: bundle.GetInvoiceInfoByOrderNoResp.data:type_name -> bundle.InvoiceInfoByOrderNo + 236, // 77: bundle.GetQuestionnaireSurveyInfoResponse.bundleInfo:type_name -> bundle.SurveyBundleInfo + 238, // 78: bundle.CreateQuestionnaireSurveyAnswerRequest.surveyAnswer:type_name -> bundle.SurveyAnswer + 239, // 79: bundle.CreateQuestionnaireSurveyAnswerRequest.surveyFeedback:type_name -> bundle.SurveyFeedback + 243, // 80: bundle.GetQuestionnaireSurveyListResponse.surveyList:type_name -> bundle.SurveyListInfo + 247, // 81: bundle.GetUserOrderListResponse.list:type_name -> bundle.UserOrderDetail + 248, // 82: bundle.UserOrderDetail.valueAddList:type_name -> bundle.OrderValueAddDetail + 20, // 83: bundle.Bundle.CreateBundle:input_type -> bundle.BundleProfile + 20, // 84: bundle.Bundle.UpdateBundle:input_type -> bundle.BundleProfile + 26, // 85: bundle.Bundle.DeleteBundle:input_type -> bundle.DelBundleRequest + 30, // 86: bundle.Bundle.HandShelf:input_type -> bundle.HandShelfRequest + 20, // 87: bundle.Bundle.SaveBundle:input_type -> bundle.BundleProfile + 27, // 88: bundle.Bundle.BundleListV2:input_type -> bundle.BundleListRequest + 29, // 89: bundle.Bundle.BundleDetailV2:input_type -> bundle.BundleDetailRequest + 27, // 90: bundle.Bundle.BundleListH5V2:input_type -> bundle.BundleListRequest + 29, // 91: bundle.Bundle.BundleLangDetailV2:input_type -> bundle.BundleDetailRequest + 27, // 92: bundle.Bundle.BundleList:input_type -> bundle.BundleListRequest + 29, // 93: bundle.Bundle.BundleDetail:input_type -> bundle.BundleDetailRequest + 12, // 94: bundle.Bundle.CreateOrderRecord:input_type -> bundle.OrderCreateRecord + 33, // 95: bundle.Bundle.UpdateOrderRecord:input_type -> bundle.OrderRecord + 33, // 96: bundle.Bundle.UpdateOrderRecordByOrderNo:input_type -> bundle.OrderRecord + 46, // 97: bundle.Bundle.OrderRecordsList:input_type -> bundle.OrderRecordsRequest + 48, // 98: bundle.Bundle.OrderRecordsDetail:input_type -> bundle.OrderRecordsDetailRequest + 57, // 99: bundle.Bundle.UpdateFinancialConfirmationStatus:input_type -> bundle.FinancialConfirmationRequest + 43, // 100: bundle.Bundle.CreateOrderAddRecord:input_type -> bundle.OrderAddRecord + 33, // 101: bundle.Bundle.PackagePriceAndTime:input_type -> bundle.OrderRecord + 14, // 102: bundle.Bundle.OrderRecordsListV2:input_type -> bundle.OrderRecordsRequestV2 + 10, // 103: bundle.Bundle.OrderListByOrderNo:input_type -> bundle.OrderInfoByOrderNoRequest + 108, // 104: bundle.Bundle.OnlyAddValueListByOrderNo:input_type -> bundle.OnlyAddValueListByOrderNoRequest + 5, // 105: bundle.Bundle.ReSignTheContract:input_type -> bundle.ReSignTheContractRequest + 1, // 106: bundle.Bundle.GetInEffectOrderRecord:input_type -> bundle.GetInEffectOrderRecordRequest + 34, // 107: bundle.Bundle.CheckOrderEligibility:input_type -> bundle.CheckOrderEligibilityRequest + 36, // 108: bundle.Bundle.MarkOverdueOrders:input_type -> bundle.MarkOverdueOrdersRequest + 245, // 109: bundle.Bundle.GetUserOrderList:input_type -> bundle.GetUserOrderListRequest + 38, // 110: bundle.Bundle.UpdateOrderExpiration:input_type -> bundle.UpdateOrderExpirationRequest + 40, // 111: bundle.Bundle.CompleteExpiredOrders:input_type -> bundle.CompleteExpiredOrdersRequest + 51, // 112: bundle.Bundle.CreateValueAddBundle:input_type -> bundle.CreateValueAddBundleRequest + 53, // 113: bundle.Bundle.ValueAddBundleList:input_type -> bundle.ValueAddBundleListRequest + 55, // 114: bundle.Bundle.ValueAddBundleDetail:input_type -> bundle.ValueAddBundleDetailRequest + 59, // 115: bundle.Bundle.SaveValueAddService:input_type -> bundle.ValueAddServiceLang + 61, // 116: bundle.Bundle.ValueAddServiceList:input_type -> bundle.ValueAddServiceListRequest + 63, // 117: bundle.Bundle.ValueAddServiceDetail:input_type -> bundle.ValueAddServiceDetailRequest + 63, // 118: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:input_type -> bundle.ValueAddServiceDetailRequest + 65, // 119: bundle.Bundle.CalculatePrice:input_type -> bundle.CalculatePriceRequest + 67, // 120: bundle.Bundle.BatchGetValueAddServiceLang:input_type -> bundle.BatchGetValueAddServiceLangRequest + 6, // 121: bundle.Bundle.DeleteValueAddService:input_type -> bundle.DeleteValueAddServiceRequest + 69, // 122: bundle.Bundle.UpdateBundleBalance:input_type -> bundle.UpdateBundleBalanceReq + 71, // 123: bundle.Bundle.BundleExtend:input_type -> bundle.BundleExtendRequest + 73, // 124: bundle.Bundle.BundleExtendRecordsList:input_type -> bundle.BundleExtendRecordsListRequest + 76, // 125: bundle.Bundle.GetBundleBalanceList:input_type -> bundle.GetBundleBalanceListReq + 77, // 126: bundle.Bundle.GetPayLaterBundleBalanceList:input_type -> bundle.GetPayLaterBundleBalanceListReq + 101, // 127: bundle.Bundle.GetBundleBalanceByUserId:input_type -> bundle.GetBundleBalanceByUserIdReq + 103, // 128: bundle.Bundle.GetBundleOrderListByUserId:input_type -> bundle.GetBundleOrderListByUserIdReq + 106, // 129: bundle.Bundle.GetBundleBalanceByOrderUUID:input_type -> bundle.GetBundleBalanceByOrderUUIDReq + 87, // 130: bundle.Bundle.CreateBundleBalance:input_type -> bundle.CreateBundleBalanceReq + 89, // 131: bundle.Bundle.AddBundleBalance:input_type -> bundle.AddBundleBalanceReq + 121, // 132: bundle.Bundle.BundleActivate:input_type -> bundle.BundleActivateReq + 83, // 133: bundle.Bundle.BundleBalanceExport:input_type -> bundle.BundleBalanceExportReq + 83, // 134: bundle.Bundle.PayLaterBundleBalanceExport:input_type -> bundle.BundleBalanceExportReq + 160, // 135: bundle.Bundle.GetBundleBalanceLayout:input_type -> bundle.GetBundleBalanceLayoutReq + 158, // 136: bundle.Bundle.SetBundleBalanceLayout:input_type -> bundle.SetBundleBalanceLayoutReq + 91, // 137: bundle.Bundle.GetUsedRecordList:input_type -> bundle.GetUsedRecordListReq + 94, // 138: bundle.Bundle.GetImageWorkDetail:input_type -> bundle.GetImageWorkDetailReq + 95, // 139: bundle.Bundle.GetVedioWorkDetail:input_type -> bundle.GetVedioWorkDetailReq + 98, // 140: bundle.Bundle.ToBeComfirmedWorks:input_type -> bundle.ToBeComfirmedWorksReq + 112, // 141: bundle.Bundle.ConfirmWork:input_type -> bundle.ConfirmWorkReq + 115, // 142: bundle.Bundle.GetWaitConfirmWorkList:input_type -> bundle.GetWaitConfirmWorkListReq + 7, // 143: bundle.Bundle.GetReconciliationList:input_type -> bundle.GetReconciliationListReq + 9, // 144: bundle.Bundle.CreateReconciliation:input_type -> bundle.ReconciliationInfo + 9, // 145: bundle.Bundle.UpdateReconciliation:input_type -> bundle.ReconciliationInfo + 111, // 146: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:input_type -> bundle.UpdateStatusAndPayTimeBySerialNumber + 117, // 147: bundle.Bundle.ListUnfinishedInfos:input_type -> bundle.AutoCreateUserAndOrderRequest + 120, // 148: bundle.Bundle.SoftDeleteUnfinishedInfo:input_type -> bundle.SoftDeleteUnfinishedInfoRequest + 123, // 149: bundle.Bundle.GetPendingTaskList:input_type -> bundle.TaskQueryRequest + 126, // 150: bundle.Bundle.AssignTask:input_type -> bundle.TaskAssignRequest + 127, // 151: bundle.Bundle.UpdatePendingCount:input_type -> bundle.UpdatePendingCountRequest + 129, // 152: bundle.Bundle.GetRecentAssignRecords:input_type -> bundle.RecentAssignRecordsRequest + 132, // 153: bundle.Bundle.GetEmployeeAssignedTasks:input_type -> bundle.EmployeeTaskQueryRequest + 137, // 154: bundle.Bundle.CompleteTaskManually:input_type -> bundle.CompleteTaskManuallyRequest + 143, // 155: bundle.Bundle.UpdateTaskProgress:input_type -> bundle.UpdateTaskProgressRequest + 144, // 156: bundle.Bundle.GetTaskAssignRecordsList:input_type -> bundle.TaskAssignRecordsQueryRequest + 156, // 157: bundle.Bundle.GetArtistBundleBalance:input_type -> bundle.ArtistBundleBalanceRequest + 138, // 158: bundle.Bundle.TerminateTaskByUUID:input_type -> bundle.TerminateTaskByUUIDRequest + 141, // 159: bundle.Bundle.GetTaskActualStatusByUUID:input_type -> bundle.GetTaskActualStatusByUUIDRequest + 136, // 160: bundle.Bundle.BatchAssignTask:input_type -> bundle.BatchAssignTaskRequest + 139, // 161: bundle.Bundle.BatchTerminateTask:input_type -> bundle.BatchTerminateTaskRequest + 123, // 162: bundle.Bundle.GetArtistUploadStatsList:input_type -> bundle.TaskQueryRequest + 166, // 163: bundle.Bundle.GetTaskWorkLogList:input_type -> bundle.TaskWorkLogQueryRequest + 169, // 164: bundle.Bundle.CreateTaskWorkLog:input_type -> bundle.CreateTaskWorkLogRequest + 170, // 165: bundle.Bundle.MetricsBusiness:input_type -> bundle.MetricsBusinessReq + 172, // 166: bundle.Bundle.MetricsOperatingCreate:input_type -> bundle.MetricsOperatingCreateReq + 174, // 167: bundle.Bundle.MetricsOperatingStatus:input_type -> bundle.MetricsOperatingStatusReq + 176, // 168: bundle.Bundle.MetricsBundlePurchaseExport:input_type -> bundle.MetricsBundlePurchaseExportReq + 179, // 169: bundle.Bundle.MetricsArtistAccountExport:input_type -> bundle.MetricsArtistAccountExportReq + 182, // 170: bundle.Bundle.MetricsVideoSubmitExport:input_type -> bundle.MetricsVideoSubmitExportReq + 162, // 171: bundle.Bundle.GetPendingTaskLayout:input_type -> bundle.GetPendingTaskLayoutReq + 164, // 172: bundle.Bundle.SetPendingTaskLayout:input_type -> bundle.SetPendingTaskLayoutReq + 150, // 173: bundle.Bundle.GetPendingUploadBreakdown:input_type -> bundle.PendingUploadBreakdownRequest + 153, // 174: bundle.Bundle.GetPendingAssign:input_type -> bundle.PendingAssignRequest + 140, // 175: bundle.Bundle.RevertTaskCompletionByUUIDItem:input_type -> bundle.RevertTaskCompletionByUUIDItemRequest + 128, // 176: bundle.Bundle.AddHiddenTaskAssignee:input_type -> bundle.AddHiddenTaskAssigneeRequest + 2, // 177: bundle.Bundle.QueryTheOrderSnapshotInformation:input_type -> bundle.QueryTheOrderSnapshotInformationReq + 209, // 178: bundle.Bundle.CreateInvoice:input_type -> bundle.CreateInvoiceReq + 211, // 179: bundle.Bundle.CreatePaperInvoiceAddress:input_type -> bundle.CreatePaperInvoiceAddressReq + 214, // 180: bundle.Bundle.GetInvoiceList:input_type -> bundle.GetInvoiceListReq + 216, // 181: bundle.Bundle.UpdateInvoiceExpressInfo:input_type -> bundle.UpdateInvoiceExpressInfoReq + 218, // 182: bundle.Bundle.GetInvoiceExpressInfo:input_type -> bundle.GetInvoiceExpressInfoReq + 220, // 183: bundle.Bundle.GetOrderInfoByOrderNo:input_type -> bundle.GetOrderInfoByOrderNoReq + 226, // 184: bundle.Bundle.GetInvoiceInfoByOrderNo:input_type -> bundle.GetInvoiceInfoByOrderNoReq + 229, // 185: bundle.Bundle.GetLastInvoiceNo:input_type -> bundle.GetLastInvoiceNoReq + 231, // 186: bundle.Bundle.UpdataInvoiceInfo:input_type -> bundle.UpdataInvoiceInfoReq + 223, // 187: bundle.Bundle.ExportWorkCastInfo:input_type -> bundle.ExportWorkCastInfoReq + 186, // 188: bundle.Bundle.GetCustomerList:input_type -> bundle.CustomerListRequest + 188, // 189: bundle.Bundle.GetCustomerDetail:input_type -> bundle.CustomerDetailRequest + 190, // 190: bundle.Bundle.UpdateCustomer:input_type -> bundle.CustomerUpdateRequest + 193, // 191: bundle.Bundle.GetReferralPersonList:input_type -> bundle.ReferralPersonListRequest + 195, // 192: bundle.Bundle.UpdateContract:input_type -> bundle.ContractUpdateRequest + 196, // 193: bundle.Bundle.GetContractList:input_type -> bundle.ContractListRequest + 198, // 194: bundle.Bundle.GetContractDetail:input_type -> bundle.ContractDetailRequest + 200, // 195: bundle.Bundle.GetDevelopmentCyclesByContractUUID:input_type -> bundle.GetDevelopmentCyclesByContractUUIDRequest + 202, // 196: bundle.Bundle.GetPaymentCyclesByContractUUID:input_type -> bundle.GetPaymentCyclesByContractUUIDRequest + 33, // 197: bundle.Bundle.UpdateOrderRecordByOrderUuid:input_type -> bundle.OrderRecord + 225, // 198: bundle.Bundle.OrderListByOrderUuid:input_type -> bundle.OrderInfoByOrderUuidRequest + 233, // 199: bundle.Bundle.SendQuestionnaireSurvey:input_type -> bundle.SendQuestionnaireSurveyRequest + 235, // 200: bundle.Bundle.GetQuestionnaireSurveyInfo:input_type -> bundle.GetQuestionnaireSurveyInfoRequest + 240, // 201: bundle.Bundle.CreateQuestionnaireSurveyAnswer:input_type -> bundle.CreateQuestionnaireSurveyAnswerRequest + 242, // 202: bundle.Bundle.GetQuestionnaireSurveyList:input_type -> bundle.GetQuestionnaireSurveyListRequest + 19, // 203: bundle.Bundle.CreateBundle:output_type -> bundle.CommonResponse + 19, // 204: bundle.Bundle.UpdateBundle:output_type -> bundle.CommonResponse + 19, // 205: bundle.Bundle.DeleteBundle:output_type -> bundle.CommonResponse + 19, // 206: bundle.Bundle.HandShelf:output_type -> bundle.CommonResponse + 23, // 207: bundle.Bundle.SaveBundle:output_type -> bundle.SaveResponse + 28, // 208: bundle.Bundle.BundleListV2:output_type -> bundle.BundleListResponse + 32, // 209: bundle.Bundle.BundleDetailV2:output_type -> bundle.BundleDetailResponseV2 + 28, // 210: bundle.Bundle.BundleListH5V2:output_type -> bundle.BundleListResponse + 21, // 211: bundle.Bundle.BundleLangDetailV2:output_type -> bundle.BundleProfileLang + 28, // 212: bundle.Bundle.BundleList:output_type -> bundle.BundleListResponse + 31, // 213: bundle.Bundle.BundleDetail:output_type -> bundle.BundleDetailResponse + 19, // 214: bundle.Bundle.CreateOrderRecord:output_type -> bundle.CommonResponse + 19, // 215: bundle.Bundle.UpdateOrderRecord:output_type -> bundle.CommonResponse + 19, // 216: bundle.Bundle.UpdateOrderRecordByOrderNo:output_type -> bundle.CommonResponse + 47, // 217: bundle.Bundle.OrderRecordsList:output_type -> bundle.OrderRecordsResponse + 49, // 218: bundle.Bundle.OrderRecordsDetail:output_type -> bundle.OrderRecordsDetailResponse + 19, // 219: bundle.Bundle.UpdateFinancialConfirmationStatus:output_type -> bundle.CommonResponse + 19, // 220: bundle.Bundle.CreateOrderAddRecord:output_type -> bundle.CommonResponse + 18, // 221: bundle.Bundle.PackagePriceAndTime:output_type -> bundle.PackagePriceAndTimeResponse + 15, // 222: bundle.Bundle.OrderRecordsListV2:output_type -> bundle.OrderRecordsResponseV2 + 11, // 223: bundle.Bundle.OrderListByOrderNo:output_type -> bundle.OrderInfoByOrderNoResp + 109, // 224: bundle.Bundle.OnlyAddValueListByOrderNo:output_type -> bundle.OnlyAddValueListByOrderNoResp + 19, // 225: bundle.Bundle.ReSignTheContract:output_type -> bundle.CommonResponse + 33, // 226: bundle.Bundle.GetInEffectOrderRecord:output_type -> bundle.OrderRecord + 35, // 227: bundle.Bundle.CheckOrderEligibility:output_type -> bundle.CheckOrderEligibilityResponse + 37, // 228: bundle.Bundle.MarkOverdueOrders:output_type -> bundle.MarkOverdueOrdersResponse + 246, // 229: bundle.Bundle.GetUserOrderList:output_type -> bundle.GetUserOrderListResponse + 39, // 230: bundle.Bundle.UpdateOrderExpiration:output_type -> bundle.UpdateOrderExpirationResponse + 41, // 231: bundle.Bundle.CompleteExpiredOrders:output_type -> bundle.CompleteExpiredOrdersResponse + 52, // 232: bundle.Bundle.CreateValueAddBundle:output_type -> bundle.CreateValueAddBundleResponse + 54, // 233: bundle.Bundle.ValueAddBundleList:output_type -> bundle.ValueAddBundleListResponse + 56, // 234: bundle.Bundle.ValueAddBundleDetail:output_type -> bundle.ValueAddBundleDetailResponse + 23, // 235: bundle.Bundle.SaveValueAddService:output_type -> bundle.SaveResponse + 62, // 236: bundle.Bundle.ValueAddServiceList:output_type -> bundle.ValueAddServiceListResponse + 64, // 237: bundle.Bundle.ValueAddServiceDetail:output_type -> bundle.ValueAddServiceDetailResponse + 59, // 238: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:output_type -> bundle.ValueAddServiceLang + 66, // 239: bundle.Bundle.CalculatePrice:output_type -> bundle.CalculatePriceResponse + 68, // 240: bundle.Bundle.BatchGetValueAddServiceLang:output_type -> bundle.BatchGetValueAddServiceLangResponse + 19, // 241: bundle.Bundle.DeleteValueAddService:output_type -> bundle.CommonResponse + 70, // 242: bundle.Bundle.UpdateBundleBalance:output_type -> bundle.UpdateBundleBalanceResp + 72, // 243: bundle.Bundle.BundleExtend:output_type -> bundle.BundleExtendResponse + 74, // 244: bundle.Bundle.BundleExtendRecordsList:output_type -> bundle.BundleExtendRecordsListResponse + 86, // 245: bundle.Bundle.GetBundleBalanceList:output_type -> bundle.GetBundleBalanceListResp + 79, // 246: bundle.Bundle.GetPayLaterBundleBalanceList:output_type -> bundle.GetPayLaterBundleBalanceListResp + 102, // 247: bundle.Bundle.GetBundleBalanceByUserId:output_type -> bundle.GetBundleBalanceByUserIdResp + 105, // 248: bundle.Bundle.GetBundleOrderListByUserId:output_type -> bundle.GetBundleOrderListByUserIdResp + 107, // 249: bundle.Bundle.GetBundleBalanceByOrderUUID:output_type -> bundle.GetBundleBalanceByOrderUUIDResp + 88, // 250: bundle.Bundle.CreateBundleBalance:output_type -> bundle.CreateBundleBalanceResp + 90, // 251: bundle.Bundle.AddBundleBalance:output_type -> bundle.AddBundleBalanceResp + 122, // 252: bundle.Bundle.BundleActivate:output_type -> bundle.BundleActivateResp + 84, // 253: bundle.Bundle.BundleBalanceExport:output_type -> bundle.BundleBalanceExportResp + 85, // 254: bundle.Bundle.PayLaterBundleBalanceExport:output_type -> bundle.PayLaterBundleBalanceExportResp + 161, // 255: bundle.Bundle.GetBundleBalanceLayout:output_type -> bundle.GetBundleBalanceLayoutResp + 159, // 256: bundle.Bundle.SetBundleBalanceLayout:output_type -> bundle.SetBundleBalanceLayoutResp + 92, // 257: bundle.Bundle.GetUsedRecordList:output_type -> bundle.GetUsedRecordListResp + 96, // 258: bundle.Bundle.GetImageWorkDetail:output_type -> bundle.GetImageWorkDetailResp + 97, // 259: bundle.Bundle.GetVedioWorkDetail:output_type -> bundle.GetVedioeWorkDetailResp + 100, // 260: bundle.Bundle.ToBeComfirmedWorks:output_type -> bundle.ToBeComfirmedWorksResp + 113, // 261: bundle.Bundle.ConfirmWork:output_type -> bundle.ConfirmWorkResp + 116, // 262: bundle.Bundle.GetWaitConfirmWorkList:output_type -> bundle.GetWaitConfirmWorkListResp + 8, // 263: bundle.Bundle.GetReconciliationList:output_type -> bundle.GetReconciliationListResp + 19, // 264: bundle.Bundle.CreateReconciliation:output_type -> bundle.CommonResponse + 19, // 265: bundle.Bundle.UpdateReconciliation:output_type -> bundle.CommonResponse + 19, // 266: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:output_type -> bundle.CommonResponse + 118, // 267: bundle.Bundle.ListUnfinishedInfos:output_type -> bundle.UnfinishedInfos + 19, // 268: bundle.Bundle.SoftDeleteUnfinishedInfo:output_type -> bundle.CommonResponse + 124, // 269: bundle.Bundle.GetPendingTaskList:output_type -> bundle.TaskQueryResponse + 19, // 270: bundle.Bundle.AssignTask:output_type -> bundle.CommonResponse + 19, // 271: bundle.Bundle.UpdatePendingCount:output_type -> bundle.CommonResponse + 131, // 272: bundle.Bundle.GetRecentAssignRecords:output_type -> bundle.RecentAssignRecordsResponse + 133, // 273: bundle.Bundle.GetEmployeeAssignedTasks:output_type -> bundle.EmployeeTaskQueryResponse + 19, // 274: bundle.Bundle.CompleteTaskManually:output_type -> bundle.CommonResponse + 19, // 275: bundle.Bundle.UpdateTaskProgress:output_type -> bundle.CommonResponse + 146, // 276: bundle.Bundle.GetTaskAssignRecordsList:output_type -> bundle.TaskAssignRecordsQueryResponse + 157, // 277: bundle.Bundle.GetArtistBundleBalance:output_type -> bundle.ArtistBundleBalanceResponse + 145, // 278: bundle.Bundle.TerminateTaskByUUID:output_type -> bundle.ComResponse + 142, // 279: bundle.Bundle.GetTaskActualStatusByUUID:output_type -> bundle.GetTaskActualStatusByUUIDResponse + 145, // 280: bundle.Bundle.BatchAssignTask:output_type -> bundle.ComResponse + 145, // 281: bundle.Bundle.BatchTerminateTask:output_type -> bundle.ComResponse + 149, // 282: bundle.Bundle.GetArtistUploadStatsList:output_type -> bundle.ArtistUploadStatsResponse + 168, // 283: bundle.Bundle.GetTaskWorkLogList:output_type -> bundle.TaskWorkLogQueryResponse + 19, // 284: bundle.Bundle.CreateTaskWorkLog:output_type -> bundle.CommonResponse + 171, // 285: bundle.Bundle.MetricsBusiness:output_type -> bundle.MetricsBusinessResp + 173, // 286: bundle.Bundle.MetricsOperatingCreate:output_type -> bundle.MetricsOperatingCreateResp + 175, // 287: bundle.Bundle.MetricsOperatingStatus:output_type -> bundle.MetricsOperatingStatusResp + 177, // 288: bundle.Bundle.MetricsBundlePurchaseExport:output_type -> bundle.MetricsBundlePurchaseExportResp + 180, // 289: bundle.Bundle.MetricsArtistAccountExport:output_type -> bundle.MetricsArtistAccountExportResp + 183, // 290: bundle.Bundle.MetricsVideoSubmitExport:output_type -> bundle.MetricsVideoSubmitExportResp + 163, // 291: bundle.Bundle.GetPendingTaskLayout:output_type -> bundle.GetPendingTaskLayoutResp + 165, // 292: bundle.Bundle.SetPendingTaskLayout:output_type -> bundle.SetPendingTaskLayoutResp + 152, // 293: bundle.Bundle.GetPendingUploadBreakdown:output_type -> bundle.PendingUploadBreakdownResponse + 155, // 294: bundle.Bundle.GetPendingAssign:output_type -> bundle.PendingAssignResponse + 145, // 295: bundle.Bundle.RevertTaskCompletionByUUIDItem:output_type -> bundle.ComResponse + 145, // 296: bundle.Bundle.AddHiddenTaskAssignee:output_type -> bundle.ComResponse + 3, // 297: bundle.Bundle.QueryTheOrderSnapshotInformation:output_type -> bundle.QueryTheOrderSnapshotInformationResp + 210, // 298: bundle.Bundle.CreateInvoice:output_type -> bundle.CreateInvoiceResp + 212, // 299: bundle.Bundle.CreatePaperInvoiceAddress:output_type -> bundle.CreatePaperInvoiceAddressResp + 215, // 300: bundle.Bundle.GetInvoiceList:output_type -> bundle.GetInvoiceListResp + 217, // 301: bundle.Bundle.UpdateInvoiceExpressInfo:output_type -> bundle.UpdateInvoiceExpressInfoResp + 219, // 302: bundle.Bundle.GetInvoiceExpressInfo:output_type -> bundle.GetInvoiceExpressInfoResp + 221, // 303: bundle.Bundle.GetOrderInfoByOrderNo:output_type -> bundle.GetOrderInfoByOrderNoResp + 228, // 304: bundle.Bundle.GetInvoiceInfoByOrderNo:output_type -> bundle.GetInvoiceInfoByOrderNoResp + 230, // 305: bundle.Bundle.GetLastInvoiceNo:output_type -> bundle.GetLastInvoiceNoResp + 232, // 306: bundle.Bundle.UpdataInvoiceInfo:output_type -> bundle.UpdataInvoiceInfoResp + 224, // 307: bundle.Bundle.ExportWorkCastInfo:output_type -> bundle.ExportWorkCastInfoResp + 187, // 308: bundle.Bundle.GetCustomerList:output_type -> bundle.CustomerListResponse + 189, // 309: bundle.Bundle.GetCustomerDetail:output_type -> bundle.CustomerDetailResponse + 145, // 310: bundle.Bundle.UpdateCustomer:output_type -> bundle.ComResponse + 194, // 311: bundle.Bundle.GetReferralPersonList:output_type -> bundle.ReferralPersonListResponse + 145, // 312: bundle.Bundle.UpdateContract:output_type -> bundle.ComResponse + 197, // 313: bundle.Bundle.GetContractList:output_type -> bundle.ContractListResponse + 199, // 314: bundle.Bundle.GetContractDetail:output_type -> bundle.ContractDetailResponse + 201, // 315: bundle.Bundle.GetDevelopmentCyclesByContractUUID:output_type -> bundle.GetDevelopmentCyclesByContractUUIDResponse + 203, // 316: bundle.Bundle.GetPaymentCyclesByContractUUID:output_type -> bundle.GetPaymentCyclesByContractUUIDResponse + 19, // 317: bundle.Bundle.UpdateOrderRecordByOrderUuid:output_type -> bundle.CommonResponse + 11, // 318: bundle.Bundle.OrderListByOrderUuid:output_type -> bundle.OrderInfoByOrderNoResp + 234, // 319: bundle.Bundle.SendQuestionnaireSurvey:output_type -> bundle.SendQuestionnaireSurveyResponse + 237, // 320: bundle.Bundle.GetQuestionnaireSurveyInfo:output_type -> bundle.GetQuestionnaireSurveyInfoResponse + 241, // 321: bundle.Bundle.CreateQuestionnaireSurveyAnswer:output_type -> bundle.CreateQuestionnaireSurveyAnswerResponse + 244, // 322: bundle.Bundle.GetQuestionnaireSurveyList:output_type -> bundle.GetQuestionnaireSurveyListResponse + 203, // [203:323] is the sub-list for method output_type + 83, // [83:203] is the sub-list for method input_type + 83, // [83:83] is the sub-list for extension type_name + 83, // [83:83] is the sub-list for extension extendee + 0, // [0:83] is the sub-list for field type_name } func init() { file_pb_bundle_proto_init() } @@ -30606,7 +30688,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceListResp); i { + switch v := v.(*PayLaterBundleBalanceExportResp); i { case 0: return &v.state case 1: @@ -30618,7 +30700,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateBundleBalanceReq); i { + switch v := v.(*GetBundleBalanceListResp); i { case 0: return &v.state case 1: @@ -30630,7 +30712,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateBundleBalanceResp); i { + switch v := v.(*CreateBundleBalanceReq); i { case 0: return &v.state case 1: @@ -30642,7 +30724,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddBundleBalanceReq); i { + switch v := v.(*CreateBundleBalanceResp); i { case 0: return &v.state case 1: @@ -30654,7 +30736,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddBundleBalanceResp); i { + switch v := v.(*AddBundleBalanceReq); i { case 0: return &v.state case 1: @@ -30666,7 +30748,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetUsedRecordListReq); i { + switch v := v.(*AddBundleBalanceResp); i { case 0: return &v.state case 1: @@ -30678,7 +30760,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetUsedRecordListResp); i { + switch v := v.(*GetUsedRecordListReq); i { case 0: return &v.state case 1: @@ -30690,7 +30772,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*WorkCastItem); i { + switch v := v.(*GetUsedRecordListResp); i { case 0: return &v.state case 1: @@ -30702,7 +30784,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetImageWorkDetailReq); i { + switch v := v.(*WorkCastItem); i { case 0: return &v.state case 1: @@ -30714,7 +30796,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetVedioWorkDetailReq); i { + switch v := v.(*GetImageWorkDetailReq); i { case 0: return &v.state case 1: @@ -30726,7 +30808,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetImageWorkDetailResp); i { + switch v := v.(*GetVedioWorkDetailReq); i { case 0: return &v.state case 1: @@ -30738,7 +30820,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetVedioeWorkDetailResp); i { + switch v := v.(*GetImageWorkDetailResp); i { case 0: return &v.state case 1: @@ -30750,7 +30832,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ToBeComfirmedWorksReq); i { + switch v := v.(*GetVedioeWorkDetailResp); i { case 0: return &v.state case 1: @@ -30762,7 +30844,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*WorkItem); i { + switch v := v.(*ToBeComfirmedWorksReq); i { case 0: return &v.state case 1: @@ -30774,7 +30856,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ToBeComfirmedWorksResp); i { + switch v := v.(*WorkItem); i { case 0: return &v.state case 1: @@ -30786,7 +30868,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[99].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceByUserIdReq); i { + switch v := v.(*ToBeComfirmedWorksResp); i { case 0: return &v.state case 1: @@ -30798,7 +30880,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[100].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceByUserIdResp); i { + switch v := v.(*GetBundleBalanceByUserIdReq); i { case 0: return &v.state case 1: @@ -30810,7 +30892,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[101].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleOrderListByUserIdReq); i { + switch v := v.(*GetBundleBalanceByUserIdResp); i { case 0: return &v.state case 1: @@ -30822,7 +30904,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[102].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BalanceOrderItem); i { + switch v := v.(*GetBundleOrderListByUserIdReq); i { case 0: return &v.state case 1: @@ -30834,7 +30916,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[103].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleOrderListByUserIdResp); i { + switch v := v.(*BalanceOrderItem); i { case 0: return &v.state case 1: @@ -30846,7 +30928,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[104].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceByOrderUUIDReq); i { + switch v := v.(*GetBundleOrderListByUserIdResp); i { case 0: return &v.state case 1: @@ -30858,7 +30940,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[105].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceByOrderUUIDResp); i { + switch v := v.(*GetBundleBalanceByOrderUUIDReq); i { case 0: return &v.state case 1: @@ -30870,7 +30952,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[106].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*OnlyAddValueListByOrderNoRequest); i { + switch v := v.(*GetBundleBalanceByOrderUUIDResp); i { case 0: return &v.state case 1: @@ -30882,7 +30964,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[107].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*OnlyAddValueListByOrderNoResp); i { + switch v := v.(*OnlyAddValueListByOrderNoRequest); i { case 0: return &v.state case 1: @@ -30894,7 +30976,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[108].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddBundleInfo); i { + switch v := v.(*OnlyAddValueListByOrderNoResp); i { case 0: return &v.state case 1: @@ -30906,7 +30988,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[109].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateStatusAndPayTimeBySerialNumber); i { + switch v := v.(*AddBundleInfo); i { case 0: return &v.state case 1: @@ -30918,7 +31000,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[110].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfirmWorkReq); i { + switch v := v.(*UpdateStatusAndPayTimeBySerialNumber); i { case 0: return &v.state case 1: @@ -30930,7 +31012,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[111].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfirmWorkResp); i { + switch v := v.(*ConfirmWorkReq); i { case 0: return &v.state case 1: @@ -30942,7 +31024,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[112].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfirmWorkItem); i { + switch v := v.(*ConfirmWorkResp); i { case 0: return &v.state case 1: @@ -30954,7 +31036,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[113].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetWaitConfirmWorkListReq); i { + switch v := v.(*ConfirmWorkItem); i { case 0: return &v.state case 1: @@ -30966,7 +31048,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[114].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetWaitConfirmWorkListResp); i { + switch v := v.(*GetWaitConfirmWorkListReq); i { case 0: return &v.state case 1: @@ -30978,7 +31060,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[115].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AutoCreateUserAndOrderRequest); i { + switch v := v.(*GetWaitConfirmWorkListResp); i { case 0: return &v.state case 1: @@ -30990,7 +31072,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[116].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UnfinishedInfos); i { + switch v := v.(*AutoCreateUserAndOrderRequest); i { case 0: return &v.state case 1: @@ -31002,7 +31084,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[117].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UnfinishedInfo); i { + switch v := v.(*UnfinishedInfos); i { case 0: return &v.state case 1: @@ -31014,7 +31096,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[118].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SoftDeleteUnfinishedInfoRequest); i { + switch v := v.(*UnfinishedInfo); i { case 0: return &v.state case 1: @@ -31026,7 +31108,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[119].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BundleActivateReq); i { + switch v := v.(*SoftDeleteUnfinishedInfoRequest); i { case 0: return &v.state case 1: @@ -31038,7 +31120,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[120].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BundleActivateResp); i { + switch v := v.(*BundleActivateReq); i { case 0: return &v.state case 1: @@ -31050,7 +31132,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[121].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskQueryRequest); i { + switch v := v.(*BundleActivateResp); i { case 0: return &v.state case 1: @@ -31062,7 +31144,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[122].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskQueryResponse); i { + switch v := v.(*TaskQueryRequest); i { case 0: return &v.state case 1: @@ -31074,7 +31156,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[123].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskManagementInfo); i { + switch v := v.(*TaskQueryResponse); i { case 0: return &v.state case 1: @@ -31086,7 +31168,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[124].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRequest); i { + switch v := v.(*TaskManagementInfo); i { case 0: return &v.state case 1: @@ -31098,7 +31180,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[125].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdatePendingCountRequest); i { + switch v := v.(*TaskAssignRequest); i { case 0: return &v.state case 1: @@ -31110,7 +31192,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[126].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AddHiddenTaskAssigneeRequest); i { + switch v := v.(*UpdatePendingCountRequest); i { case 0: return &v.state case 1: @@ -31122,7 +31204,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[127].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RecentAssignRecordsRequest); i { + switch v := v.(*AddHiddenTaskAssigneeRequest); i { case 0: return &v.state case 1: @@ -31134,7 +31216,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[128].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RecentAssigneeItem); i { + switch v := v.(*RecentAssignRecordsRequest); i { case 0: return &v.state case 1: @@ -31146,7 +31228,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[129].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RecentAssignRecordsResponse); i { + switch v := v.(*RecentAssigneeItem); i { case 0: return &v.state case 1: @@ -31158,7 +31240,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[130].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EmployeeTaskQueryRequest); i { + switch v := v.(*RecentAssignRecordsResponse); i { case 0: return &v.state case 1: @@ -31170,7 +31252,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[131].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*EmployeeTaskQueryResponse); i { + switch v := v.(*EmployeeTaskQueryRequest); i { case 0: return &v.state case 1: @@ -31182,7 +31264,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[132].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRecordInfo); i { + switch v := v.(*EmployeeTaskQueryResponse); i { case 0: return &v.state case 1: @@ -31194,7 +31276,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[133].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BatchAssignTaskItem); i { + switch v := v.(*TaskAssignRecordInfo); i { case 0: return &v.state case 1: @@ -31206,7 +31288,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[134].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BatchAssignTaskRequest); i { + switch v := v.(*BatchAssignTaskItem); i { case 0: return &v.state case 1: @@ -31218,7 +31300,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[135].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CompleteTaskManuallyRequest); i { + switch v := v.(*BatchAssignTaskRequest); i { case 0: return &v.state case 1: @@ -31230,7 +31312,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[136].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TerminateTaskByUUIDRequest); i { + switch v := v.(*CompleteTaskManuallyRequest); i { case 0: return &v.state case 1: @@ -31242,7 +31324,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[137].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*BatchTerminateTaskRequest); i { + switch v := v.(*TerminateTaskByUUIDRequest); i { case 0: return &v.state case 1: @@ -31254,7 +31336,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[138].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RevertTaskCompletionByUUIDItemRequest); i { + switch v := v.(*BatchTerminateTaskRequest); i { case 0: return &v.state case 1: @@ -31266,7 +31348,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[139].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetTaskActualStatusByUUIDRequest); i { + switch v := v.(*RevertTaskCompletionByUUIDItemRequest); i { case 0: return &v.state case 1: @@ -31278,7 +31360,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[140].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetTaskActualStatusByUUIDResponse); i { + switch v := v.(*GetTaskActualStatusByUUIDRequest); i { case 0: return &v.state case 1: @@ -31290,7 +31372,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[141].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateTaskProgressRequest); i { + switch v := v.(*GetTaskActualStatusByUUIDResponse); i { case 0: return &v.state case 1: @@ -31302,7 +31384,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[142].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRecordsQueryRequest); i { + switch v := v.(*UpdateTaskProgressRequest); i { case 0: return &v.state case 1: @@ -31314,7 +31396,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[143].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ComResponse); i { + switch v := v.(*TaskAssignRecordsQueryRequest); i { case 0: return &v.state case 1: @@ -31326,7 +31408,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[144].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRecordsQueryResponse); i { + switch v := v.(*ComResponse); i { case 0: return &v.state case 1: @@ -31338,7 +31420,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[145].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskAssignRecordsSummary); i { + switch v := v.(*TaskAssignRecordsQueryResponse); i { case 0: return &v.state case 1: @@ -31350,7 +31432,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[146].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ArtistUploadStatsItem); i { + switch v := v.(*TaskAssignRecordsSummary); i { case 0: return &v.state case 1: @@ -31362,7 +31444,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[147].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ArtistUploadStatsResponse); i { + switch v := v.(*ArtistUploadStatsItem); i { case 0: return &v.state case 1: @@ -31374,7 +31456,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[148].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingUploadBreakdownRequest); i { + switch v := v.(*ArtistUploadStatsResponse); i { case 0: return &v.state case 1: @@ -31386,7 +31468,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[149].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingUploadBreakdownItem); i { + switch v := v.(*PendingUploadBreakdownRequest); i { case 0: return &v.state case 1: @@ -31398,7 +31480,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[150].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingUploadBreakdownResponse); i { + switch v := v.(*PendingUploadBreakdownItem); i { case 0: return &v.state case 1: @@ -31410,7 +31492,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[151].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingAssignRequest); i { + switch v := v.(*PendingUploadBreakdownResponse); i { case 0: return &v.state case 1: @@ -31422,7 +31504,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[152].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingAssignItem); i { + switch v := v.(*PendingAssignRequest); i { case 0: return &v.state case 1: @@ -31434,7 +31516,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[153].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PendingAssignResponse); i { + switch v := v.(*PendingAssignItem); i { case 0: return &v.state case 1: @@ -31446,7 +31528,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[154].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ArtistBundleBalanceRequest); i { + switch v := v.(*PendingAssignResponse); i { case 0: return &v.state case 1: @@ -31458,7 +31540,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[155].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ArtistBundleBalanceResponse); i { + switch v := v.(*ArtistBundleBalanceRequest); i { case 0: return &v.state case 1: @@ -31470,7 +31552,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[156].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetBundleBalanceLayoutReq); i { + switch v := v.(*ArtistBundleBalanceResponse); i { case 0: return &v.state case 1: @@ -31482,7 +31564,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[157].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetBundleBalanceLayoutResp); i { + switch v := v.(*SetBundleBalanceLayoutReq); i { case 0: return &v.state case 1: @@ -31494,7 +31576,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[158].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceLayoutReq); i { + switch v := v.(*SetBundleBalanceLayoutResp); i { case 0: return &v.state case 1: @@ -31506,7 +31588,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[159].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetBundleBalanceLayoutResp); i { + switch v := v.(*GetBundleBalanceLayoutReq); i { case 0: return &v.state case 1: @@ -31518,7 +31600,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[160].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPendingTaskLayoutReq); i { + switch v := v.(*GetBundleBalanceLayoutResp); i { case 0: return &v.state case 1: @@ -31530,7 +31612,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[161].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPendingTaskLayoutResp); i { + switch v := v.(*GetPendingTaskLayoutReq); i { case 0: return &v.state case 1: @@ -31542,7 +31624,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[162].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetPendingTaskLayoutReq); i { + switch v := v.(*GetPendingTaskLayoutResp); i { case 0: return &v.state case 1: @@ -31554,7 +31636,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[163].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SetPendingTaskLayoutResp); i { + switch v := v.(*SetPendingTaskLayoutReq); i { case 0: return &v.state case 1: @@ -31566,7 +31648,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[164].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskWorkLogQueryRequest); i { + switch v := v.(*SetPendingTaskLayoutResp); i { case 0: return &v.state case 1: @@ -31578,7 +31660,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[165].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskWorkLogInfo); i { + switch v := v.(*TaskWorkLogQueryRequest); i { case 0: return &v.state case 1: @@ -31590,7 +31672,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[166].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*TaskWorkLogQueryResponse); i { + switch v := v.(*TaskWorkLogInfo); i { case 0: return &v.state case 1: @@ -31602,7 +31684,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[167].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateTaskWorkLogRequest); i { + switch v := v.(*TaskWorkLogQueryResponse); i { case 0: return &v.state case 1: @@ -31614,7 +31696,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[168].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBusinessReq); i { + switch v := v.(*CreateTaskWorkLogRequest); i { case 0: return &v.state case 1: @@ -31626,7 +31708,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[169].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBusinessResp); i { + switch v := v.(*MetricsBusinessReq); i { case 0: return &v.state case 1: @@ -31638,7 +31720,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[170].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsOperatingCreateReq); i { + switch v := v.(*MetricsBusinessResp); i { case 0: return &v.state case 1: @@ -31650,7 +31732,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[171].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsOperatingCreateResp); i { + switch v := v.(*MetricsOperatingCreateReq); i { case 0: return &v.state case 1: @@ -31662,7 +31744,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[172].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsOperatingStatusReq); i { + switch v := v.(*MetricsOperatingCreateResp); i { case 0: return &v.state case 1: @@ -31674,7 +31756,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[173].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsOperatingStatusResp); i { + switch v := v.(*MetricsOperatingStatusReq); i { case 0: return &v.state case 1: @@ -31686,7 +31768,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[174].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBundlePurchaseExportReq); i { + switch v := v.(*MetricsOperatingStatusResp); i { case 0: return &v.state case 1: @@ -31698,7 +31780,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[175].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBundlePurchaseExportResp); i { + switch v := v.(*MetricsBundlePurchaseExportReq); i { case 0: return &v.state case 1: @@ -31710,7 +31792,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[176].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBundlePurchaseItem); i { + switch v := v.(*MetricsBundlePurchaseExportResp); i { case 0: return &v.state case 1: @@ -31722,7 +31804,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[177].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsArtistAccountExportReq); i { + switch v := v.(*MetricsBundlePurchaseItem); i { case 0: return &v.state case 1: @@ -31734,7 +31816,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[178].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsArtistAccountExportResp); i { + switch v := v.(*MetricsArtistAccountExportReq); i { case 0: return &v.state case 1: @@ -31746,7 +31828,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[179].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsArtistAccountExportItem); i { + switch v := v.(*MetricsArtistAccountExportResp); i { case 0: return &v.state case 1: @@ -31758,7 +31840,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[180].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsVideoSubmitExportReq); i { + switch v := v.(*MetricsArtistAccountExportItem); i { case 0: return &v.state case 1: @@ -31770,7 +31852,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[181].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsVideoSubmitExportResp); i { + switch v := v.(*MetricsVideoSubmitExportReq); i { case 0: return &v.state case 1: @@ -31782,7 +31864,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[182].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsVideoSubmitExportItem); i { + switch v := v.(*MetricsVideoSubmitExportResp); i { case 0: return &v.state case 1: @@ -31794,7 +31876,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[183].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*MetricsBalanceDetailExportReq); i { + switch v := v.(*MetricsVideoSubmitExportItem); i { case 0: return &v.state case 1: @@ -31806,7 +31888,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[184].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerListRequest); i { + switch v := v.(*MetricsBalanceDetailExportReq); i { case 0: return &v.state case 1: @@ -31818,7 +31900,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[185].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerListResponse); i { + switch v := v.(*CustomerListRequest); i { case 0: return &v.state case 1: @@ -31830,7 +31912,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[186].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerDetailRequest); i { + switch v := v.(*CustomerListResponse); i { case 0: return &v.state case 1: @@ -31842,7 +31924,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[187].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerDetailResponse); i { + switch v := v.(*CustomerDetailRequest); i { case 0: return &v.state case 1: @@ -31854,7 +31936,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[188].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerUpdateRequest); i { + switch v := v.(*CustomerDetailResponse); i { case 0: return &v.state case 1: @@ -31866,7 +31948,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[189].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CustomerInfo); i { + switch v := v.(*CustomerUpdateRequest); i { case 0: return &v.state case 1: @@ -31878,7 +31960,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[190].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Customer); i { + switch v := v.(*CustomerInfo); i { case 0: return &v.state case 1: @@ -31890,7 +31972,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[191].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReferralPersonListRequest); i { + switch v := v.(*Customer); i { case 0: return &v.state case 1: @@ -31902,7 +31984,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[192].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ReferralPersonListResponse); i { + switch v := v.(*ReferralPersonListRequest); i { case 0: return &v.state case 1: @@ -31914,7 +31996,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[193].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractUpdateRequest); i { + switch v := v.(*ReferralPersonListResponse); i { case 0: return &v.state case 1: @@ -31926,7 +32008,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[194].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractListRequest); i { + switch v := v.(*ContractUpdateRequest); i { case 0: return &v.state case 1: @@ -31938,7 +32020,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[195].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractListResponse); i { + switch v := v.(*ContractListRequest); i { case 0: return &v.state case 1: @@ -31950,7 +32032,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[196].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractDetailRequest); i { + switch v := v.(*ContractListResponse); i { case 0: return &v.state case 1: @@ -31962,7 +32044,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[197].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractDetailResponse); i { + switch v := v.(*ContractDetailRequest); i { case 0: return &v.state case 1: @@ -31974,7 +32056,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[198].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetDevelopmentCyclesByContractUUIDRequest); i { + switch v := v.(*ContractDetailResponse); i { case 0: return &v.state case 1: @@ -31986,7 +32068,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[199].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetDevelopmentCyclesByContractUUIDResponse); i { + switch v := v.(*GetDevelopmentCyclesByContractUUIDRequest); i { case 0: return &v.state case 1: @@ -31998,7 +32080,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[200].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPaymentCyclesByContractUUIDRequest); i { + switch v := v.(*GetDevelopmentCyclesByContractUUIDResponse); i { case 0: return &v.state case 1: @@ -32010,7 +32092,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[201].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetPaymentCyclesByContractUUIDResponse); i { + switch v := v.(*GetPaymentCyclesByContractUUIDRequest); i { case 0: return &v.state case 1: @@ -32022,7 +32104,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[202].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*AttachmentItem); i { + switch v := v.(*GetPaymentCyclesByContractUUIDResponse); i { case 0: return &v.state case 1: @@ -32034,7 +32116,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[203].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractInfo); i { + switch v := v.(*AttachmentItem); i { case 0: return &v.state case 1: @@ -32046,7 +32128,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[204].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*Contract); i { + switch v := v.(*ContractInfo); i { case 0: return &v.state case 1: @@ -32058,7 +32140,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[205].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ContractPaymentCycle); i { + switch v := v.(*Contract); i { case 0: return &v.state case 1: @@ -32070,7 +32152,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[206].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*DevelopmentCycle); i { + switch v := v.(*ContractPaymentCycle); i { case 0: return &v.state case 1: @@ -32082,7 +32164,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[207].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateInvoiceReq); i { + switch v := v.(*DevelopmentCycle); i { case 0: return &v.state case 1: @@ -32094,7 +32176,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[208].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateInvoiceResp); i { + switch v := v.(*CreateInvoiceReq); i { case 0: return &v.state case 1: @@ -32106,7 +32188,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[209].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreatePaperInvoiceAddressReq); i { + switch v := v.(*CreateInvoiceResp); i { case 0: return &v.state case 1: @@ -32118,7 +32200,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[210].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreatePaperInvoiceAddressResp); i { + switch v := v.(*CreatePaperInvoiceAddressReq); i { case 0: return &v.state case 1: @@ -32130,7 +32212,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[211].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*InvoiceInfo); i { + switch v := v.(*CreatePaperInvoiceAddressResp); i { case 0: return &v.state case 1: @@ -32142,7 +32224,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[212].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceListReq); i { + switch v := v.(*InvoiceInfo); i { case 0: return &v.state case 1: @@ -32154,7 +32236,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[213].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceListResp); i { + switch v := v.(*GetInvoiceListReq); i { case 0: return &v.state case 1: @@ -32166,7 +32248,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[214].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateInvoiceExpressInfoReq); i { + switch v := v.(*GetInvoiceListResp); i { case 0: return &v.state case 1: @@ -32178,7 +32260,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[215].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdateInvoiceExpressInfoResp); i { + switch v := v.(*UpdateInvoiceExpressInfoReq); i { case 0: return &v.state case 1: @@ -32190,7 +32272,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[216].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceExpressInfoReq); i { + switch v := v.(*UpdateInvoiceExpressInfoResp); i { case 0: return &v.state case 1: @@ -32202,7 +32284,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[217].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceExpressInfoResp); i { + switch v := v.(*GetInvoiceExpressInfoReq); i { case 0: return &v.state case 1: @@ -32214,7 +32296,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[218].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetOrderInfoByOrderNoReq); i { + switch v := v.(*GetInvoiceExpressInfoResp); i { case 0: return &v.state case 1: @@ -32226,7 +32308,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[219].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetOrderInfoByOrderNoResp); i { + switch v := v.(*GetOrderInfoByOrderNoReq); i { case 0: return &v.state case 1: @@ -32238,7 +32320,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[220].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*WorkCastInfo); i { + switch v := v.(*GetOrderInfoByOrderNoResp); i { case 0: return &v.state case 1: @@ -32250,7 +32332,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[221].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ExportWorkCastInfoReq); i { + switch v := v.(*WorkCastInfo); i { case 0: return &v.state case 1: @@ -32262,7 +32344,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[222].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ExportWorkCastInfoResp); i { + switch v := v.(*ExportWorkCastInfoReq); i { case 0: return &v.state case 1: @@ -32274,7 +32356,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[223].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*OrderInfoByOrderUuidRequest); i { + switch v := v.(*ExportWorkCastInfoResp); i { case 0: return &v.state case 1: @@ -32286,7 +32368,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[224].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceInfoByOrderNoReq); i { + switch v := v.(*OrderInfoByOrderUuidRequest); i { case 0: return &v.state case 1: @@ -32298,7 +32380,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[225].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*InvoiceInfoByOrderNo); i { + switch v := v.(*GetInvoiceInfoByOrderNoReq); i { case 0: return &v.state case 1: @@ -32310,7 +32392,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[226].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetInvoiceInfoByOrderNoResp); i { + switch v := v.(*InvoiceInfoByOrderNo); i { case 0: return &v.state case 1: @@ -32322,7 +32404,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[227].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetLastInvoiceNoReq); i { + switch v := v.(*GetInvoiceInfoByOrderNoResp); i { case 0: return &v.state case 1: @@ -32334,7 +32416,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[228].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetLastInvoiceNoResp); i { + switch v := v.(*GetLastInvoiceNoReq); i { case 0: return &v.state case 1: @@ -32346,7 +32428,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[229].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdataInvoiceInfoReq); i { + switch v := v.(*GetLastInvoiceNoResp); i { case 0: return &v.state case 1: @@ -32358,7 +32440,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[230].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UpdataInvoiceInfoResp); i { + switch v := v.(*UpdataInvoiceInfoReq); i { case 0: return &v.state case 1: @@ -32370,7 +32452,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[231].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SendQuestionnaireSurveyRequest); i { + switch v := v.(*UpdataInvoiceInfoResp); i { case 0: return &v.state case 1: @@ -32382,7 +32464,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[232].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SendQuestionnaireSurveyResponse); i { + switch v := v.(*SendQuestionnaireSurveyRequest); i { case 0: return &v.state case 1: @@ -32394,7 +32476,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[233].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetQuestionnaireSurveyInfoRequest); i { + switch v := v.(*SendQuestionnaireSurveyResponse); i { case 0: return &v.state case 1: @@ -32406,7 +32488,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[234].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SurveyBundleInfo); i { + switch v := v.(*GetQuestionnaireSurveyInfoRequest); i { case 0: return &v.state case 1: @@ -32418,7 +32500,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[235].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetQuestionnaireSurveyInfoResponse); i { + switch v := v.(*SurveyBundleInfo); i { case 0: return &v.state case 1: @@ -32430,7 +32512,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[236].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SurveyAnswer); i { + switch v := v.(*GetQuestionnaireSurveyInfoResponse); i { case 0: return &v.state case 1: @@ -32442,7 +32524,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[237].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SurveyFeedback); i { + switch v := v.(*SurveyAnswer); i { case 0: return &v.state case 1: @@ -32454,7 +32536,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[238].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateQuestionnaireSurveyAnswerRequest); i { + switch v := v.(*SurveyFeedback); i { case 0: return &v.state case 1: @@ -32466,7 +32548,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[239].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*CreateQuestionnaireSurveyAnswerResponse); i { + switch v := v.(*CreateQuestionnaireSurveyAnswerRequest); i { case 0: return &v.state case 1: @@ -32478,7 +32560,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[240].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetQuestionnaireSurveyListRequest); i { + switch v := v.(*CreateQuestionnaireSurveyAnswerResponse); i { case 0: return &v.state case 1: @@ -32490,7 +32572,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[241].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*SurveyListInfo); i { + switch v := v.(*GetQuestionnaireSurveyListRequest); i { case 0: return &v.state case 1: @@ -32502,7 +32584,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[242].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetQuestionnaireSurveyListResponse); i { + switch v := v.(*SurveyListInfo); i { case 0: return &v.state case 1: @@ -32514,7 +32596,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[243].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetUserOrderListRequest); i { + switch v := v.(*GetQuestionnaireSurveyListResponse); i { case 0: return &v.state case 1: @@ -32526,7 +32608,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[244].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*GetUserOrderListResponse); i { + switch v := v.(*GetUserOrderListRequest); i { case 0: return &v.state case 1: @@ -32538,7 +32620,7 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[245].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*UserOrderDetail); i { + switch v := v.(*GetUserOrderListResponse); i { case 0: return &v.state case 1: @@ -32550,6 +32632,18 @@ func file_pb_bundle_proto_init() { } } file_pb_bundle_proto_msgTypes[246].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*UserOrderDetail); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_pb_bundle_proto_msgTypes[247].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*OrderValueAddDetail); i { case 0: return &v.state @@ -32568,7 +32662,7 @@ func file_pb_bundle_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_pb_bundle_proto_rawDesc, NumEnums: 1, - NumMessages: 247, + NumMessages: 248, NumExtensions: 0, NumServices: 1, }, diff --git a/pb/bundle/bundle.validator.pb.go b/pb/bundle/bundle.validator.pb.go index 18b3b9b..104cbfb 100644 --- a/pb/bundle/bundle.validator.pb.go +++ b/pb/bundle/bundle.validator.pb.go @@ -461,6 +461,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 11fc8d2..19e26ac 100644 --- a/pb/bundle/bundle_triple.pb.go +++ b/pb/bundle/bundle_triple.pb.go @@ -82,6 +82,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) // 使用记录 @@ -218,6 +219,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) @@ -606,6 +608,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) @@ -1072,6 +1080,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) // 使用记录 @@ -1311,6 +1320,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") } @@ -3022,6 +3034,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 { @@ -5205,6 +5246,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,