diff --git a/internal/controller/bundleV2.go b/internal/controller/bundleV2.go index e3cebc6..6e4177c 100644 --- a/internal/controller/bundleV2.go +++ b/internal/controller/bundleV2.go @@ -51,3 +51,6 @@ func (b *BundleProvider) BatchGetValueAddServiceLang(ctx context.Context, req *b func (b *BundleProvider) BundleListH5V2(_ context.Context, req *bundle.BundleListRequest) (res *bundle.BundleListResponse, err error) { return logic.BundleListH5V2(req) } +func (b *BundleProvider) QueryTheOrderSnapshotInformation(_ context.Context, req *bundle.QueryTheOrderSnapshotInformationReq) (res *bundle.QueryTheOrderSnapshotInformationResp, err error) { + return logic.QueryTheOrderSnapshotInformation(req) +} diff --git a/internal/dao/bundleDao.go b/internal/dao/bundleDao.go index 23d8efd..4c3b337 100644 --- a/internal/dao/bundleDao.go +++ b/internal/dao/bundleDao.go @@ -1,6 +1,7 @@ package dao import ( + "encoding/json" "micro-bundle/internal/model" "micro-bundle/pb/bundle" "micro-bundle/pkg/app" @@ -464,7 +465,40 @@ func BundleListH5V2(req *bundle.BundleListRequest) (res *bundle.BundleListRespon } -func GetUnconfirmed() (data []model.CastWork,err error) { +func GetUnconfirmed() (data []model.CastWork, err error) { err = app.ModuleClients.BundleDB.Model(&model.CastWork{}).Where("status = ? and update_time < ?", 4, time.Now().Add(-time.Hour*24)).Find(&data).Error return } +func QueryTheOrderSnapshotInformation(req *bundle.QueryTheOrderSnapshotInformationReq) (res *bundle.QueryTheOrderSnapshotInformationResp, err error) { + res = new(bundle.QueryTheOrderSnapshotInformationResp) + var record model.BundleOrderRecords + err = app.ModuleClients.BundleDB. + Preload("BundleOrderValueAdd"). + Where("order_no = ?", req.OrderNo). + First(&record).Error + if err != nil { + return + } + var temp struct { + Content string `json:"content"` + } + if len(record.BundleCommonJson) > 0 { + _ = json.Unmarshal(record.BundleCommonJson, &temp) // 失败也不会影响 + } + res.BundleContent = temp.Content // 如果失败,这里就是空字符串 + res.BundleOrder = make([]*bundle.ServiceInformation, 0) + res.AddBundleOrder = make([]*bundle.ServiceInformation, 0) + for _, v := range record.BundleOrderValueAdd { + info := &bundle.ServiceInformation{ + ServiceType: uint64(v.ServiceType), + Num: uint64(v.Num), + Unit: v.Unit, + } + if v.EquityType == 1 { + res.BundleOrder = append(res.BundleOrder, info) + } else if v.EquityType == 2 { + res.AddBundleOrder = append(res.AddBundleOrder, info) + } + } + return +} diff --git a/internal/logic/bundleLogic.go b/internal/logic/bundleLogic.go index 5db2882..e9da244 100644 --- a/internal/logic/bundleLogic.go +++ b/internal/logic/bundleLogic.go @@ -698,3 +698,13 @@ func BundleListH5V2(req *bundle.BundleListRequest) (res *bundle.BundleListRespon } return res, nil } + +// 增加h5套餐列表 +func QueryTheOrderSnapshotInformation(req *bundle.QueryTheOrderSnapshotInformationReq) (res *bundle.QueryTheOrderSnapshotInformationResp, err error) { + res = new(bundle.QueryTheOrderSnapshotInformationResp) + res, err = dao.QueryTheOrderSnapshotInformation(req) + if err != nil { + return res, errors.New("获取套餐列表失败") + } + return res, nil +} diff --git a/pb/bundle.proto b/pb/bundle.proto index e95ccfe..bb8a05f 100644 --- a/pb/bundle.proto +++ b/pb/bundle.proto @@ -114,7 +114,20 @@ service Bundle { rpc MetricsBundlePurchaseExport(MetricsBundlePurchaseExportReq) returns (MetricsBundlePurchaseExportResp) {} rpc MetricsArtistAccountExport(MetricsArtistAccountExportReq) returns (MetricsArtistAccountExportResp) {} rpc MetricsVideoSubmitExport(MetricsVideoSubmitExportReq) returns (MetricsVideoSubmitExportResp) {} - + rpc QueryTheOrderSnapshotInformation(QueryTheOrderSnapshotInformationReq) returns (QueryTheOrderSnapshotInformationResp) {} +} +message QueryTheOrderSnapshotInformationReq{ + string orderNo = 1; +} +message QueryTheOrderSnapshotInformationResp{ + repeated ServiceInformation bundleOrder = 1; + repeated ServiceInformation addBundleOrder = 2; + string bundleContent = 3; +} +message ServiceInformation{ + uint64 serviceType = 1; + uint64 num = 2; + string unit = 3; } message ReSignTheContractRequest{ string orderNo = 1; diff --git a/pb/bundle/bundle.pb.go b/pb/bundle/bundle.pb.go index 43d3f52..09adf23 100644 --- a/pb/bundle/bundle.pb.go +++ b/pb/bundle/bundle.pb.go @@ -23,6 +23,170 @@ const ( _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) ) +type QueryTheOrderSnapshotInformationReq struct { + state protoimpl.MessageState `protogen:"open.v1"` + OrderNo string `protobuf:"bytes,1,opt,name=orderNo,proto3" json:"orderNo"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *QueryTheOrderSnapshotInformationReq) Reset() { + *x = QueryTheOrderSnapshotInformationReq{} + mi := &file_pb_bundle_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *QueryTheOrderSnapshotInformationReq) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*QueryTheOrderSnapshotInformationReq) ProtoMessage() {} + +func (x *QueryTheOrderSnapshotInformationReq) ProtoReflect() protoreflect.Message { + mi := &file_pb_bundle_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use QueryTheOrderSnapshotInformationReq.ProtoReflect.Descriptor instead. +func (*QueryTheOrderSnapshotInformationReq) Descriptor() ([]byte, []int) { + return file_pb_bundle_proto_rawDescGZIP(), []int{0} +} + +func (x *QueryTheOrderSnapshotInformationReq) GetOrderNo() string { + if x != nil { + return x.OrderNo + } + return "" +} + +type QueryTheOrderSnapshotInformationResp struct { + state protoimpl.MessageState `protogen:"open.v1"` + BundleOrder []*ServiceInformation `protobuf:"bytes,1,rep,name=bundleOrder,proto3" json:"bundleOrder"` + AddBundleOrder []*ServiceInformation `protobuf:"bytes,2,rep,name=addBundleOrder,proto3" json:"addBundleOrder"` + BundleContent string `protobuf:"bytes,3,opt,name=bundleContent,proto3" json:"bundleContent"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *QueryTheOrderSnapshotInformationResp) Reset() { + *x = QueryTheOrderSnapshotInformationResp{} + mi := &file_pb_bundle_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *QueryTheOrderSnapshotInformationResp) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*QueryTheOrderSnapshotInformationResp) ProtoMessage() {} + +func (x *QueryTheOrderSnapshotInformationResp) ProtoReflect() protoreflect.Message { + mi := &file_pb_bundle_proto_msgTypes[1] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use QueryTheOrderSnapshotInformationResp.ProtoReflect.Descriptor instead. +func (*QueryTheOrderSnapshotInformationResp) Descriptor() ([]byte, []int) { + return file_pb_bundle_proto_rawDescGZIP(), []int{1} +} + +func (x *QueryTheOrderSnapshotInformationResp) GetBundleOrder() []*ServiceInformation { + if x != nil { + return x.BundleOrder + } + return nil +} + +func (x *QueryTheOrderSnapshotInformationResp) GetAddBundleOrder() []*ServiceInformation { + if x != nil { + return x.AddBundleOrder + } + return nil +} + +func (x *QueryTheOrderSnapshotInformationResp) GetBundleContent() string { + if x != nil { + return x.BundleContent + } + return "" +} + +type ServiceInformation struct { + state protoimpl.MessageState `protogen:"open.v1"` + ServiceType uint64 `protobuf:"varint,1,opt,name=serviceType,proto3" json:"serviceType"` + Num uint64 `protobuf:"varint,2,opt,name=num,proto3" json:"num"` + Unit string `protobuf:"bytes,3,opt,name=unit,proto3" json:"unit"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ServiceInformation) Reset() { + *x = ServiceInformation{} + mi := &file_pb_bundle_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ServiceInformation) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ServiceInformation) ProtoMessage() {} + +func (x *ServiceInformation) ProtoReflect() protoreflect.Message { + mi := &file_pb_bundle_proto_msgTypes[2] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ServiceInformation.ProtoReflect.Descriptor instead. +func (*ServiceInformation) Descriptor() ([]byte, []int) { + return file_pb_bundle_proto_rawDescGZIP(), []int{2} +} + +func (x *ServiceInformation) GetServiceType() uint64 { + if x != nil { + return x.ServiceType + } + return 0 +} + +func (x *ServiceInformation) GetNum() uint64 { + if x != nil { + return x.Num + } + return 0 +} + +func (x *ServiceInformation) GetUnit() string { + if x != nil { + return x.Unit + } + return "" +} + type ReSignTheContractRequest struct { state protoimpl.MessageState `protogen:"open.v1"` OrderNo string `protobuf:"bytes,1,opt,name=orderNo,proto3" json:"orderNo"` @@ -34,7 +198,7 @@ type ReSignTheContractRequest struct { func (x *ReSignTheContractRequest) Reset() { *x = ReSignTheContractRequest{} - mi := &file_pb_bundle_proto_msgTypes[0] + mi := &file_pb_bundle_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -46,7 +210,7 @@ func (x *ReSignTheContractRequest) String() string { func (*ReSignTheContractRequest) ProtoMessage() {} func (x *ReSignTheContractRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[0] + mi := &file_pb_bundle_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -59,7 +223,7 @@ func (x *ReSignTheContractRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ReSignTheContractRequest.ProtoReflect.Descriptor instead. func (*ReSignTheContractRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{0} + return file_pb_bundle_proto_rawDescGZIP(), []int{3} } func (x *ReSignTheContractRequest) GetOrderNo() string { @@ -93,7 +257,7 @@ type DeleteValueAddServiceRequest struct { func (x *DeleteValueAddServiceRequest) Reset() { *x = DeleteValueAddServiceRequest{} - mi := &file_pb_bundle_proto_msgTypes[1] + mi := &file_pb_bundle_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105,7 +269,7 @@ func (x *DeleteValueAddServiceRequest) String() string { func (*DeleteValueAddServiceRequest) ProtoMessage() {} func (x *DeleteValueAddServiceRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[1] + mi := &file_pb_bundle_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118,7 +282,7 @@ func (x *DeleteValueAddServiceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DeleteValueAddServiceRequest.ProtoReflect.Descriptor instead. func (*DeleteValueAddServiceRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{1} + return file_pb_bundle_proto_rawDescGZIP(), []int{4} } func (x *DeleteValueAddServiceRequest) GetOrderNo() string { @@ -157,7 +321,7 @@ type GetReconciliationListReq struct { func (x *GetReconciliationListReq) Reset() { *x = GetReconciliationListReq{} - mi := &file_pb_bundle_proto_msgTypes[2] + mi := &file_pb_bundle_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169,7 +333,7 @@ func (x *GetReconciliationListReq) String() string { func (*GetReconciliationListReq) ProtoMessage() {} func (x *GetReconciliationListReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[2] + mi := &file_pb_bundle_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182,7 +346,7 @@ func (x *GetReconciliationListReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetReconciliationListReq.ProtoReflect.Descriptor instead. func (*GetReconciliationListReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{2} + return file_pb_bundle_proto_rawDescGZIP(), []int{5} } func (x *GetReconciliationListReq) GetUserName() string { @@ -295,7 +459,7 @@ type GetReconciliationListResp struct { func (x *GetReconciliationListResp) Reset() { *x = GetReconciliationListResp{} - mi := &file_pb_bundle_proto_msgTypes[3] + mi := &file_pb_bundle_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -307,7 +471,7 @@ func (x *GetReconciliationListResp) String() string { func (*GetReconciliationListResp) ProtoMessage() {} func (x *GetReconciliationListResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[3] + mi := &file_pb_bundle_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -320,7 +484,7 @@ func (x *GetReconciliationListResp) ProtoReflect() protoreflect.Message { // Deprecated: Use GetReconciliationListResp.ProtoReflect.Descriptor instead. func (*GetReconciliationListResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{3} + return file_pb_bundle_proto_rawDescGZIP(), []int{6} } func (x *GetReconciliationListResp) GetList() []*ReconciliationInfo { @@ -375,7 +539,7 @@ type ReconciliationInfo struct { func (x *ReconciliationInfo) Reset() { *x = ReconciliationInfo{} - mi := &file_pb_bundle_proto_msgTypes[4] + mi := &file_pb_bundle_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -387,7 +551,7 @@ func (x *ReconciliationInfo) String() string { func (*ReconciliationInfo) ProtoMessage() {} func (x *ReconciliationInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[4] + mi := &file_pb_bundle_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -400,7 +564,7 @@ func (x *ReconciliationInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ReconciliationInfo.ProtoReflect.Descriptor instead. func (*ReconciliationInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{4} + return file_pb_bundle_proto_rawDescGZIP(), []int{7} } func (x *ReconciliationInfo) GetID() uint64 { @@ -524,7 +688,7 @@ type OrderInfoByOrderNoRequest struct { func (x *OrderInfoByOrderNoRequest) Reset() { *x = OrderInfoByOrderNoRequest{} - mi := &file_pb_bundle_proto_msgTypes[5] + mi := &file_pb_bundle_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -536,7 +700,7 @@ func (x *OrderInfoByOrderNoRequest) String() string { func (*OrderInfoByOrderNoRequest) ProtoMessage() {} func (x *OrderInfoByOrderNoRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[5] + mi := &file_pb_bundle_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -549,7 +713,7 @@ func (x *OrderInfoByOrderNoRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderInfoByOrderNoRequest.ProtoReflect.Descriptor instead. func (*OrderInfoByOrderNoRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{5} + return file_pb_bundle_proto_rawDescGZIP(), []int{8} } func (x *OrderInfoByOrderNoRequest) GetOrderNo() string { @@ -577,7 +741,7 @@ type OrderInfoByOrderNoResp struct { func (x *OrderInfoByOrderNoResp) Reset() { *x = OrderInfoByOrderNoResp{} - mi := &file_pb_bundle_proto_msgTypes[6] + mi := &file_pb_bundle_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -589,7 +753,7 @@ func (x *OrderInfoByOrderNoResp) String() string { func (*OrderInfoByOrderNoResp) ProtoMessage() {} func (x *OrderInfoByOrderNoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[6] + mi := &file_pb_bundle_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -602,7 +766,7 @@ func (x *OrderInfoByOrderNoResp) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderInfoByOrderNoResp.ProtoReflect.Descriptor instead. func (*OrderInfoByOrderNoResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{6} + return file_pb_bundle_proto_rawDescGZIP(), []int{9} } func (x *OrderInfoByOrderNoResp) GetType() int32 { @@ -704,7 +868,7 @@ type OrderCreateRecord struct { func (x *OrderCreateRecord) Reset() { *x = OrderCreateRecord{} - mi := &file_pb_bundle_proto_msgTypes[7] + mi := &file_pb_bundle_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -716,7 +880,7 @@ func (x *OrderCreateRecord) String() string { func (*OrderCreateRecord) ProtoMessage() {} func (x *OrderCreateRecord) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[7] + mi := &file_pb_bundle_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -729,7 +893,7 @@ func (x *OrderCreateRecord) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderCreateRecord.ProtoReflect.Descriptor instead. func (*OrderCreateRecord) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{7} + return file_pb_bundle_proto_rawDescGZIP(), []int{10} } func (x *OrderCreateRecord) GetBundleUuid() string { @@ -900,7 +1064,7 @@ type OrderCreateAddRecord struct { func (x *OrderCreateAddRecord) Reset() { *x = OrderCreateAddRecord{} - mi := &file_pb_bundle_proto_msgTypes[8] + mi := &file_pb_bundle_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -912,7 +1076,7 @@ func (x *OrderCreateAddRecord) String() string { func (*OrderCreateAddRecord) ProtoMessage() {} func (x *OrderCreateAddRecord) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[8] + mi := &file_pb_bundle_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -925,7 +1089,7 @@ func (x *OrderCreateAddRecord) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderCreateAddRecord.ProtoReflect.Descriptor instead. func (*OrderCreateAddRecord) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{8} + return file_pb_bundle_proto_rawDescGZIP(), []int{11} } func (x *OrderCreateAddRecord) GetServiceType() int32 { @@ -1043,7 +1207,7 @@ type OrderRecordsRequestV2 struct { func (x *OrderRecordsRequestV2) Reset() { *x = OrderRecordsRequestV2{} - mi := &file_pb_bundle_proto_msgTypes[9] + mi := &file_pb_bundle_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1055,7 +1219,7 @@ func (x *OrderRecordsRequestV2) String() string { func (*OrderRecordsRequestV2) ProtoMessage() {} func (x *OrderRecordsRequestV2) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[9] + mi := &file_pb_bundle_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1068,7 +1232,7 @@ func (x *OrderRecordsRequestV2) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderRecordsRequestV2.ProtoReflect.Descriptor instead. func (*OrderRecordsRequestV2) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{9} + return file_pb_bundle_proto_rawDescGZIP(), []int{12} } func (x *OrderRecordsRequestV2) GetCustomerName() string { @@ -1195,7 +1359,7 @@ type OrderRecordsResponseV2 struct { func (x *OrderRecordsResponseV2) Reset() { *x = OrderRecordsResponseV2{} - mi := &file_pb_bundle_proto_msgTypes[10] + mi := &file_pb_bundle_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1207,7 +1371,7 @@ func (x *OrderRecordsResponseV2) String() string { func (*OrderRecordsResponseV2) ProtoMessage() {} func (x *OrderRecordsResponseV2) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[10] + mi := &file_pb_bundle_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1220,7 +1384,7 @@ func (x *OrderRecordsResponseV2) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderRecordsResponseV2.ProtoReflect.Descriptor instead. func (*OrderRecordsResponseV2) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{10} + return file_pb_bundle_proto_rawDescGZIP(), []int{13} } func (x *OrderRecordsResponseV2) GetBundleInfo() []*OrderBundleRecordInfo { @@ -1270,7 +1434,7 @@ type OrderBundleRecordInfo struct { func (x *OrderBundleRecordInfo) Reset() { *x = OrderBundleRecordInfo{} - mi := &file_pb_bundle_proto_msgTypes[11] + mi := &file_pb_bundle_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1282,7 +1446,7 @@ func (x *OrderBundleRecordInfo) String() string { func (*OrderBundleRecordInfo) ProtoMessage() {} func (x *OrderBundleRecordInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[11] + mi := &file_pb_bundle_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1295,7 +1459,7 @@ func (x *OrderBundleRecordInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderBundleRecordInfo.ProtoReflect.Descriptor instead. func (*OrderBundleRecordInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{11} + return file_pb_bundle_proto_rawDescGZIP(), []int{14} } func (x *OrderBundleRecordInfo) GetOrderNo() string { @@ -1396,7 +1560,7 @@ type OrderAddBundleRecordInfo struct { func (x *OrderAddBundleRecordInfo) Reset() { *x = OrderAddBundleRecordInfo{} - mi := &file_pb_bundle_proto_msgTypes[12] + mi := &file_pb_bundle_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1408,7 +1572,7 @@ func (x *OrderAddBundleRecordInfo) String() string { func (*OrderAddBundleRecordInfo) ProtoMessage() {} func (x *OrderAddBundleRecordInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[12] + mi := &file_pb_bundle_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1421,7 +1585,7 @@ func (x *OrderAddBundleRecordInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderAddBundleRecordInfo.ProtoReflect.Descriptor instead. func (*OrderAddBundleRecordInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{12} + return file_pb_bundle_proto_rawDescGZIP(), []int{15} } func (x *OrderAddBundleRecordInfo) GetOrderAddNo() string { @@ -1525,7 +1689,7 @@ type PackagePriceAndTimeResponse struct { func (x *PackagePriceAndTimeResponse) Reset() { *x = PackagePriceAndTimeResponse{} - mi := &file_pb_bundle_proto_msgTypes[13] + mi := &file_pb_bundle_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1537,7 +1701,7 @@ func (x *PackagePriceAndTimeResponse) String() string { func (*PackagePriceAndTimeResponse) ProtoMessage() {} func (x *PackagePriceAndTimeResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[13] + mi := &file_pb_bundle_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1550,7 +1714,7 @@ func (x *PackagePriceAndTimeResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use PackagePriceAndTimeResponse.ProtoReflect.Descriptor instead. func (*PackagePriceAndTimeResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{13} + return file_pb_bundle_proto_rawDescGZIP(), []int{16} } func (x *PackagePriceAndTimeResponse) GetPrice() float32 { @@ -1578,7 +1742,7 @@ type CommonResponse struct { func (x *CommonResponse) Reset() { *x = CommonResponse{} - mi := &file_pb_bundle_proto_msgTypes[14] + mi := &file_pb_bundle_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1590,7 +1754,7 @@ func (x *CommonResponse) String() string { func (*CommonResponse) ProtoMessage() {} func (x *CommonResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[14] + mi := &file_pb_bundle_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1603,7 +1767,7 @@ func (x *CommonResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CommonResponse.ProtoReflect.Descriptor instead. func (*CommonResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{14} + return file_pb_bundle_proto_rawDescGZIP(), []int{17} } func (x *CommonResponse) GetMsg() string { @@ -1656,7 +1820,7 @@ type BundleProfile struct { func (x *BundleProfile) Reset() { *x = BundleProfile{} - mi := &file_pb_bundle_proto_msgTypes[15] + mi := &file_pb_bundle_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1668,7 +1832,7 @@ func (x *BundleProfile) String() string { func (*BundleProfile) ProtoMessage() {} func (x *BundleProfile) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[15] + mi := &file_pb_bundle_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1681,7 +1845,7 @@ func (x *BundleProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleProfile.ProtoReflect.Descriptor instead. func (*BundleProfile) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{15} + return file_pb_bundle_proto_rawDescGZIP(), []int{18} } func (x *BundleProfile) GetUuid() string { @@ -1857,7 +2021,7 @@ type BundleProfileLang struct { func (x *BundleProfileLang) Reset() { *x = BundleProfileLang{} - mi := &file_pb_bundle_proto_msgTypes[16] + mi := &file_pb_bundle_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1869,7 +2033,7 @@ func (x *BundleProfileLang) String() string { func (*BundleProfileLang) ProtoMessage() {} func (x *BundleProfileLang) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[16] + mi := &file_pb_bundle_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1882,7 +2046,7 @@ func (x *BundleProfileLang) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleProfileLang.ProtoReflect.Descriptor instead. func (*BundleProfileLang) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{16} + return file_pb_bundle_proto_rawDescGZIP(), []int{19} } func (x *BundleProfileLang) GetUuid() string { @@ -2021,7 +2185,7 @@ type ServiceLangInfo struct { func (x *ServiceLangInfo) Reset() { *x = ServiceLangInfo{} - mi := &file_pb_bundle_proto_msgTypes[17] + mi := &file_pb_bundle_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2033,7 +2197,7 @@ func (x *ServiceLangInfo) String() string { func (*ServiceLangInfo) ProtoMessage() {} func (x *ServiceLangInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[17] + mi := &file_pb_bundle_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2046,7 +2210,7 @@ func (x *ServiceLangInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ServiceLangInfo.ProtoReflect.Descriptor instead. func (*ServiceLangInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{17} + return file_pb_bundle_proto_rawDescGZIP(), []int{20} } func (x *ServiceLangInfo) GetValueAddUuid() string { @@ -2074,7 +2238,7 @@ type SaveResponse struct { func (x *SaveResponse) Reset() { *x = SaveResponse{} - mi := &file_pb_bundle_proto_msgTypes[18] + mi := &file_pb_bundle_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2086,7 +2250,7 @@ func (x *SaveResponse) String() string { func (*SaveResponse) ProtoMessage() {} func (x *SaveResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[18] + mi := &file_pb_bundle_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2099,7 +2263,7 @@ func (x *SaveResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SaveResponse.ProtoReflect.Descriptor instead. func (*SaveResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{18} + return file_pb_bundle_proto_rawDescGZIP(), []int{21} } func (x *SaveResponse) GetMsg() string { @@ -2140,7 +2304,7 @@ type SelectValueAddService struct { func (x *SelectValueAddService) Reset() { *x = SelectValueAddService{} - mi := &file_pb_bundle_proto_msgTypes[19] + mi := &file_pb_bundle_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2152,7 +2316,7 @@ func (x *SelectValueAddService) String() string { func (*SelectValueAddService) ProtoMessage() {} func (x *SelectValueAddService) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[19] + mi := &file_pb_bundle_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2165,7 +2329,7 @@ func (x *SelectValueAddService) ProtoReflect() protoreflect.Message { // Deprecated: Use SelectValueAddService.ProtoReflect.Descriptor instead. func (*SelectValueAddService) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{19} + return file_pb_bundle_proto_rawDescGZIP(), []int{22} } func (x *SelectValueAddService) GetValueAddUuid() string { @@ -2241,7 +2405,7 @@ type SelectValueAdditionalService struct { func (x *SelectValueAdditionalService) Reset() { *x = SelectValueAdditionalService{} - mi := &file_pb_bundle_proto_msgTypes[20] + mi := &file_pb_bundle_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2253,7 +2417,7 @@ func (x *SelectValueAdditionalService) String() string { func (*SelectValueAdditionalService) ProtoMessage() {} func (x *SelectValueAdditionalService) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[20] + mi := &file_pb_bundle_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2266,7 +2430,7 @@ func (x *SelectValueAdditionalService) ProtoReflect() protoreflect.Message { // Deprecated: Use SelectValueAdditionalService.ProtoReflect.Descriptor instead. func (*SelectValueAdditionalService) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{20} + return file_pb_bundle_proto_rawDescGZIP(), []int{23} } func (x *SelectValueAdditionalService) GetValueAddUuid() string { @@ -2334,7 +2498,7 @@ type DelBundleRequest struct { func (x *DelBundleRequest) Reset() { *x = DelBundleRequest{} - mi := &file_pb_bundle_proto_msgTypes[21] + mi := &file_pb_bundle_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2346,7 +2510,7 @@ func (x *DelBundleRequest) String() string { func (*DelBundleRequest) ProtoMessage() {} func (x *DelBundleRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[21] + mi := &file_pb_bundle_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2359,7 +2523,7 @@ func (x *DelBundleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DelBundleRequest.ProtoReflect.Descriptor instead. func (*DelBundleRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{21} + return file_pb_bundle_proto_rawDescGZIP(), []int{24} } func (x *DelBundleRequest) GetUuid() string { @@ -2382,7 +2546,7 @@ type BundleListRequest struct { func (x *BundleListRequest) Reset() { *x = BundleListRequest{} - mi := &file_pb_bundle_proto_msgTypes[22] + mi := &file_pb_bundle_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2394,7 +2558,7 @@ func (x *BundleListRequest) String() string { func (*BundleListRequest) ProtoMessage() {} func (x *BundleListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[22] + mi := &file_pb_bundle_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2407,7 +2571,7 @@ func (x *BundleListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleListRequest.ProtoReflect.Descriptor instead. func (*BundleListRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{22} + return file_pb_bundle_proto_rawDescGZIP(), []int{25} } func (x *BundleListRequest) GetPage() int32 { @@ -2455,7 +2619,7 @@ type BundleListResponse struct { func (x *BundleListResponse) Reset() { *x = BundleListResponse{} - mi := &file_pb_bundle_proto_msgTypes[23] + mi := &file_pb_bundle_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2467,7 +2631,7 @@ func (x *BundleListResponse) String() string { func (*BundleListResponse) ProtoMessage() {} func (x *BundleListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[23] + mi := &file_pb_bundle_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2480,7 +2644,7 @@ func (x *BundleListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleListResponse.ProtoReflect.Descriptor instead. func (*BundleListResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{23} + return file_pb_bundle_proto_rawDescGZIP(), []int{26} } func (x *BundleListResponse) GetBundles() []*BundleProfile { @@ -2507,7 +2671,7 @@ type BundleDetailRequest struct { func (x *BundleDetailRequest) Reset() { *x = BundleDetailRequest{} - mi := &file_pb_bundle_proto_msgTypes[24] + mi := &file_pb_bundle_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2519,7 +2683,7 @@ func (x *BundleDetailRequest) String() string { func (*BundleDetailRequest) ProtoMessage() {} func (x *BundleDetailRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[24] + mi := &file_pb_bundle_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2532,7 +2696,7 @@ func (x *BundleDetailRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleDetailRequest.ProtoReflect.Descriptor instead. func (*BundleDetailRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{24} + return file_pb_bundle_proto_rawDescGZIP(), []int{27} } func (x *BundleDetailRequest) GetUuid() string { @@ -2559,7 +2723,7 @@ type HandShelfRequest struct { func (x *HandShelfRequest) Reset() { *x = HandShelfRequest{} - mi := &file_pb_bundle_proto_msgTypes[25] + mi := &file_pb_bundle_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2571,7 +2735,7 @@ func (x *HandShelfRequest) String() string { func (*HandShelfRequest) ProtoMessage() {} func (x *HandShelfRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[25] + mi := &file_pb_bundle_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2584,7 +2748,7 @@ func (x *HandShelfRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use HandShelfRequest.ProtoReflect.Descriptor instead. func (*HandShelfRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{25} + return file_pb_bundle_proto_rawDescGZIP(), []int{28} } func (x *HandShelfRequest) GetUuid() string { @@ -2611,7 +2775,7 @@ type BundleDetailResponse struct { func (x *BundleDetailResponse) Reset() { *x = BundleDetailResponse{} - mi := &file_pb_bundle_proto_msgTypes[26] + mi := &file_pb_bundle_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2623,7 +2787,7 @@ func (x *BundleDetailResponse) String() string { func (*BundleDetailResponse) ProtoMessage() {} func (x *BundleDetailResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[26] + mi := &file_pb_bundle_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2636,7 +2800,7 @@ func (x *BundleDetailResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleDetailResponse.ProtoReflect.Descriptor instead. func (*BundleDetailResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{26} + return file_pb_bundle_proto_rawDescGZIP(), []int{29} } func (x *BundleDetailResponse) GetBundle() *BundleProfile { @@ -2663,7 +2827,7 @@ type BundleDetailResponseV2 struct { func (x *BundleDetailResponseV2) Reset() { *x = BundleDetailResponseV2{} - mi := &file_pb_bundle_proto_msgTypes[27] + mi := &file_pb_bundle_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2675,7 +2839,7 @@ func (x *BundleDetailResponseV2) String() string { func (*BundleDetailResponseV2) ProtoMessage() {} func (x *BundleDetailResponseV2) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[27] + mi := &file_pb_bundle_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2688,7 +2852,7 @@ func (x *BundleDetailResponseV2) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleDetailResponseV2.ProtoReflect.Descriptor instead. func (*BundleDetailResponseV2) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{27} + return file_pb_bundle_proto_rawDescGZIP(), []int{30} } func (x *BundleDetailResponseV2) GetBundle() *BundleProfile { @@ -2753,7 +2917,7 @@ type OrderRecord struct { func (x *OrderRecord) Reset() { *x = OrderRecord{} - mi := &file_pb_bundle_proto_msgTypes[28] + mi := &file_pb_bundle_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2765,7 +2929,7 @@ func (x *OrderRecord) String() string { func (*OrderRecord) ProtoMessage() {} func (x *OrderRecord) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[28] + mi := &file_pb_bundle_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2778,7 +2942,7 @@ func (x *OrderRecord) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderRecord.ProtoReflect.Descriptor instead. func (*OrderRecord) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{28} + return file_pb_bundle_proto_rawDescGZIP(), []int{31} } func (x *OrderRecord) GetUuid() string { @@ -3073,7 +3237,7 @@ type AddInfo struct { func (x *AddInfo) Reset() { *x = AddInfo{} - mi := &file_pb_bundle_proto_msgTypes[29] + mi := &file_pb_bundle_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3085,7 +3249,7 @@ func (x *AddInfo) String() string { func (*AddInfo) ProtoMessage() {} func (x *AddInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[29] + mi := &file_pb_bundle_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3098,7 +3262,7 @@ func (x *AddInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AddInfo.ProtoReflect.Descriptor instead. func (*AddInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{29} + return file_pb_bundle_proto_rawDescGZIP(), []int{32} } func (x *AddInfo) GetOrderNo() string { @@ -3151,7 +3315,7 @@ type OrderAddRecord struct { func (x *OrderAddRecord) Reset() { *x = OrderAddRecord{} - mi := &file_pb_bundle_proto_msgTypes[30] + mi := &file_pb_bundle_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3163,7 +3327,7 @@ func (x *OrderAddRecord) String() string { func (*OrderAddRecord) ProtoMessage() {} func (x *OrderAddRecord) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[30] + mi := &file_pb_bundle_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3176,7 +3340,7 @@ func (x *OrderAddRecord) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderAddRecord.ProtoReflect.Descriptor instead. func (*OrderAddRecord) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{30} + return file_pb_bundle_proto_rawDescGZIP(), []int{33} } func (x *OrderAddRecord) GetBundleUuid() string { @@ -3285,7 +3449,7 @@ type AddPriceOptionsInfo struct { func (x *AddPriceOptionsInfo) Reset() { *x = AddPriceOptionsInfo{} - mi := &file_pb_bundle_proto_msgTypes[31] + mi := &file_pb_bundle_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3297,7 +3461,7 @@ func (x *AddPriceOptionsInfo) String() string { func (*AddPriceOptionsInfo) ProtoMessage() {} func (x *AddPriceOptionsInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[31] + mi := &file_pb_bundle_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3310,7 +3474,7 @@ func (x *AddPriceOptionsInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AddPriceOptionsInfo.ProtoReflect.Descriptor instead. func (*AddPriceOptionsInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{31} + return file_pb_bundle_proto_rawDescGZIP(), []int{34} } func (x *AddPriceOptionsInfo) GetId() int32 { @@ -3373,7 +3537,7 @@ type PriceOptionsInfo struct { func (x *PriceOptionsInfo) Reset() { *x = PriceOptionsInfo{} - mi := &file_pb_bundle_proto_msgTypes[32] + mi := &file_pb_bundle_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3385,7 +3549,7 @@ func (x *PriceOptionsInfo) String() string { func (*PriceOptionsInfo) ProtoMessage() {} func (x *PriceOptionsInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[32] + mi := &file_pb_bundle_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3398,7 +3562,7 @@ func (x *PriceOptionsInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PriceOptionsInfo.ProtoReflect.Descriptor instead. func (*PriceOptionsInfo) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{32} + return file_pb_bundle_proto_rawDescGZIP(), []int{35} } func (x *PriceOptionsInfo) GetId() int32 { @@ -3446,7 +3610,7 @@ type OrderRecordsRequest struct { func (x *OrderRecordsRequest) Reset() { *x = OrderRecordsRequest{} - mi := &file_pb_bundle_proto_msgTypes[33] + mi := &file_pb_bundle_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3458,7 +3622,7 @@ func (x *OrderRecordsRequest) String() string { func (*OrderRecordsRequest) ProtoMessage() {} func (x *OrderRecordsRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[33] + mi := &file_pb_bundle_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3471,7 +3635,7 @@ func (x *OrderRecordsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderRecordsRequest.ProtoReflect.Descriptor instead. func (*OrderRecordsRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{33} + return file_pb_bundle_proto_rawDescGZIP(), []int{36} } func (x *OrderRecordsRequest) GetPage() int32 { @@ -3596,7 +3760,7 @@ type OrderRecordsResponse struct { func (x *OrderRecordsResponse) Reset() { *x = OrderRecordsResponse{} - mi := &file_pb_bundle_proto_msgTypes[34] + mi := &file_pb_bundle_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3608,7 +3772,7 @@ func (x *OrderRecordsResponse) String() string { func (*OrderRecordsResponse) ProtoMessage() {} func (x *OrderRecordsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[34] + mi := &file_pb_bundle_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3621,7 +3785,7 @@ func (x *OrderRecordsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderRecordsResponse.ProtoReflect.Descriptor instead. func (*OrderRecordsResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{34} + return file_pb_bundle_proto_rawDescGZIP(), []int{37} } func (x *OrderRecordsResponse) GetOrderRecords() []*OrderRecord { @@ -3651,7 +3815,7 @@ type OrderRecordsDetailRequest struct { func (x *OrderRecordsDetailRequest) Reset() { *x = OrderRecordsDetailRequest{} - mi := &file_pb_bundle_proto_msgTypes[35] + mi := &file_pb_bundle_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3663,7 +3827,7 @@ func (x *OrderRecordsDetailRequest) String() string { func (*OrderRecordsDetailRequest) ProtoMessage() {} func (x *OrderRecordsDetailRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[35] + mi := &file_pb_bundle_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3676,7 +3840,7 @@ func (x *OrderRecordsDetailRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderRecordsDetailRequest.ProtoReflect.Descriptor instead. func (*OrderRecordsDetailRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{35} + return file_pb_bundle_proto_rawDescGZIP(), []int{38} } func (x *OrderRecordsDetailRequest) GetUuid() string { @@ -3724,7 +3888,7 @@ type OrderRecordsDetailResponse struct { func (x *OrderRecordsDetailResponse) Reset() { *x = OrderRecordsDetailResponse{} - mi := &file_pb_bundle_proto_msgTypes[36] + mi := &file_pb_bundle_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3736,7 +3900,7 @@ func (x *OrderRecordsDetailResponse) String() string { func (*OrderRecordsDetailResponse) ProtoMessage() {} func (x *OrderRecordsDetailResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[36] + mi := &file_pb_bundle_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3749,7 +3913,7 @@ func (x *OrderRecordsDetailResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use OrderRecordsDetailResponse.ProtoReflect.Descriptor instead. func (*OrderRecordsDetailResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{36} + return file_pb_bundle_proto_rawDescGZIP(), []int{39} } func (x *OrderRecordsDetailResponse) GetOrderRecord() *OrderRecord { @@ -3785,7 +3949,7 @@ type ValueAddBundleProfile struct { func (x *ValueAddBundleProfile) Reset() { *x = ValueAddBundleProfile{} - mi := &file_pb_bundle_proto_msgTypes[37] + mi := &file_pb_bundle_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3797,7 +3961,7 @@ func (x *ValueAddBundleProfile) String() string { func (*ValueAddBundleProfile) ProtoMessage() {} func (x *ValueAddBundleProfile) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[37] + mi := &file_pb_bundle_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3810,7 +3974,7 @@ func (x *ValueAddBundleProfile) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddBundleProfile.ProtoReflect.Descriptor instead. func (*ValueAddBundleProfile) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{37} + return file_pb_bundle_proto_rawDescGZIP(), []int{40} } func (x *ValueAddBundleProfile) GetUuid() string { @@ -3892,7 +4056,7 @@ type CreateValueAddBundleRequest struct { func (x *CreateValueAddBundleRequest) Reset() { *x = CreateValueAddBundleRequest{} - mi := &file_pb_bundle_proto_msgTypes[38] + mi := &file_pb_bundle_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3904,7 +4068,7 @@ func (x *CreateValueAddBundleRequest) String() string { func (*CreateValueAddBundleRequest) ProtoMessage() {} func (x *CreateValueAddBundleRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[38] + mi := &file_pb_bundle_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3917,7 +4081,7 @@ func (x *CreateValueAddBundleRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateValueAddBundleRequest.ProtoReflect.Descriptor instead. func (*CreateValueAddBundleRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{38} + return file_pb_bundle_proto_rawDescGZIP(), []int{41} } func (x *CreateValueAddBundleRequest) GetNum() int32 { @@ -3939,7 +4103,7 @@ type CreateValueAddBundleResponse struct { func (x *CreateValueAddBundleResponse) Reset() { *x = CreateValueAddBundleResponse{} - mi := &file_pb_bundle_proto_msgTypes[39] + mi := &file_pb_bundle_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3951,7 +4115,7 @@ func (x *CreateValueAddBundleResponse) String() string { func (*CreateValueAddBundleResponse) ProtoMessage() {} func (x *CreateValueAddBundleResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[39] + mi := &file_pb_bundle_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3964,7 +4128,7 @@ func (x *CreateValueAddBundleResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateValueAddBundleResponse.ProtoReflect.Descriptor instead. func (*CreateValueAddBundleResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{39} + return file_pb_bundle_proto_rawDescGZIP(), []int{42} } func (x *CreateValueAddBundleResponse) GetUuid() string { @@ -4007,7 +4171,7 @@ type ValueAddBundleListRequest struct { func (x *ValueAddBundleListRequest) Reset() { *x = ValueAddBundleListRequest{} - mi := &file_pb_bundle_proto_msgTypes[40] + mi := &file_pb_bundle_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4019,7 +4183,7 @@ func (x *ValueAddBundleListRequest) String() string { func (*ValueAddBundleListRequest) ProtoMessage() {} func (x *ValueAddBundleListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[40] + mi := &file_pb_bundle_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4032,7 +4196,7 @@ func (x *ValueAddBundleListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddBundleListRequest.ProtoReflect.Descriptor instead. func (*ValueAddBundleListRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{40} + return file_pb_bundle_proto_rawDescGZIP(), []int{43} } func (x *ValueAddBundleListRequest) GetUserId() int32 { @@ -4072,7 +4236,7 @@ type ValueAddBundleListResponse struct { func (x *ValueAddBundleListResponse) Reset() { *x = ValueAddBundleListResponse{} - mi := &file_pb_bundle_proto_msgTypes[41] + mi := &file_pb_bundle_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4084,7 +4248,7 @@ func (x *ValueAddBundleListResponse) String() string { func (*ValueAddBundleListResponse) ProtoMessage() {} func (x *ValueAddBundleListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[41] + mi := &file_pb_bundle_proto_msgTypes[44] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4097,7 +4261,7 @@ func (x *ValueAddBundleListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddBundleListResponse.ProtoReflect.Descriptor instead. func (*ValueAddBundleListResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{41} + return file_pb_bundle_proto_rawDescGZIP(), []int{44} } func (x *ValueAddBundleListResponse) GetOriginalPrice() float32 { @@ -4165,7 +4329,7 @@ type ValueAddBundleDetailRequest struct { func (x *ValueAddBundleDetailRequest) Reset() { *x = ValueAddBundleDetailRequest{} - mi := &file_pb_bundle_proto_msgTypes[42] + mi := &file_pb_bundle_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4177,7 +4341,7 @@ func (x *ValueAddBundleDetailRequest) String() string { func (*ValueAddBundleDetailRequest) ProtoMessage() {} func (x *ValueAddBundleDetailRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[42] + mi := &file_pb_bundle_proto_msgTypes[45] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4190,7 +4354,7 @@ func (x *ValueAddBundleDetailRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddBundleDetailRequest.ProtoReflect.Descriptor instead. func (*ValueAddBundleDetailRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{42} + return file_pb_bundle_proto_rawDescGZIP(), []int{45} } func (x *ValueAddBundleDetailRequest) GetUuid() string { @@ -4211,7 +4375,7 @@ type ValueAddBundleDetailResponse struct { func (x *ValueAddBundleDetailResponse) Reset() { *x = ValueAddBundleDetailResponse{} - mi := &file_pb_bundle_proto_msgTypes[43] + mi := &file_pb_bundle_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4223,7 +4387,7 @@ func (x *ValueAddBundleDetailResponse) String() string { func (*ValueAddBundleDetailResponse) ProtoMessage() {} func (x *ValueAddBundleDetailResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[43] + mi := &file_pb_bundle_proto_msgTypes[46] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4236,7 +4400,7 @@ func (x *ValueAddBundleDetailResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddBundleDetailResponse.ProtoReflect.Descriptor instead. func (*ValueAddBundleDetailResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{43} + return file_pb_bundle_proto_rawDescGZIP(), []int{46} } func (x *ValueAddBundleDetailResponse) GetData() *ValueAddBundleProfile { @@ -4269,7 +4433,7 @@ type FinancialConfirmationRequest struct { func (x *FinancialConfirmationRequest) Reset() { *x = FinancialConfirmationRequest{} - mi := &file_pb_bundle_proto_msgTypes[44] + mi := &file_pb_bundle_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4281,7 +4445,7 @@ func (x *FinancialConfirmationRequest) String() string { func (*FinancialConfirmationRequest) ProtoMessage() {} func (x *FinancialConfirmationRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[44] + mi := &file_pb_bundle_proto_msgTypes[47] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4294,7 +4458,7 @@ func (x *FinancialConfirmationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use FinancialConfirmationRequest.ProtoReflect.Descriptor instead. func (*FinancialConfirmationRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{44} + return file_pb_bundle_proto_rawDescGZIP(), []int{47} } func (x *FinancialConfirmationRequest) GetOrderNo() string { @@ -4322,7 +4486,7 @@ type ValueAddService struct { func (x *ValueAddService) Reset() { *x = ValueAddService{} - mi := &file_pb_bundle_proto_msgTypes[45] + mi := &file_pb_bundle_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4334,7 +4498,7 @@ func (x *ValueAddService) String() string { func (*ValueAddService) ProtoMessage() {} func (x *ValueAddService) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[45] + mi := &file_pb_bundle_proto_msgTypes[48] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4347,7 +4511,7 @@ func (x *ValueAddService) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddService.ProtoReflect.Descriptor instead. func (*ValueAddService) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{45} + return file_pb_bundle_proto_rawDescGZIP(), []int{48} } func (x *ValueAddService) GetUuid() string { @@ -4428,7 +4592,7 @@ type ValueAddServiceLang struct { func (x *ValueAddServiceLang) Reset() { *x = ValueAddServiceLang{} - mi := &file_pb_bundle_proto_msgTypes[46] + mi := &file_pb_bundle_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4440,7 +4604,7 @@ func (x *ValueAddServiceLang) String() string { func (*ValueAddServiceLang) ProtoMessage() {} func (x *ValueAddServiceLang) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[46] + mi := &file_pb_bundle_proto_msgTypes[49] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4453,7 +4617,7 @@ func (x *ValueAddServiceLang) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddServiceLang.ProtoReflect.Descriptor instead. func (*ValueAddServiceLang) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{46} + return file_pb_bundle_proto_rawDescGZIP(), []int{49} } func (x *ValueAddServiceLang) GetUuid() string { @@ -4570,7 +4734,7 @@ type ValueAddPriceOptions struct { func (x *ValueAddPriceOptions) Reset() { *x = ValueAddPriceOptions{} - mi := &file_pb_bundle_proto_msgTypes[47] + mi := &file_pb_bundle_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4582,7 +4746,7 @@ func (x *ValueAddPriceOptions) String() string { func (*ValueAddPriceOptions) ProtoMessage() {} func (x *ValueAddPriceOptions) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[47] + mi := &file_pb_bundle_proto_msgTypes[50] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4595,7 +4759,7 @@ func (x *ValueAddPriceOptions) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddPriceOptions.ProtoReflect.Descriptor instead. func (*ValueAddPriceOptions) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{47} + return file_pb_bundle_proto_rawDescGZIP(), []int{50} } func (x *ValueAddPriceOptions) GetId() int64 { @@ -4661,7 +4825,7 @@ type ValueAddServiceListRequest struct { func (x *ValueAddServiceListRequest) Reset() { *x = ValueAddServiceListRequest{} - mi := &file_pb_bundle_proto_msgTypes[48] + mi := &file_pb_bundle_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4673,7 +4837,7 @@ func (x *ValueAddServiceListRequest) String() string { func (*ValueAddServiceListRequest) ProtoMessage() {} func (x *ValueAddServiceListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[48] + mi := &file_pb_bundle_proto_msgTypes[51] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4686,7 +4850,7 @@ func (x *ValueAddServiceListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddServiceListRequest.ProtoReflect.Descriptor instead. func (*ValueAddServiceListRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{48} + return file_pb_bundle_proto_rawDescGZIP(), []int{51} } func (x *ValueAddServiceListRequest) GetPage() int32 { @@ -4735,7 +4899,7 @@ type ValueAddServiceListResponse struct { func (x *ValueAddServiceListResponse) Reset() { *x = ValueAddServiceListResponse{} - mi := &file_pb_bundle_proto_msgTypes[49] + mi := &file_pb_bundle_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4747,7 +4911,7 @@ func (x *ValueAddServiceListResponse) String() string { func (*ValueAddServiceListResponse) ProtoMessage() {} func (x *ValueAddServiceListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[49] + mi := &file_pb_bundle_proto_msgTypes[52] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4760,7 +4924,7 @@ func (x *ValueAddServiceListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddServiceListResponse.ProtoReflect.Descriptor instead. func (*ValueAddServiceListResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{49} + return file_pb_bundle_proto_rawDescGZIP(), []int{52} } func (x *ValueAddServiceListResponse) GetTotal() int32 { @@ -4795,7 +4959,7 @@ type ValueAddServiceDetailRequest struct { func (x *ValueAddServiceDetailRequest) Reset() { *x = ValueAddServiceDetailRequest{} - mi := &file_pb_bundle_proto_msgTypes[50] + mi := &file_pb_bundle_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4807,7 +4971,7 @@ func (x *ValueAddServiceDetailRequest) String() string { func (*ValueAddServiceDetailRequest) ProtoMessage() {} func (x *ValueAddServiceDetailRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[50] + mi := &file_pb_bundle_proto_msgTypes[53] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4820,7 +4984,7 @@ func (x *ValueAddServiceDetailRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddServiceDetailRequest.ProtoReflect.Descriptor instead. func (*ValueAddServiceDetailRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{50} + return file_pb_bundle_proto_rawDescGZIP(), []int{53} } func (x *ValueAddServiceDetailRequest) GetUuid() string { @@ -4847,7 +5011,7 @@ type ValueAddServiceDetailResponse struct { func (x *ValueAddServiceDetailResponse) Reset() { *x = ValueAddServiceDetailResponse{} - mi := &file_pb_bundle_proto_msgTypes[51] + mi := &file_pb_bundle_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4859,7 +5023,7 @@ func (x *ValueAddServiceDetailResponse) String() string { func (*ValueAddServiceDetailResponse) ProtoMessage() {} func (x *ValueAddServiceDetailResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[51] + mi := &file_pb_bundle_proto_msgTypes[54] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4872,7 +5036,7 @@ func (x *ValueAddServiceDetailResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueAddServiceDetailResponse.ProtoReflect.Descriptor instead. func (*ValueAddServiceDetailResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{51} + return file_pb_bundle_proto_rawDescGZIP(), []int{54} } func (x *ValueAddServiceDetailResponse) GetMsg() string { @@ -4900,7 +5064,7 @@ type CalculatePriceRequest struct { func (x *CalculatePriceRequest) Reset() { *x = CalculatePriceRequest{} - mi := &file_pb_bundle_proto_msgTypes[52] + mi := &file_pb_bundle_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4912,7 +5076,7 @@ func (x *CalculatePriceRequest) String() string { func (*CalculatePriceRequest) ProtoMessage() {} func (x *CalculatePriceRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[52] + mi := &file_pb_bundle_proto_msgTypes[55] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4925,7 +5089,7 @@ func (x *CalculatePriceRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CalculatePriceRequest.ProtoReflect.Descriptor instead. func (*CalculatePriceRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{52} + return file_pb_bundle_proto_rawDescGZIP(), []int{55} } func (x *CalculatePriceRequest) GetUuid() string { @@ -4959,7 +5123,7 @@ type CalculatePriceResponse struct { func (x *CalculatePriceResponse) Reset() { *x = CalculatePriceResponse{} - mi := &file_pb_bundle_proto_msgTypes[53] + mi := &file_pb_bundle_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4971,7 +5135,7 @@ func (x *CalculatePriceResponse) String() string { func (*CalculatePriceResponse) ProtoMessage() {} func (x *CalculatePriceResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[53] + mi := &file_pb_bundle_proto_msgTypes[56] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4984,7 +5148,7 @@ func (x *CalculatePriceResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CalculatePriceResponse.ProtoReflect.Descriptor instead. func (*CalculatePriceResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{53} + return file_pb_bundle_proto_rawDescGZIP(), []int{56} } func (x *CalculatePriceResponse) GetMsg() string { @@ -5011,7 +5175,7 @@ type BatchGetValueAddServiceLangRequest struct { func (x *BatchGetValueAddServiceLangRequest) Reset() { *x = BatchGetValueAddServiceLangRequest{} - mi := &file_pb_bundle_proto_msgTypes[54] + mi := &file_pb_bundle_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5023,7 +5187,7 @@ func (x *BatchGetValueAddServiceLangRequest) String() string { func (*BatchGetValueAddServiceLangRequest) ProtoMessage() {} func (x *BatchGetValueAddServiceLangRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[54] + mi := &file_pb_bundle_proto_msgTypes[57] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5036,7 +5200,7 @@ func (x *BatchGetValueAddServiceLangRequest) ProtoReflect() protoreflect.Message // Deprecated: Use BatchGetValueAddServiceLangRequest.ProtoReflect.Descriptor instead. func (*BatchGetValueAddServiceLangRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{54} + return file_pb_bundle_proto_rawDescGZIP(), []int{57} } func (x *BatchGetValueAddServiceLangRequest) GetUuids() []string { @@ -5063,7 +5227,7 @@ type BatchGetValueAddServiceLangResponse struct { func (x *BatchGetValueAddServiceLangResponse) Reset() { *x = BatchGetValueAddServiceLangResponse{} - mi := &file_pb_bundle_proto_msgTypes[55] + mi := &file_pb_bundle_proto_msgTypes[58] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5075,7 +5239,7 @@ func (x *BatchGetValueAddServiceLangResponse) String() string { func (*BatchGetValueAddServiceLangResponse) ProtoMessage() {} func (x *BatchGetValueAddServiceLangResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[55] + mi := &file_pb_bundle_proto_msgTypes[58] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5088,7 +5252,7 @@ func (x *BatchGetValueAddServiceLangResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use BatchGetValueAddServiceLangResponse.ProtoReflect.Descriptor instead. func (*BatchGetValueAddServiceLangResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{55} + return file_pb_bundle_proto_rawDescGZIP(), []int{58} } func (x *BatchGetValueAddServiceLangResponse) GetMsg() string { @@ -5126,7 +5290,7 @@ type BundleExtendRequest struct { func (x *BundleExtendRequest) Reset() { *x = BundleExtendRequest{} - mi := &file_pb_bundle_proto_msgTypes[56] + mi := &file_pb_bundle_proto_msgTypes[59] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5138,7 +5302,7 @@ func (x *BundleExtendRequest) String() string { func (*BundleExtendRequest) ProtoMessage() {} func (x *BundleExtendRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[56] + mi := &file_pb_bundle_proto_msgTypes[59] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5151,7 +5315,7 @@ func (x *BundleExtendRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleExtendRequest.ProtoReflect.Descriptor instead. func (*BundleExtendRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{56} + return file_pb_bundle_proto_rawDescGZIP(), []int{59} } func (x *BundleExtendRequest) GetUserId() int64 { @@ -5253,7 +5417,7 @@ type BundleExtendResponse struct { func (x *BundleExtendResponse) Reset() { *x = BundleExtendResponse{} - mi := &file_pb_bundle_proto_msgTypes[57] + mi := &file_pb_bundle_proto_msgTypes[60] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5265,7 +5429,7 @@ func (x *BundleExtendResponse) String() string { func (*BundleExtendResponse) ProtoMessage() {} func (x *BundleExtendResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[57] + mi := &file_pb_bundle_proto_msgTypes[60] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5278,7 +5442,7 @@ func (x *BundleExtendResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleExtendResponse.ProtoReflect.Descriptor instead. func (*BundleExtendResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{57} + return file_pb_bundle_proto_rawDescGZIP(), []int{60} } type BundleExtendRecordsListRequest struct { @@ -5297,7 +5461,7 @@ type BundleExtendRecordsListRequest struct { func (x *BundleExtendRecordsListRequest) Reset() { *x = BundleExtendRecordsListRequest{} - mi := &file_pb_bundle_proto_msgTypes[58] + mi := &file_pb_bundle_proto_msgTypes[61] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5309,7 +5473,7 @@ func (x *BundleExtendRecordsListRequest) String() string { func (*BundleExtendRecordsListRequest) ProtoMessage() {} func (x *BundleExtendRecordsListRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[58] + mi := &file_pb_bundle_proto_msgTypes[61] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5322,7 +5486,7 @@ func (x *BundleExtendRecordsListRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleExtendRecordsListRequest.ProtoReflect.Descriptor instead. func (*BundleExtendRecordsListRequest) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{58} + return file_pb_bundle_proto_rawDescGZIP(), []int{61} } func (x *BundleExtendRecordsListRequest) GetPage() int32 { @@ -5391,7 +5555,7 @@ type BundleExtendRecordsListResponse struct { func (x *BundleExtendRecordsListResponse) Reset() { *x = BundleExtendRecordsListResponse{} - mi := &file_pb_bundle_proto_msgTypes[59] + mi := &file_pb_bundle_proto_msgTypes[62] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5403,7 +5567,7 @@ func (x *BundleExtendRecordsListResponse) String() string { func (*BundleExtendRecordsListResponse) ProtoMessage() {} func (x *BundleExtendRecordsListResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[59] + mi := &file_pb_bundle_proto_msgTypes[62] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5416,7 +5580,7 @@ func (x *BundleExtendRecordsListResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleExtendRecordsListResponse.ProtoReflect.Descriptor instead. func (*BundleExtendRecordsListResponse) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{59} + return file_pb_bundle_proto_rawDescGZIP(), []int{62} } func (x *BundleExtendRecordsListResponse) GetTotal() int64 { @@ -5455,7 +5619,7 @@ type BundleExtendRecordItem struct { func (x *BundleExtendRecordItem) Reset() { *x = BundleExtendRecordItem{} - mi := &file_pb_bundle_proto_msgTypes[60] + mi := &file_pb_bundle_proto_msgTypes[63] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5467,7 +5631,7 @@ func (x *BundleExtendRecordItem) String() string { func (*BundleExtendRecordItem) ProtoMessage() {} func (x *BundleExtendRecordItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[60] + mi := &file_pb_bundle_proto_msgTypes[63] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5480,7 +5644,7 @@ func (x *BundleExtendRecordItem) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleExtendRecordItem.ProtoReflect.Descriptor instead. func (*BundleExtendRecordItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{60} + return file_pb_bundle_proto_rawDescGZIP(), []int{63} } func (x *BundleExtendRecordItem) GetUserName() string { @@ -5601,7 +5765,7 @@ type GetBundleBalanceListReq struct { func (x *GetBundleBalanceListReq) Reset() { *x = GetBundleBalanceListReq{} - mi := &file_pb_bundle_proto_msgTypes[61] + mi := &file_pb_bundle_proto_msgTypes[64] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5613,7 +5777,7 @@ func (x *GetBundleBalanceListReq) String() string { func (*GetBundleBalanceListReq) ProtoMessage() {} func (x *GetBundleBalanceListReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[61] + mi := &file_pb_bundle_proto_msgTypes[64] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5626,7 +5790,7 @@ func (x *GetBundleBalanceListReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleBalanceListReq.ProtoReflect.Descriptor instead. func (*GetBundleBalanceListReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{61} + return file_pb_bundle_proto_rawDescGZIP(), []int{64} } func (x *GetBundleBalanceListReq) GetUserName() string { @@ -5728,7 +5892,7 @@ type GetBundleBalanceReq struct { func (x *GetBundleBalanceReq) Reset() { *x = GetBundleBalanceReq{} - mi := &file_pb_bundle_proto_msgTypes[62] + mi := &file_pb_bundle_proto_msgTypes[65] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5740,7 +5904,7 @@ func (x *GetBundleBalanceReq) String() string { func (*GetBundleBalanceReq) ProtoMessage() {} func (x *GetBundleBalanceReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[62] + mi := &file_pb_bundle_proto_msgTypes[65] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5753,7 +5917,7 @@ func (x *GetBundleBalanceReq) ProtoReflect() protoreflect.Message { // Deprecated: Use GetBundleBalanceReq.ProtoReflect.Descriptor instead. func (*GetBundleBalanceReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{62} + return file_pb_bundle_proto_rawDescGZIP(), []int{65} } func (x *GetBundleBalanceReq) GetUserName() string { @@ -5894,7 +6058,7 @@ type BundleBalanceItem struct { func (x *BundleBalanceItem) Reset() { *x = BundleBalanceItem{} - mi := &file_pb_bundle_proto_msgTypes[63] + mi := &file_pb_bundle_proto_msgTypes[66] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -5906,7 +6070,7 @@ func (x *BundleBalanceItem) String() string { func (*BundleBalanceItem) ProtoMessage() {} func (x *BundleBalanceItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[63] + mi := &file_pb_bundle_proto_msgTypes[66] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -5919,7 +6083,7 @@ func (x *BundleBalanceItem) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleBalanceItem.ProtoReflect.Descriptor instead. func (*BundleBalanceItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{63} + return file_pb_bundle_proto_rawDescGZIP(), []int{66} } func (x *BundleBalanceItem) GetUserId() int32 { @@ -6528,7 +6692,7 @@ type BundleBalanceExportItem struct { func (x *BundleBalanceExportItem) Reset() { *x = BundleBalanceExportItem{} - mi := &file_pb_bundle_proto_msgTypes[64] + mi := &file_pb_bundle_proto_msgTypes[67] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -6540,7 +6704,7 @@ func (x *BundleBalanceExportItem) String() string { func (*BundleBalanceExportItem) ProtoMessage() {} func (x *BundleBalanceExportItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[64] + mi := &file_pb_bundle_proto_msgTypes[67] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -6553,7 +6717,7 @@ func (x *BundleBalanceExportItem) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleBalanceExportItem.ProtoReflect.Descriptor instead. func (*BundleBalanceExportItem) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{64} + return file_pb_bundle_proto_rawDescGZIP(), []int{67} } func (x *BundleBalanceExportItem) GetMonth() string { @@ -7038,7 +7202,7 @@ type BundleBalanceExportReq struct { func (x *BundleBalanceExportReq) Reset() { *x = BundleBalanceExportReq{} - mi := &file_pb_bundle_proto_msgTypes[65] + mi := &file_pb_bundle_proto_msgTypes[68] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7050,7 +7214,7 @@ func (x *BundleBalanceExportReq) String() string { func (*BundleBalanceExportReq) ProtoMessage() {} func (x *BundleBalanceExportReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[65] + mi := &file_pb_bundle_proto_msgTypes[68] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7063,7 +7227,7 @@ func (x *BundleBalanceExportReq) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleBalanceExportReq.ProtoReflect.Descriptor instead. func (*BundleBalanceExportReq) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{65} + return file_pb_bundle_proto_rawDescGZIP(), []int{68} } func (x *BundleBalanceExportReq) GetMonth() string { @@ -7111,7 +7275,7 @@ type BundleBalanceExportResp struct { func (x *BundleBalanceExportResp) Reset() { *x = BundleBalanceExportResp{} - mi := &file_pb_bundle_proto_msgTypes[66] + mi := &file_pb_bundle_proto_msgTypes[69] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7123,7 +7287,7 @@ func (x *BundleBalanceExportResp) String() string { func (*BundleBalanceExportResp) ProtoMessage() {} func (x *BundleBalanceExportResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[66] + mi := &file_pb_bundle_proto_msgTypes[69] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7136,7 +7300,7 @@ func (x *BundleBalanceExportResp) ProtoReflect() protoreflect.Message { // Deprecated: Use BundleBalanceExportResp.ProtoReflect.Descriptor instead. func (*BundleBalanceExportResp) Descriptor() ([]byte, []int) { - return file_pb_bundle_proto_rawDescGZIP(), []int{66} + return file_pb_bundle_proto_rawDescGZIP(), []int{69} } func (x *BundleBalanceExportResp) GetTotal() int64 { @@ -7163,7 +7327,7 @@ type GetBundleBalanceListResp struct { func (x *GetBundleBalanceListResp) Reset() { *x = GetBundleBalanceListResp{} - mi := &file_pb_bundle_proto_msgTypes[67] + mi := &file_pb_bundle_proto_msgTypes[70] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7175,7 +7339,7 @@ func (x *GetBundleBalanceListResp) String() string { func (*GetBundleBalanceListResp) ProtoMessage() {} func (x *GetBundleBalanceListResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[67] + mi := &file_pb_bundle_proto_msgTypes[70] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7188,7 +7352,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{67} + return file_pb_bundle_proto_rawDescGZIP(), []int{70} } func (x *GetBundleBalanceListResp) GetTotal() int64 { @@ -7224,7 +7388,7 @@ type CreateBundleBalanceReq struct { func (x *CreateBundleBalanceReq) Reset() { *x = CreateBundleBalanceReq{} - mi := &file_pb_bundle_proto_msgTypes[68] + mi := &file_pb_bundle_proto_msgTypes[71] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7236,7 +7400,7 @@ func (x *CreateBundleBalanceReq) String() string { func (*CreateBundleBalanceReq) ProtoMessage() {} func (x *CreateBundleBalanceReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[68] + mi := &file_pb_bundle_proto_msgTypes[71] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7249,7 +7413,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{68} + return file_pb_bundle_proto_rawDescGZIP(), []int{71} } func (x *CreateBundleBalanceReq) GetUserId() int32 { @@ -7337,7 +7501,7 @@ type CreateBundleBalanceResp struct { func (x *CreateBundleBalanceResp) Reset() { *x = CreateBundleBalanceResp{} - mi := &file_pb_bundle_proto_msgTypes[69] + mi := &file_pb_bundle_proto_msgTypes[72] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7349,7 +7513,7 @@ func (x *CreateBundleBalanceResp) String() string { func (*CreateBundleBalanceResp) ProtoMessage() {} func (x *CreateBundleBalanceResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[69] + mi := &file_pb_bundle_proto_msgTypes[72] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7362,7 +7526,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{69} + return file_pb_bundle_proto_rawDescGZIP(), []int{72} } type AddBundleBalanceReq struct { @@ -7385,7 +7549,7 @@ type AddBundleBalanceReq struct { func (x *AddBundleBalanceReq) Reset() { *x = AddBundleBalanceReq{} - mi := &file_pb_bundle_proto_msgTypes[70] + mi := &file_pb_bundle_proto_msgTypes[73] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7397,7 +7561,7 @@ func (x *AddBundleBalanceReq) String() string { func (*AddBundleBalanceReq) ProtoMessage() {} func (x *AddBundleBalanceReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[70] + mi := &file_pb_bundle_proto_msgTypes[73] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7410,7 +7574,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{70} + return file_pb_bundle_proto_rawDescGZIP(), []int{73} } func (x *AddBundleBalanceReq) GetId() int32 { @@ -7506,7 +7670,7 @@ type AddBundleBalanceResp struct { func (x *AddBundleBalanceResp) Reset() { *x = AddBundleBalanceResp{} - mi := &file_pb_bundle_proto_msgTypes[71] + mi := &file_pb_bundle_proto_msgTypes[74] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7518,7 +7682,7 @@ func (x *AddBundleBalanceResp) String() string { func (*AddBundleBalanceResp) ProtoMessage() {} func (x *AddBundleBalanceResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[71] + mi := &file_pb_bundle_proto_msgTypes[74] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7531,7 +7695,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{71} + return file_pb_bundle_proto_rawDescGZIP(), []int{74} } func (x *AddBundleBalanceResp) GetUsedType() uint32 { @@ -7560,7 +7724,7 @@ type GetUsedRecordListReq struct { func (x *GetUsedRecordListReq) Reset() { *x = GetUsedRecordListReq{} - mi := &file_pb_bundle_proto_msgTypes[72] + mi := &file_pb_bundle_proto_msgTypes[75] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7572,7 +7736,7 @@ func (x *GetUsedRecordListReq) String() string { func (*GetUsedRecordListReq) ProtoMessage() {} func (x *GetUsedRecordListReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[72] + mi := &file_pb_bundle_proto_msgTypes[75] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7585,7 +7749,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{72} + return file_pb_bundle_proto_rawDescGZIP(), []int{75} } func (x *GetUsedRecordListReq) GetUser() string { @@ -7675,7 +7839,7 @@ type GetUsedRecordListResp struct { func (x *GetUsedRecordListResp) Reset() { *x = GetUsedRecordListResp{} - mi := &file_pb_bundle_proto_msgTypes[73] + mi := &file_pb_bundle_proto_msgTypes[76] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7687,7 +7851,7 @@ func (x *GetUsedRecordListResp) String() string { func (*GetUsedRecordListResp) ProtoMessage() {} func (x *GetUsedRecordListResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[73] + mi := &file_pb_bundle_proto_msgTypes[76] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7700,7 +7864,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{73} + return file_pb_bundle_proto_rawDescGZIP(), []int{76} } func (x *GetUsedRecordListResp) GetTotal() int64 { @@ -7741,7 +7905,7 @@ type WorkCastItem struct { func (x *WorkCastItem) Reset() { *x = WorkCastItem{} - mi := &file_pb_bundle_proto_msgTypes[74] + mi := &file_pb_bundle_proto_msgTypes[77] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7753,7 +7917,7 @@ func (x *WorkCastItem) String() string { func (*WorkCastItem) ProtoMessage() {} func (x *WorkCastItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[74] + mi := &file_pb_bundle_proto_msgTypes[77] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7766,7 +7930,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{74} + return file_pb_bundle_proto_rawDescGZIP(), []int{77} } func (x *WorkCastItem) GetArtistUuid() string { @@ -7890,7 +8054,7 @@ type GetImageWorkDetailReq struct { func (x *GetImageWorkDetailReq) Reset() { *x = GetImageWorkDetailReq{} - mi := &file_pb_bundle_proto_msgTypes[75] + mi := &file_pb_bundle_proto_msgTypes[78] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7902,7 +8066,7 @@ func (x *GetImageWorkDetailReq) String() string { func (*GetImageWorkDetailReq) ProtoMessage() {} func (x *GetImageWorkDetailReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[75] + mi := &file_pb_bundle_proto_msgTypes[78] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7915,7 +8079,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{75} + return file_pb_bundle_proto_rawDescGZIP(), []int{78} } func (x *GetImageWorkDetailReq) GetWorkId() string { @@ -7934,7 +8098,7 @@ type GetVedioWorkDetailReq struct { func (x *GetVedioWorkDetailReq) Reset() { *x = GetVedioWorkDetailReq{} - mi := &file_pb_bundle_proto_msgTypes[76] + mi := &file_pb_bundle_proto_msgTypes[79] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7946,7 +8110,7 @@ func (x *GetVedioWorkDetailReq) String() string { func (*GetVedioWorkDetailReq) ProtoMessage() {} func (x *GetVedioWorkDetailReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[76] + mi := &file_pb_bundle_proto_msgTypes[79] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -7959,7 +8123,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{76} + return file_pb_bundle_proto_rawDescGZIP(), []int{79} } func (x *GetVedioWorkDetailReq) GetWorkId() string { @@ -7981,7 +8145,7 @@ type GetImageWorkDetailResp struct { func (x *GetImageWorkDetailResp) Reset() { *x = GetImageWorkDetailResp{} - mi := &file_pb_bundle_proto_msgTypes[77] + mi := &file_pb_bundle_proto_msgTypes[80] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -7993,7 +8157,7 @@ func (x *GetImageWorkDetailResp) String() string { func (*GetImageWorkDetailResp) ProtoMessage() {} func (x *GetImageWorkDetailResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[77] + mi := &file_pb_bundle_proto_msgTypes[80] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8006,7 +8170,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{77} + return file_pb_bundle_proto_rawDescGZIP(), []int{80} } func (x *GetImageWorkDetailResp) GetWorkId() string { @@ -8048,7 +8212,7 @@ type GetVedioeWorkDetailResp struct { func (x *GetVedioeWorkDetailResp) Reset() { *x = GetVedioeWorkDetailResp{} - mi := &file_pb_bundle_proto_msgTypes[78] + mi := &file_pb_bundle_proto_msgTypes[81] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8060,7 +8224,7 @@ func (x *GetVedioeWorkDetailResp) String() string { func (*GetVedioeWorkDetailResp) ProtoMessage() {} func (x *GetVedioeWorkDetailResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[78] + mi := &file_pb_bundle_proto_msgTypes[81] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8073,7 +8237,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{78} + return file_pb_bundle_proto_rawDescGZIP(), []int{81} } func (x *GetVedioeWorkDetailResp) GetWorkId() string { @@ -8108,7 +8272,7 @@ type ToBeComfirmedWorksReq struct { func (x *ToBeComfirmedWorksReq) Reset() { *x = ToBeComfirmedWorksReq{} - mi := &file_pb_bundle_proto_msgTypes[79] + mi := &file_pb_bundle_proto_msgTypes[82] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8120,7 +8284,7 @@ func (x *ToBeComfirmedWorksReq) String() string { func (*ToBeComfirmedWorksReq) ProtoMessage() {} func (x *ToBeComfirmedWorksReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[79] + mi := &file_pb_bundle_proto_msgTypes[82] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8133,7 +8297,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{79} + return file_pb_bundle_proto_rawDescGZIP(), []int{82} } func (x *ToBeComfirmedWorksReq) GetArtistUuid() string { @@ -8179,7 +8343,7 @@ type WorkItem struct { func (x *WorkItem) Reset() { *x = WorkItem{} - mi := &file_pb_bundle_proto_msgTypes[80] + mi := &file_pb_bundle_proto_msgTypes[83] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8191,7 +8355,7 @@ func (x *WorkItem) String() string { func (*WorkItem) ProtoMessage() {} func (x *WorkItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[80] + mi := &file_pb_bundle_proto_msgTypes[83] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8204,7 +8368,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{80} + return file_pb_bundle_proto_rawDescGZIP(), []int{83} } func (x *WorkItem) GetUuid() string { @@ -8316,7 +8480,7 @@ type ToBeComfirmedWorksResp struct { func (x *ToBeComfirmedWorksResp) Reset() { *x = ToBeComfirmedWorksResp{} - mi := &file_pb_bundle_proto_msgTypes[81] + mi := &file_pb_bundle_proto_msgTypes[84] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8328,7 +8492,7 @@ func (x *ToBeComfirmedWorksResp) String() string { func (*ToBeComfirmedWorksResp) ProtoMessage() {} func (x *ToBeComfirmedWorksResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[81] + mi := &file_pb_bundle_proto_msgTypes[84] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8341,7 +8505,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{81} + return file_pb_bundle_proto_rawDescGZIP(), []int{84} } func (x *ToBeComfirmedWorksResp) GetTotal() int64 { @@ -8374,7 +8538,7 @@ type GetBundleBalanceByUserIdReq struct { func (x *GetBundleBalanceByUserIdReq) Reset() { *x = GetBundleBalanceByUserIdReq{} - mi := &file_pb_bundle_proto_msgTypes[82] + mi := &file_pb_bundle_proto_msgTypes[85] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8386,7 +8550,7 @@ func (x *GetBundleBalanceByUserIdReq) String() string { func (*GetBundleBalanceByUserIdReq) ProtoMessage() {} func (x *GetBundleBalanceByUserIdReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[82] + mi := &file_pb_bundle_proto_msgTypes[85] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8399,7 +8563,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{82} + return file_pb_bundle_proto_rawDescGZIP(), []int{85} } func (x *GetBundleBalanceByUserIdReq) GetUserId() int32 { @@ -8445,7 +8609,7 @@ type GetBundleBalanceByUserIdResp struct { func (x *GetBundleBalanceByUserIdResp) Reset() { *x = GetBundleBalanceByUserIdResp{} - mi := &file_pb_bundle_proto_msgTypes[83] + mi := &file_pb_bundle_proto_msgTypes[86] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8457,7 +8621,7 @@ func (x *GetBundleBalanceByUserIdResp) String() string { func (*GetBundleBalanceByUserIdResp) ProtoMessage() {} func (x *GetBundleBalanceByUserIdResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[83] + mi := &file_pb_bundle_proto_msgTypes[86] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8470,7 +8634,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{83} + return file_pb_bundle_proto_rawDescGZIP(), []int{86} } func (x *GetBundleBalanceByUserIdResp) GetOrderUUID() string { @@ -8678,7 +8842,7 @@ type OnlyAddValueListByOrderNoRequest struct { func (x *OnlyAddValueListByOrderNoRequest) Reset() { *x = OnlyAddValueListByOrderNoRequest{} - mi := &file_pb_bundle_proto_msgTypes[84] + mi := &file_pb_bundle_proto_msgTypes[87] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8690,7 +8854,7 @@ func (x *OnlyAddValueListByOrderNoRequest) String() string { func (*OnlyAddValueListByOrderNoRequest) ProtoMessage() {} func (x *OnlyAddValueListByOrderNoRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[84] + mi := &file_pb_bundle_proto_msgTypes[87] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8703,7 +8867,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{84} + return file_pb_bundle_proto_rawDescGZIP(), []int{87} } func (x *OnlyAddValueListByOrderNoRequest) GetOrderNo() string { @@ -8722,7 +8886,7 @@ type OnlyAddValueListByOrderNoResp struct { func (x *OnlyAddValueListByOrderNoResp) Reset() { *x = OnlyAddValueListByOrderNoResp{} - mi := &file_pb_bundle_proto_msgTypes[85] + mi := &file_pb_bundle_proto_msgTypes[88] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8734,7 +8898,7 @@ func (x *OnlyAddValueListByOrderNoResp) String() string { func (*OnlyAddValueListByOrderNoResp) ProtoMessage() {} func (x *OnlyAddValueListByOrderNoResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[85] + mi := &file_pb_bundle_proto_msgTypes[88] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8747,7 +8911,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{85} + return file_pb_bundle_proto_rawDescGZIP(), []int{88} } func (x *OnlyAddValueListByOrderNoResp) GetAddBundleInfos() []*AddBundleInfo { @@ -8770,7 +8934,7 @@ type AddBundleInfo struct { func (x *AddBundleInfo) Reset() { *x = AddBundleInfo{} - mi := &file_pb_bundle_proto_msgTypes[86] + mi := &file_pb_bundle_proto_msgTypes[89] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8782,7 +8946,7 @@ func (x *AddBundleInfo) String() string { func (*AddBundleInfo) ProtoMessage() {} func (x *AddBundleInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[86] + mi := &file_pb_bundle_proto_msgTypes[89] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8795,7 +8959,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{86} + return file_pb_bundle_proto_rawDescGZIP(), []int{89} } func (x *AddBundleInfo) GetCustomerID() string { @@ -8844,7 +9008,7 @@ type UpdateStatusAndPayTimeBySerialNumber struct { func (x *UpdateStatusAndPayTimeBySerialNumber) Reset() { *x = UpdateStatusAndPayTimeBySerialNumber{} - mi := &file_pb_bundle_proto_msgTypes[87] + mi := &file_pb_bundle_proto_msgTypes[90] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8856,7 +9020,7 @@ func (x *UpdateStatusAndPayTimeBySerialNumber) String() string { func (*UpdateStatusAndPayTimeBySerialNumber) ProtoMessage() {} func (x *UpdateStatusAndPayTimeBySerialNumber) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[87] + mi := &file_pb_bundle_proto_msgTypes[90] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8869,7 +9033,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{87} + return file_pb_bundle_proto_rawDescGZIP(), []int{90} } func (x *UpdateStatusAndPayTimeBySerialNumber) GetSerialNumber() string { @@ -8902,7 +9066,7 @@ type ConfirmWorkReq struct { func (x *ConfirmWorkReq) Reset() { *x = ConfirmWorkReq{} - mi := &file_pb_bundle_proto_msgTypes[88] + mi := &file_pb_bundle_proto_msgTypes[91] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8914,7 +9078,7 @@ func (x *ConfirmWorkReq) String() string { func (*ConfirmWorkReq) ProtoMessage() {} func (x *ConfirmWorkReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[88] + mi := &file_pb_bundle_proto_msgTypes[91] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8927,7 +9091,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{88} + return file_pb_bundle_proto_rawDescGZIP(), []int{91} } func (x *ConfirmWorkReq) GetWorkUuid() string { @@ -8945,7 +9109,7 @@ type ConfirmWorkResp struct { func (x *ConfirmWorkResp) Reset() { *x = ConfirmWorkResp{} - mi := &file_pb_bundle_proto_msgTypes[89] + mi := &file_pb_bundle_proto_msgTypes[92] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8957,7 +9121,7 @@ func (x *ConfirmWorkResp) String() string { func (*ConfirmWorkResp) ProtoMessage() {} func (x *ConfirmWorkResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[89] + mi := &file_pb_bundle_proto_msgTypes[92] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -8970,7 +9134,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{89} + return file_pb_bundle_proto_rawDescGZIP(), []int{92} } type ConfirmWorkItem struct { @@ -8985,7 +9149,7 @@ type ConfirmWorkItem struct { func (x *ConfirmWorkItem) Reset() { *x = ConfirmWorkItem{} - mi := &file_pb_bundle_proto_msgTypes[90] + mi := &file_pb_bundle_proto_msgTypes[93] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -8997,7 +9161,7 @@ func (x *ConfirmWorkItem) String() string { func (*ConfirmWorkItem) ProtoMessage() {} func (x *ConfirmWorkItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[90] + mi := &file_pb_bundle_proto_msgTypes[93] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9010,7 +9174,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{90} + return file_pb_bundle_proto_rawDescGZIP(), []int{93} } func (x *ConfirmWorkItem) GetWorkUuid() string { @@ -9049,7 +9213,7 @@ type GetWaitConfirmWorkListReq struct { func (x *GetWaitConfirmWorkListReq) Reset() { *x = GetWaitConfirmWorkListReq{} - mi := &file_pb_bundle_proto_msgTypes[91] + mi := &file_pb_bundle_proto_msgTypes[94] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9061,7 +9225,7 @@ func (x *GetWaitConfirmWorkListReq) String() string { func (*GetWaitConfirmWorkListReq) ProtoMessage() {} func (x *GetWaitConfirmWorkListReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[91] + mi := &file_pb_bundle_proto_msgTypes[94] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9074,7 +9238,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{91} + return file_pb_bundle_proto_rawDescGZIP(), []int{94} } type GetWaitConfirmWorkListResp struct { @@ -9086,7 +9250,7 @@ type GetWaitConfirmWorkListResp struct { func (x *GetWaitConfirmWorkListResp) Reset() { *x = GetWaitConfirmWorkListResp{} - mi := &file_pb_bundle_proto_msgTypes[92] + mi := &file_pb_bundle_proto_msgTypes[95] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9098,7 +9262,7 @@ func (x *GetWaitConfirmWorkListResp) String() string { func (*GetWaitConfirmWorkListResp) ProtoMessage() {} func (x *GetWaitConfirmWorkListResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[92] + mi := &file_pb_bundle_proto_msgTypes[95] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9111,7 +9275,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{92} + return file_pb_bundle_proto_rawDescGZIP(), []int{95} } func (x *GetWaitConfirmWorkListResp) GetData() []*ConfirmWorkItem { @@ -9130,7 +9294,7 @@ type AutoCreateUserAndOrderRequest struct { func (x *AutoCreateUserAndOrderRequest) Reset() { *x = AutoCreateUserAndOrderRequest{} - mi := &file_pb_bundle_proto_msgTypes[93] + mi := &file_pb_bundle_proto_msgTypes[96] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9142,7 +9306,7 @@ func (x *AutoCreateUserAndOrderRequest) String() string { func (*AutoCreateUserAndOrderRequest) ProtoMessage() {} func (x *AutoCreateUserAndOrderRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[93] + mi := &file_pb_bundle_proto_msgTypes[96] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9155,7 +9319,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{93} + return file_pb_bundle_proto_rawDescGZIP(), []int{96} } func (x *AutoCreateUserAndOrderRequest) GetNum() int32 { @@ -9174,7 +9338,7 @@ type UnfinishedInfos struct { func (x *UnfinishedInfos) Reset() { *x = UnfinishedInfos{} - mi := &file_pb_bundle_proto_msgTypes[94] + mi := &file_pb_bundle_proto_msgTypes[97] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9186,7 +9350,7 @@ func (x *UnfinishedInfos) String() string { func (*UnfinishedInfos) ProtoMessage() {} func (x *UnfinishedInfos) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[94] + mi := &file_pb_bundle_proto_msgTypes[97] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9199,7 +9363,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{94} + return file_pb_bundle_proto_rawDescGZIP(), []int{97} } func (x *UnfinishedInfos) GetUnfinishedInfos() []*UnfinishedInfo { @@ -9237,7 +9401,7 @@ type UnfinishedInfo struct { func (x *UnfinishedInfo) Reset() { *x = UnfinishedInfo{} - mi := &file_pb_bundle_proto_msgTypes[95] + mi := &file_pb_bundle_proto_msgTypes[98] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9249,7 +9413,7 @@ func (x *UnfinishedInfo) String() string { func (*UnfinishedInfo) ProtoMessage() {} func (x *UnfinishedInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[95] + mi := &file_pb_bundle_proto_msgTypes[98] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9262,7 +9426,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{95} + return file_pb_bundle_proto_rawDescGZIP(), []int{98} } func (x *UnfinishedInfo) GetID() uint32 { @@ -9414,7 +9578,7 @@ type SoftDeleteUnfinishedInfoRequest struct { func (x *SoftDeleteUnfinishedInfoRequest) Reset() { *x = SoftDeleteUnfinishedInfoRequest{} - mi := &file_pb_bundle_proto_msgTypes[96] + mi := &file_pb_bundle_proto_msgTypes[99] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9426,7 +9590,7 @@ func (x *SoftDeleteUnfinishedInfoRequest) String() string { func (*SoftDeleteUnfinishedInfoRequest) ProtoMessage() {} func (x *SoftDeleteUnfinishedInfoRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[96] + mi := &file_pb_bundle_proto_msgTypes[99] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9439,7 +9603,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{96} + return file_pb_bundle_proto_rawDescGZIP(), []int{99} } func (x *SoftDeleteUnfinishedInfoRequest) GetID() uint32 { @@ -9458,7 +9622,7 @@ type BundleActivateReq struct { func (x *BundleActivateReq) Reset() { *x = BundleActivateReq{} - mi := &file_pb_bundle_proto_msgTypes[97] + mi := &file_pb_bundle_proto_msgTypes[100] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9470,7 +9634,7 @@ func (x *BundleActivateReq) String() string { func (*BundleActivateReq) ProtoMessage() {} func (x *BundleActivateReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[97] + mi := &file_pb_bundle_proto_msgTypes[100] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9483,7 +9647,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{97} + return file_pb_bundle_proto_rawDescGZIP(), []int{100} } func (x *BundleActivateReq) GetIds() []uint32 { @@ -9501,7 +9665,7 @@ type BundleActivateResp struct { func (x *BundleActivateResp) Reset() { *x = BundleActivateResp{} - mi := &file_pb_bundle_proto_msgTypes[98] + mi := &file_pb_bundle_proto_msgTypes[101] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9513,7 +9677,7 @@ func (x *BundleActivateResp) String() string { func (*BundleActivateResp) ProtoMessage() {} func (x *BundleActivateResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[98] + mi := &file_pb_bundle_proto_msgTypes[101] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9526,7 +9690,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{98} + return file_pb_bundle_proto_rawDescGZIP(), []int{101} } // 查询待指派任务记录 @@ -9545,7 +9709,7 @@ type TaskQueryRequest struct { func (x *TaskQueryRequest) Reset() { *x = TaskQueryRequest{} - mi := &file_pb_bundle_proto_msgTypes[99] + mi := &file_pb_bundle_proto_msgTypes[102] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9557,7 +9721,7 @@ func (x *TaskQueryRequest) String() string { func (*TaskQueryRequest) ProtoMessage() {} func (x *TaskQueryRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[99] + mi := &file_pb_bundle_proto_msgTypes[102] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9570,7 +9734,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{99} + return file_pb_bundle_proto_rawDescGZIP(), []int{102} } func (x *TaskQueryRequest) GetKeyword() string { @@ -9634,7 +9798,7 @@ type TaskQueryResponse struct { func (x *TaskQueryResponse) Reset() { *x = TaskQueryResponse{} - mi := &file_pb_bundle_proto_msgTypes[100] + mi := &file_pb_bundle_proto_msgTypes[103] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9646,7 +9810,7 @@ func (x *TaskQueryResponse) String() string { func (*TaskQueryResponse) ProtoMessage() {} func (x *TaskQueryResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[100] + mi := &file_pb_bundle_proto_msgTypes[103] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9659,7 +9823,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{100} + return file_pb_bundle_proto_rawDescGZIP(), []int{103} } func (x *TaskQueryResponse) GetTasks() []*TaskManagementInfo { @@ -9709,7 +9873,7 @@ type TaskManagementInfo struct { func (x *TaskManagementInfo) Reset() { *x = TaskManagementInfo{} - mi := &file_pb_bundle_proto_msgTypes[101] + mi := &file_pb_bundle_proto_msgTypes[104] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9721,7 +9885,7 @@ func (x *TaskManagementInfo) String() string { func (*TaskManagementInfo) ProtoMessage() {} func (x *TaskManagementInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[101] + mi := &file_pb_bundle_proto_msgTypes[104] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9734,7 +9898,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{101} + return file_pb_bundle_proto_rawDescGZIP(), []int{104} } func (x *TaskManagementInfo) GetSubNum() string { @@ -9835,7 +9999,7 @@ type TaskAssignRequest struct { func (x *TaskAssignRequest) Reset() { *x = TaskAssignRequest{} - mi := &file_pb_bundle_proto_msgTypes[102] + mi := &file_pb_bundle_proto_msgTypes[105] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9847,7 +10011,7 @@ func (x *TaskAssignRequest) String() string { func (*TaskAssignRequest) ProtoMessage() {} func (x *TaskAssignRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[102] + mi := &file_pb_bundle_proto_msgTypes[105] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9860,7 +10024,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{102} + return file_pb_bundle_proto_rawDescGZIP(), []int{105} } func (x *TaskAssignRequest) GetSubNum() string { @@ -9966,7 +10130,7 @@ type UpdatePendingCountRequest struct { func (x *UpdatePendingCountRequest) Reset() { *x = UpdatePendingCountRequest{} - mi := &file_pb_bundle_proto_msgTypes[103] + mi := &file_pb_bundle_proto_msgTypes[106] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -9978,7 +10142,7 @@ func (x *UpdatePendingCountRequest) String() string { func (*UpdatePendingCountRequest) ProtoMessage() {} func (x *UpdatePendingCountRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[103] + mi := &file_pb_bundle_proto_msgTypes[106] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -9991,7 +10155,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{103} + return file_pb_bundle_proto_rawDescGZIP(), []int{106} } func (x *UpdatePendingCountRequest) GetSubNum() string { @@ -10074,7 +10238,7 @@ type AddHiddenTaskAssigneeRequest struct { func (x *AddHiddenTaskAssigneeRequest) Reset() { *x = AddHiddenTaskAssigneeRequest{} - mi := &file_pb_bundle_proto_msgTypes[104] + mi := &file_pb_bundle_proto_msgTypes[107] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10086,7 +10250,7 @@ func (x *AddHiddenTaskAssigneeRequest) String() string { func (*AddHiddenTaskAssigneeRequest) ProtoMessage() {} func (x *AddHiddenTaskAssigneeRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[104] + mi := &file_pb_bundle_proto_msgTypes[107] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10099,7 +10263,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{104} + return file_pb_bundle_proto_rawDescGZIP(), []int{107} } func (x *AddHiddenTaskAssigneeRequest) GetTaskAssignee() string { @@ -10126,7 +10290,7 @@ type RecentAssignRecordsRequest struct { func (x *RecentAssignRecordsRequest) Reset() { *x = RecentAssignRecordsRequest{} - mi := &file_pb_bundle_proto_msgTypes[105] + mi := &file_pb_bundle_proto_msgTypes[108] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10138,7 +10302,7 @@ func (x *RecentAssignRecordsRequest) String() string { func (*RecentAssignRecordsRequest) ProtoMessage() {} func (x *RecentAssignRecordsRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[105] + mi := &file_pb_bundle_proto_msgTypes[108] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10151,7 +10315,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{105} + return file_pb_bundle_proto_rawDescGZIP(), []int{108} } func (x *RecentAssignRecordsRequest) GetLimit() int32 { @@ -10171,7 +10335,7 @@ type RecentAssigneeItem struct { func (x *RecentAssigneeItem) Reset() { *x = RecentAssigneeItem{} - mi := &file_pb_bundle_proto_msgTypes[106] + mi := &file_pb_bundle_proto_msgTypes[109] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10183,7 +10347,7 @@ func (x *RecentAssigneeItem) String() string { func (*RecentAssigneeItem) ProtoMessage() {} func (x *RecentAssigneeItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[106] + mi := &file_pb_bundle_proto_msgTypes[109] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10196,7 +10360,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{106} + return file_pb_bundle_proto_rawDescGZIP(), []int{109} } func (x *RecentAssigneeItem) GetTaskAssignee() string { @@ -10222,7 +10386,7 @@ type RecentAssignRecordsResponse struct { func (x *RecentAssignRecordsResponse) Reset() { *x = RecentAssignRecordsResponse{} - mi := &file_pb_bundle_proto_msgTypes[107] + mi := &file_pb_bundle_proto_msgTypes[110] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10234,7 +10398,7 @@ func (x *RecentAssignRecordsResponse) String() string { func (*RecentAssignRecordsResponse) ProtoMessage() {} func (x *RecentAssignRecordsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[107] + mi := &file_pb_bundle_proto_msgTypes[110] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10247,7 +10411,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{107} + return file_pb_bundle_proto_rawDescGZIP(), []int{110} } func (x *RecentAssignRecordsResponse) GetOperatorList() []*RecentAssigneeItem { @@ -10278,7 +10442,7 @@ type EmployeeTaskQueryRequest struct { func (x *EmployeeTaskQueryRequest) Reset() { *x = EmployeeTaskQueryRequest{} - mi := &file_pb_bundle_proto_msgTypes[108] + mi := &file_pb_bundle_proto_msgTypes[111] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10290,7 +10454,7 @@ func (x *EmployeeTaskQueryRequest) String() string { func (*EmployeeTaskQueryRequest) ProtoMessage() {} func (x *EmployeeTaskQueryRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[108] + mi := &file_pb_bundle_proto_msgTypes[111] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10303,7 +10467,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{108} + return file_pb_bundle_proto_rawDescGZIP(), []int{111} } func (x *EmployeeTaskQueryRequest) GetTaskAssigneeNum() string { @@ -10402,7 +10566,7 @@ type EmployeeTaskQueryResponse struct { func (x *EmployeeTaskQueryResponse) Reset() { *x = EmployeeTaskQueryResponse{} - mi := &file_pb_bundle_proto_msgTypes[109] + mi := &file_pb_bundle_proto_msgTypes[112] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10414,7 +10578,7 @@ func (x *EmployeeTaskQueryResponse) String() string { func (*EmployeeTaskQueryResponse) ProtoMessage() {} func (x *EmployeeTaskQueryResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[109] + mi := &file_pb_bundle_proto_msgTypes[112] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10427,7 +10591,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{109} + return file_pb_bundle_proto_rawDescGZIP(), []int{112} } func (x *EmployeeTaskQueryResponse) GetRecords() []*TaskAssignRecordInfo { @@ -10490,7 +10654,7 @@ type TaskAssignRecordInfo struct { func (x *TaskAssignRecordInfo) Reset() { *x = TaskAssignRecordInfo{} - mi := &file_pb_bundle_proto_msgTypes[110] + mi := &file_pb_bundle_proto_msgTypes[113] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10502,7 +10666,7 @@ func (x *TaskAssignRecordInfo) String() string { func (*TaskAssignRecordInfo) ProtoMessage() {} func (x *TaskAssignRecordInfo) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[110] + mi := &file_pb_bundle_proto_msgTypes[113] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10515,7 +10679,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{110} + return file_pb_bundle_proto_rawDescGZIP(), []int{113} } func (x *TaskAssignRecordInfo) GetAssignRecordsUUID() string { @@ -10700,7 +10864,7 @@ type BatchAssignTaskItem struct { func (x *BatchAssignTaskItem) Reset() { *x = BatchAssignTaskItem{} - mi := &file_pb_bundle_proto_msgTypes[111] + mi := &file_pb_bundle_proto_msgTypes[114] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10712,7 +10876,7 @@ func (x *BatchAssignTaskItem) String() string { func (*BatchAssignTaskItem) ProtoMessage() {} func (x *BatchAssignTaskItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[111] + mi := &file_pb_bundle_proto_msgTypes[114] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10725,7 +10889,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{111} + return file_pb_bundle_proto_rawDescGZIP(), []int{114} } func (x *BatchAssignTaskItem) GetSubNum() string { @@ -10821,7 +10985,7 @@ type BatchAssignTaskRequest struct { func (x *BatchAssignTaskRequest) Reset() { *x = BatchAssignTaskRequest{} - mi := &file_pb_bundle_proto_msgTypes[112] + mi := &file_pb_bundle_proto_msgTypes[115] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10833,7 +10997,7 @@ func (x *BatchAssignTaskRequest) String() string { func (*BatchAssignTaskRequest) ProtoMessage() {} func (x *BatchAssignTaskRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[112] + mi := &file_pb_bundle_proto_msgTypes[115] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10846,7 +11010,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{112} + return file_pb_bundle_proto_rawDescGZIP(), []int{115} } func (x *BatchAssignTaskRequest) GetItems() []*BatchAssignTaskItem { @@ -10867,7 +11031,7 @@ type CompleteTaskManuallyRequest struct { func (x *CompleteTaskManuallyRequest) Reset() { *x = CompleteTaskManuallyRequest{} - mi := &file_pb_bundle_proto_msgTypes[113] + mi := &file_pb_bundle_proto_msgTypes[116] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10879,7 +11043,7 @@ func (x *CompleteTaskManuallyRequest) String() string { func (*CompleteTaskManuallyRequest) ProtoMessage() {} func (x *CompleteTaskManuallyRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[113] + mi := &file_pb_bundle_proto_msgTypes[116] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10892,7 +11056,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{113} + return file_pb_bundle_proto_rawDescGZIP(), []int{116} } func (x *CompleteTaskManuallyRequest) GetAssignRecordsUUID() string { @@ -10919,7 +11083,7 @@ type TerminateTaskByUUIDRequest struct { func (x *TerminateTaskByUUIDRequest) Reset() { *x = TerminateTaskByUUIDRequest{} - mi := &file_pb_bundle_proto_msgTypes[114] + mi := &file_pb_bundle_proto_msgTypes[117] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10931,7 +11095,7 @@ func (x *TerminateTaskByUUIDRequest) String() string { func (*TerminateTaskByUUIDRequest) ProtoMessage() {} func (x *TerminateTaskByUUIDRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[114] + mi := &file_pb_bundle_proto_msgTypes[117] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10944,7 +11108,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{114} + return file_pb_bundle_proto_rawDescGZIP(), []int{117} } func (x *TerminateTaskByUUIDRequest) GetAssignRecordsUUID() string { @@ -10964,7 +11128,7 @@ type BatchTerminateTaskRequest struct { func (x *BatchTerminateTaskRequest) Reset() { *x = BatchTerminateTaskRequest{} - mi := &file_pb_bundle_proto_msgTypes[115] + mi := &file_pb_bundle_proto_msgTypes[118] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -10976,7 +11140,7 @@ func (x *BatchTerminateTaskRequest) String() string { func (*BatchTerminateTaskRequest) ProtoMessage() {} func (x *BatchTerminateTaskRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[115] + mi := &file_pb_bundle_proto_msgTypes[118] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -10989,7 +11153,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{115} + return file_pb_bundle_proto_rawDescGZIP(), []int{118} } func (x *BatchTerminateTaskRequest) GetAssignRecordsUUIDs() []string { @@ -11008,7 +11172,7 @@ type RevertTaskCompletionByUUIDItemRequest struct { func (x *RevertTaskCompletionByUUIDItemRequest) Reset() { *x = RevertTaskCompletionByUUIDItemRequest{} - mi := &file_pb_bundle_proto_msgTypes[116] + mi := &file_pb_bundle_proto_msgTypes[119] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11020,7 +11184,7 @@ func (x *RevertTaskCompletionByUUIDItemRequest) String() string { func (*RevertTaskCompletionByUUIDItemRequest) ProtoMessage() {} func (x *RevertTaskCompletionByUUIDItemRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[116] + mi := &file_pb_bundle_proto_msgTypes[119] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11033,7 +11197,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{116} + return file_pb_bundle_proto_rawDescGZIP(), []int{119} } func (x *RevertTaskCompletionByUUIDItemRequest) GetUuid() string { @@ -11052,7 +11216,7 @@ type GetTaskActualStatusByUUIDRequest struct { func (x *GetTaskActualStatusByUUIDRequest) Reset() { *x = GetTaskActualStatusByUUIDRequest{} - mi := &file_pb_bundle_proto_msgTypes[117] + mi := &file_pb_bundle_proto_msgTypes[120] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11064,7 +11228,7 @@ func (x *GetTaskActualStatusByUUIDRequest) String() string { func (*GetTaskActualStatusByUUIDRequest) ProtoMessage() {} func (x *GetTaskActualStatusByUUIDRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[117] + mi := &file_pb_bundle_proto_msgTypes[120] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11077,7 +11241,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{117} + return file_pb_bundle_proto_rawDescGZIP(), []int{120} } func (x *GetTaskActualStatusByUUIDRequest) GetAssignRecordsUUID() string { @@ -11096,7 +11260,7 @@ type GetTaskActualStatusByUUIDResponse struct { func (x *GetTaskActualStatusByUUIDResponse) Reset() { *x = GetTaskActualStatusByUUIDResponse{} - mi := &file_pb_bundle_proto_msgTypes[118] + mi := &file_pb_bundle_proto_msgTypes[121] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11108,7 +11272,7 @@ func (x *GetTaskActualStatusByUUIDResponse) String() string { func (*GetTaskActualStatusByUUIDResponse) ProtoMessage() {} func (x *GetTaskActualStatusByUUIDResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[118] + mi := &file_pb_bundle_proto_msgTypes[121] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11121,7 +11285,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{118} + return file_pb_bundle_proto_rawDescGZIP(), []int{121} } func (x *GetTaskActualStatusByUUIDResponse) GetActualStatus() int32 { @@ -11146,7 +11310,7 @@ type UpdateTaskProgressRequest struct { func (x *UpdateTaskProgressRequest) Reset() { *x = UpdateTaskProgressRequest{} - mi := &file_pb_bundle_proto_msgTypes[119] + mi := &file_pb_bundle_proto_msgTypes[122] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11158,7 +11322,7 @@ func (x *UpdateTaskProgressRequest) String() string { func (*UpdateTaskProgressRequest) ProtoMessage() {} func (x *UpdateTaskProgressRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[119] + mi := &file_pb_bundle_proto_msgTypes[122] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11171,7 +11335,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{119} + return file_pb_bundle_proto_rawDescGZIP(), []int{122} } func (x *UpdateTaskProgressRequest) GetAssignRecordsUUID() string { @@ -11238,7 +11402,7 @@ type TaskAssignRecordsQueryRequest struct { func (x *TaskAssignRecordsQueryRequest) Reset() { *x = TaskAssignRecordsQueryRequest{} - mi := &file_pb_bundle_proto_msgTypes[120] + mi := &file_pb_bundle_proto_msgTypes[123] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11250,7 +11414,7 @@ func (x *TaskAssignRecordsQueryRequest) String() string { func (*TaskAssignRecordsQueryRequest) ProtoMessage() {} func (x *TaskAssignRecordsQueryRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[120] + mi := &file_pb_bundle_proto_msgTypes[123] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11263,7 +11427,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{120} + return file_pb_bundle_proto_rawDescGZIP(), []int{123} } func (x *TaskAssignRecordsQueryRequest) GetKeyword() string { @@ -11366,7 +11530,7 @@ type ComResponse struct { func (x *ComResponse) Reset() { *x = ComResponse{} - mi := &file_pb_bundle_proto_msgTypes[121] + mi := &file_pb_bundle_proto_msgTypes[124] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11378,7 +11542,7 @@ func (x *ComResponse) String() string { func (*ComResponse) ProtoMessage() {} func (x *ComResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[121] + mi := &file_pb_bundle_proto_msgTypes[124] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11391,7 +11555,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{121} + return file_pb_bundle_proto_rawDescGZIP(), []int{124} } func (x *ComResponse) GetMsg() string { @@ -11414,7 +11578,7 @@ type TaskAssignRecordsQueryResponse struct { func (x *TaskAssignRecordsQueryResponse) Reset() { *x = TaskAssignRecordsQueryResponse{} - mi := &file_pb_bundle_proto_msgTypes[122] + mi := &file_pb_bundle_proto_msgTypes[125] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11426,7 +11590,7 @@ func (x *TaskAssignRecordsQueryResponse) String() string { func (*TaskAssignRecordsQueryResponse) ProtoMessage() {} func (x *TaskAssignRecordsQueryResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[122] + mi := &file_pb_bundle_proto_msgTypes[125] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11439,7 +11603,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{122} + return file_pb_bundle_proto_rawDescGZIP(), []int{125} } func (x *TaskAssignRecordsQueryResponse) GetRecords() []*TaskAssignRecordInfo { @@ -11496,7 +11660,7 @@ type TaskAssignRecordsSummary struct { func (x *TaskAssignRecordsSummary) Reset() { *x = TaskAssignRecordsSummary{} - mi := &file_pb_bundle_proto_msgTypes[123] + mi := &file_pb_bundle_proto_msgTypes[126] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11508,7 +11672,7 @@ func (x *TaskAssignRecordsSummary) String() string { func (*TaskAssignRecordsSummary) ProtoMessage() {} func (x *TaskAssignRecordsSummary) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[123] + mi := &file_pb_bundle_proto_msgTypes[126] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11521,7 +11685,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{123} + return file_pb_bundle_proto_rawDescGZIP(), []int{126} } func (x *TaskAssignRecordsSummary) GetTotalPendingVideoScriptCount() int32 { @@ -11626,7 +11790,7 @@ type ArtistUploadStatsItem struct { func (x *ArtistUploadStatsItem) Reset() { *x = ArtistUploadStatsItem{} - mi := &file_pb_bundle_proto_msgTypes[124] + mi := &file_pb_bundle_proto_msgTypes[127] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11638,7 +11802,7 @@ func (x *ArtistUploadStatsItem) String() string { func (*ArtistUploadStatsItem) ProtoMessage() {} func (x *ArtistUploadStatsItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[124] + mi := &file_pb_bundle_proto_msgTypes[127] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11651,7 +11815,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{124} + return file_pb_bundle_proto_rawDescGZIP(), []int{127} } func (x *ArtistUploadStatsItem) GetSubNum() string { @@ -11877,7 +12041,7 @@ type ArtistUploadStatsResponse struct { func (x *ArtistUploadStatsResponse) Reset() { *x = ArtistUploadStatsResponse{} - mi := &file_pb_bundle_proto_msgTypes[125] + mi := &file_pb_bundle_proto_msgTypes[128] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11889,7 +12053,7 @@ func (x *ArtistUploadStatsResponse) String() string { func (*ArtistUploadStatsResponse) ProtoMessage() {} func (x *ArtistUploadStatsResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[125] + mi := &file_pb_bundle_proto_msgTypes[128] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11902,7 +12066,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{125} + return file_pb_bundle_proto_rawDescGZIP(), []int{128} } func (x *ArtistUploadStatsResponse) GetItems() []*ArtistUploadStatsItem { @@ -11944,7 +12108,7 @@ type PendingUploadBreakdownRequest struct { func (x *PendingUploadBreakdownRequest) Reset() { *x = PendingUploadBreakdownRequest{} - mi := &file_pb_bundle_proto_msgTypes[126] + mi := &file_pb_bundle_proto_msgTypes[129] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -11956,7 +12120,7 @@ func (x *PendingUploadBreakdownRequest) String() string { func (*PendingUploadBreakdownRequest) ProtoMessage() {} func (x *PendingUploadBreakdownRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[126] + mi := &file_pb_bundle_proto_msgTypes[129] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -11969,7 +12133,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{126} + return file_pb_bundle_proto_rawDescGZIP(), []int{129} } func (x *PendingUploadBreakdownRequest) GetSubNums() []string { @@ -12011,7 +12175,7 @@ type PendingUploadBreakdownItem struct { func (x *PendingUploadBreakdownItem) Reset() { *x = PendingUploadBreakdownItem{} - mi := &file_pb_bundle_proto_msgTypes[127] + mi := &file_pb_bundle_proto_msgTypes[130] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12023,7 +12187,7 @@ func (x *PendingUploadBreakdownItem) String() string { func (*PendingUploadBreakdownItem) ProtoMessage() {} func (x *PendingUploadBreakdownItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[127] + mi := &file_pb_bundle_proto_msgTypes[130] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12036,7 +12200,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{127} + return file_pb_bundle_proto_rawDescGZIP(), []int{130} } func (x *PendingUploadBreakdownItem) GetSubNum() string { @@ -12121,7 +12285,7 @@ type PendingUploadBreakdownResponse struct { func (x *PendingUploadBreakdownResponse) Reset() { *x = PendingUploadBreakdownResponse{} - mi := &file_pb_bundle_proto_msgTypes[128] + mi := &file_pb_bundle_proto_msgTypes[131] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12133,7 +12297,7 @@ func (x *PendingUploadBreakdownResponse) String() string { func (*PendingUploadBreakdownResponse) ProtoMessage() {} func (x *PendingUploadBreakdownResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[128] + mi := &file_pb_bundle_proto_msgTypes[131] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12146,7 +12310,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{128} + return file_pb_bundle_proto_rawDescGZIP(), []int{131} } func (x *PendingUploadBreakdownResponse) GetItems() []*PendingUploadBreakdownItem { @@ -12189,7 +12353,7 @@ type PendingAssignRequest struct { func (x *PendingAssignRequest) Reset() { *x = PendingAssignRequest{} - mi := &file_pb_bundle_proto_msgTypes[129] + mi := &file_pb_bundle_proto_msgTypes[132] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12201,7 +12365,7 @@ func (x *PendingAssignRequest) String() string { func (*PendingAssignRequest) ProtoMessage() {} func (x *PendingAssignRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[129] + mi := &file_pb_bundle_proto_msgTypes[132] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12214,7 +12378,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{129} + return file_pb_bundle_proto_rawDescGZIP(), []int{132} } func (x *PendingAssignRequest) GetSubNums() []string { @@ -12254,7 +12418,7 @@ type PendingAssignItem struct { func (x *PendingAssignItem) Reset() { *x = PendingAssignItem{} - mi := &file_pb_bundle_proto_msgTypes[130] + mi := &file_pb_bundle_proto_msgTypes[133] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12266,7 +12430,7 @@ func (x *PendingAssignItem) String() string { func (*PendingAssignItem) ProtoMessage() {} func (x *PendingAssignItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[130] + mi := &file_pb_bundle_proto_msgTypes[133] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12279,7 +12443,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{130} + return file_pb_bundle_proto_rawDescGZIP(), []int{133} } func (x *PendingAssignItem) GetSubNum() string { @@ -12344,7 +12508,7 @@ type PendingAssignResponse struct { func (x *PendingAssignResponse) Reset() { *x = PendingAssignResponse{} - mi := &file_pb_bundle_proto_msgTypes[131] + mi := &file_pb_bundle_proto_msgTypes[134] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12356,7 +12520,7 @@ func (x *PendingAssignResponse) String() string { func (*PendingAssignResponse) ProtoMessage() {} func (x *PendingAssignResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[131] + mi := &file_pb_bundle_proto_msgTypes[134] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12369,7 +12533,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{131} + return file_pb_bundle_proto_rawDescGZIP(), []int{134} } func (x *PendingAssignResponse) GetItems() []*PendingAssignItem { @@ -12411,7 +12575,7 @@ type ArtistBundleBalanceRequest struct { func (x *ArtistBundleBalanceRequest) Reset() { *x = ArtistBundleBalanceRequest{} - mi := &file_pb_bundle_proto_msgTypes[132] + mi := &file_pb_bundle_proto_msgTypes[135] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12423,7 +12587,7 @@ func (x *ArtistBundleBalanceRequest) String() string { func (*ArtistBundleBalanceRequest) ProtoMessage() {} func (x *ArtistBundleBalanceRequest) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[132] + mi := &file_pb_bundle_proto_msgTypes[135] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12436,7 +12600,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{132} + return file_pb_bundle_proto_rawDescGZIP(), []int{135} } func (x *ArtistBundleBalanceRequest) GetCustomerNum() string { @@ -12478,7 +12642,7 @@ type ArtistBundleBalanceResponse struct { func (x *ArtistBundleBalanceResponse) Reset() { *x = ArtistBundleBalanceResponse{} - mi := &file_pb_bundle_proto_msgTypes[133] + mi := &file_pb_bundle_proto_msgTypes[136] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12490,7 +12654,7 @@ func (x *ArtistBundleBalanceResponse) String() string { func (*ArtistBundleBalanceResponse) ProtoMessage() {} func (x *ArtistBundleBalanceResponse) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[133] + mi := &file_pb_bundle_proto_msgTypes[136] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12503,7 +12667,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{133} + return file_pb_bundle_proto_rawDescGZIP(), []int{136} } func (x *ArtistBundleBalanceResponse) GetBundleVideoBalance() int32 { @@ -12600,7 +12764,7 @@ type SetBundleBalanceLayoutReq struct { func (x *SetBundleBalanceLayoutReq) Reset() { *x = SetBundleBalanceLayoutReq{} - mi := &file_pb_bundle_proto_msgTypes[134] + mi := &file_pb_bundle_proto_msgTypes[137] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12612,7 +12776,7 @@ func (x *SetBundleBalanceLayoutReq) String() string { func (*SetBundleBalanceLayoutReq) ProtoMessage() {} func (x *SetBundleBalanceLayoutReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[134] + mi := &file_pb_bundle_proto_msgTypes[137] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12625,7 +12789,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{134} + return file_pb_bundle_proto_rawDescGZIP(), []int{137} } func (x *SetBundleBalanceLayoutReq) GetUserId() uint32 { @@ -12650,7 +12814,7 @@ type SetBundleBalanceLayoutResp struct { func (x *SetBundleBalanceLayoutResp) Reset() { *x = SetBundleBalanceLayoutResp{} - mi := &file_pb_bundle_proto_msgTypes[135] + mi := &file_pb_bundle_proto_msgTypes[138] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12662,7 +12826,7 @@ func (x *SetBundleBalanceLayoutResp) String() string { func (*SetBundleBalanceLayoutResp) ProtoMessage() {} func (x *SetBundleBalanceLayoutResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[135] + mi := &file_pb_bundle_proto_msgTypes[138] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12675,7 +12839,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{135} + return file_pb_bundle_proto_rawDescGZIP(), []int{138} } type GetBundleBalanceLayoutReq struct { @@ -12687,7 +12851,7 @@ type GetBundleBalanceLayoutReq struct { func (x *GetBundleBalanceLayoutReq) Reset() { *x = GetBundleBalanceLayoutReq{} - mi := &file_pb_bundle_proto_msgTypes[136] + mi := &file_pb_bundle_proto_msgTypes[139] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12699,7 +12863,7 @@ func (x *GetBundleBalanceLayoutReq) String() string { func (*GetBundleBalanceLayoutReq) ProtoMessage() {} func (x *GetBundleBalanceLayoutReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[136] + mi := &file_pb_bundle_proto_msgTypes[139] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12712,7 +12876,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{136} + return file_pb_bundle_proto_rawDescGZIP(), []int{139} } func (x *GetBundleBalanceLayoutReq) GetUserId() uint32 { @@ -12731,7 +12895,7 @@ type GetBundleBalanceLayoutResp struct { func (x *GetBundleBalanceLayoutResp) Reset() { *x = GetBundleBalanceLayoutResp{} - mi := &file_pb_bundle_proto_msgTypes[137] + mi := &file_pb_bundle_proto_msgTypes[140] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12743,7 +12907,7 @@ func (x *GetBundleBalanceLayoutResp) String() string { func (*GetBundleBalanceLayoutResp) ProtoMessage() {} func (x *GetBundleBalanceLayoutResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[137] + mi := &file_pb_bundle_proto_msgTypes[140] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12756,7 +12920,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{137} + return file_pb_bundle_proto_rawDescGZIP(), []int{140} } func (x *GetBundleBalanceLayoutResp) GetData() string { @@ -12774,7 +12938,7 @@ type GetPendingTaskLayoutReq struct { func (x *GetPendingTaskLayoutReq) Reset() { *x = GetPendingTaskLayoutReq{} - mi := &file_pb_bundle_proto_msgTypes[138] + mi := &file_pb_bundle_proto_msgTypes[141] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12786,7 +12950,7 @@ func (x *GetPendingTaskLayoutReq) String() string { func (*GetPendingTaskLayoutReq) ProtoMessage() {} func (x *GetPendingTaskLayoutReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[138] + mi := &file_pb_bundle_proto_msgTypes[141] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12799,7 +12963,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{138} + return file_pb_bundle_proto_rawDescGZIP(), []int{141} } type GetPendingTaskLayoutResp struct { @@ -12811,7 +12975,7 @@ type GetPendingTaskLayoutResp struct { func (x *GetPendingTaskLayoutResp) Reset() { *x = GetPendingTaskLayoutResp{} - mi := &file_pb_bundle_proto_msgTypes[139] + mi := &file_pb_bundle_proto_msgTypes[142] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12823,7 +12987,7 @@ func (x *GetPendingTaskLayoutResp) String() string { func (*GetPendingTaskLayoutResp) ProtoMessage() {} func (x *GetPendingTaskLayoutResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[139] + mi := &file_pb_bundle_proto_msgTypes[142] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12836,7 +13000,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{139} + return file_pb_bundle_proto_rawDescGZIP(), []int{142} } func (x *GetPendingTaskLayoutResp) GetData() string { @@ -12855,7 +13019,7 @@ type SetPendingTaskLayoutReq struct { func (x *SetPendingTaskLayoutReq) Reset() { *x = SetPendingTaskLayoutReq{} - mi := &file_pb_bundle_proto_msgTypes[140] + mi := &file_pb_bundle_proto_msgTypes[143] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12867,7 +13031,7 @@ func (x *SetPendingTaskLayoutReq) String() string { func (*SetPendingTaskLayoutReq) ProtoMessage() {} func (x *SetPendingTaskLayoutReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[140] + mi := &file_pb_bundle_proto_msgTypes[143] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12880,7 +13044,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{140} + return file_pb_bundle_proto_rawDescGZIP(), []int{143} } func (x *SetPendingTaskLayoutReq) GetData() string { @@ -12898,7 +13062,7 @@ type SetPendingTaskLayoutResp struct { func (x *SetPendingTaskLayoutResp) Reset() { *x = SetPendingTaskLayoutResp{} - mi := &file_pb_bundle_proto_msgTypes[141] + mi := &file_pb_bundle_proto_msgTypes[144] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12910,7 +13074,7 @@ func (x *SetPendingTaskLayoutResp) String() string { func (*SetPendingTaskLayoutResp) ProtoMessage() {} func (x *SetPendingTaskLayoutResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[141] + mi := &file_pb_bundle_proto_msgTypes[144] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12923,7 +13087,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{141} + return file_pb_bundle_proto_rawDescGZIP(), []int{144} } type MetricsBusinessReq struct { @@ -12937,7 +13101,7 @@ type MetricsBusinessReq struct { func (x *MetricsBusinessReq) Reset() { *x = MetricsBusinessReq{} - mi := &file_pb_bundle_proto_msgTypes[142] + mi := &file_pb_bundle_proto_msgTypes[145] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -12949,7 +13113,7 @@ func (x *MetricsBusinessReq) String() string { func (*MetricsBusinessReq) ProtoMessage() {} func (x *MetricsBusinessReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[142] + mi := &file_pb_bundle_proto_msgTypes[145] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -12962,7 +13126,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{142} + return file_pb_bundle_proto_rawDescGZIP(), []int{145} } func (x *MetricsBusinessReq) GetBundleUuid() string { @@ -13033,7 +13197,7 @@ type MetricsBusinessResp struct { func (x *MetricsBusinessResp) Reset() { *x = MetricsBusinessResp{} - mi := &file_pb_bundle_proto_msgTypes[143] + mi := &file_pb_bundle_proto_msgTypes[146] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13045,7 +13209,7 @@ func (x *MetricsBusinessResp) String() string { func (*MetricsBusinessResp) ProtoMessage() {} func (x *MetricsBusinessResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[143] + mi := &file_pb_bundle_proto_msgTypes[146] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13058,7 +13222,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{143} + return file_pb_bundle_proto_rawDescGZIP(), []int{146} } func (x *MetricsBusinessResp) GetTotalBundlePaymentAmount() string { @@ -13295,7 +13459,7 @@ type MetricsOperatingCreateReq struct { func (x *MetricsOperatingCreateReq) Reset() { *x = MetricsOperatingCreateReq{} - mi := &file_pb_bundle_proto_msgTypes[144] + mi := &file_pb_bundle_proto_msgTypes[147] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13307,7 +13471,7 @@ func (x *MetricsOperatingCreateReq) String() string { func (*MetricsOperatingCreateReq) ProtoMessage() {} func (x *MetricsOperatingCreateReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[144] + mi := &file_pb_bundle_proto_msgTypes[147] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13320,7 +13484,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{144} + return file_pb_bundle_proto_rawDescGZIP(), []int{147} } func (x *MetricsOperatingCreateReq) GetStart() string { @@ -13377,7 +13541,7 @@ type MetricsOperatingCreateResp struct { func (x *MetricsOperatingCreateResp) Reset() { *x = MetricsOperatingCreateResp{} - mi := &file_pb_bundle_proto_msgTypes[145] + mi := &file_pb_bundle_proto_msgTypes[148] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13389,7 +13553,7 @@ func (x *MetricsOperatingCreateResp) String() string { func (*MetricsOperatingCreateResp) ProtoMessage() {} func (x *MetricsOperatingCreateResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[145] + mi := &file_pb_bundle_proto_msgTypes[148] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13402,7 +13566,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{145} + return file_pb_bundle_proto_rawDescGZIP(), []int{148} } func (x *MetricsOperatingCreateResp) GetNewPendingUploadBundleVideoCount() int64 { @@ -13610,7 +13774,7 @@ type MetricsOperatingStatusReq struct { func (x *MetricsOperatingStatusReq) Reset() { *x = MetricsOperatingStatusReq{} - mi := &file_pb_bundle_proto_msgTypes[146] + mi := &file_pb_bundle_proto_msgTypes[149] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13622,7 +13786,7 @@ func (x *MetricsOperatingStatusReq) String() string { func (*MetricsOperatingStatusReq) ProtoMessage() {} func (x *MetricsOperatingStatusReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[146] + mi := &file_pb_bundle_proto_msgTypes[149] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13635,7 +13799,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{146} + return file_pb_bundle_proto_rawDescGZIP(), []int{149} } func (x *MetricsOperatingStatusReq) GetDate() string { @@ -13683,7 +13847,7 @@ type MetricsOperatingStatusResp struct { func (x *MetricsOperatingStatusResp) Reset() { *x = MetricsOperatingStatusResp{} - mi := &file_pb_bundle_proto_msgTypes[147] + mi := &file_pb_bundle_proto_msgTypes[150] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13695,7 +13859,7 @@ func (x *MetricsOperatingStatusResp) String() string { func (*MetricsOperatingStatusResp) ProtoMessage() {} func (x *MetricsOperatingStatusResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[147] + mi := &file_pb_bundle_proto_msgTypes[150] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13708,7 +13872,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{147} + return file_pb_bundle_proto_rawDescGZIP(), []int{150} } func (x *MetricsOperatingStatusResp) GetDraftVideoCount() int64 { @@ -13910,7 +14074,7 @@ type MetricsBundlePurchaseExportReq struct { func (x *MetricsBundlePurchaseExportReq) Reset() { *x = MetricsBundlePurchaseExportReq{} - mi := &file_pb_bundle_proto_msgTypes[148] + mi := &file_pb_bundle_proto_msgTypes[151] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13922,7 +14086,7 @@ func (x *MetricsBundlePurchaseExportReq) String() string { func (*MetricsBundlePurchaseExportReq) ProtoMessage() {} func (x *MetricsBundlePurchaseExportReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[148] + mi := &file_pb_bundle_proto_msgTypes[151] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13935,7 +14099,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{148} + return file_pb_bundle_proto_rawDescGZIP(), []int{151} } func (x *MetricsBundlePurchaseExportReq) GetMonth() string { @@ -13961,7 +14125,7 @@ type MetricsBundlePurchaseExportResp struct { func (x *MetricsBundlePurchaseExportResp) Reset() { *x = MetricsBundlePurchaseExportResp{} - mi := &file_pb_bundle_proto_msgTypes[149] + mi := &file_pb_bundle_proto_msgTypes[152] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -13973,7 +14137,7 @@ func (x *MetricsBundlePurchaseExportResp) String() string { func (*MetricsBundlePurchaseExportResp) ProtoMessage() {} func (x *MetricsBundlePurchaseExportResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[149] + mi := &file_pb_bundle_proto_msgTypes[152] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -13986,7 +14150,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{149} + return file_pb_bundle_proto_rawDescGZIP(), []int{152} } func (x *MetricsBundlePurchaseExportResp) GetData() []*MetricsBundlePurchaseItem { @@ -14017,7 +14181,7 @@ type MetricsBundlePurchaseItem struct { func (x *MetricsBundlePurchaseItem) Reset() { *x = MetricsBundlePurchaseItem{} - mi := &file_pb_bundle_proto_msgTypes[150] + mi := &file_pb_bundle_proto_msgTypes[153] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14029,7 +14193,7 @@ func (x *MetricsBundlePurchaseItem) String() string { func (*MetricsBundlePurchaseItem) ProtoMessage() {} func (x *MetricsBundlePurchaseItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[150] + mi := &file_pb_bundle_proto_msgTypes[153] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14042,7 +14206,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{150} + return file_pb_bundle_proto_rawDescGZIP(), []int{153} } func (x *MetricsBundlePurchaseItem) GetOrderNo() string { @@ -14145,7 +14309,7 @@ type MetricsArtistAccountExportReq struct { func (x *MetricsArtistAccountExportReq) Reset() { *x = MetricsArtistAccountExportReq{} - mi := &file_pb_bundle_proto_msgTypes[151] + mi := &file_pb_bundle_proto_msgTypes[154] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14157,7 +14321,7 @@ func (x *MetricsArtistAccountExportReq) String() string { func (*MetricsArtistAccountExportReq) ProtoMessage() {} func (x *MetricsArtistAccountExportReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[151] + mi := &file_pb_bundle_proto_msgTypes[154] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14170,7 +14334,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{151} + return file_pb_bundle_proto_rawDescGZIP(), []int{154} } func (x *MetricsArtistAccountExportReq) GetMonth() string { @@ -14189,7 +14353,7 @@ type MetricsArtistAccountExportResp struct { func (x *MetricsArtistAccountExportResp) Reset() { *x = MetricsArtistAccountExportResp{} - mi := &file_pb_bundle_proto_msgTypes[152] + mi := &file_pb_bundle_proto_msgTypes[155] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14201,7 +14365,7 @@ func (x *MetricsArtistAccountExportResp) String() string { func (*MetricsArtistAccountExportResp) ProtoMessage() {} func (x *MetricsArtistAccountExportResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[152] + mi := &file_pb_bundle_proto_msgTypes[155] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14214,7 +14378,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{152} + return file_pb_bundle_proto_rawDescGZIP(), []int{155} } func (x *MetricsArtistAccountExportResp) GetData() []*MetricsArtistAccountExportItem { @@ -14245,7 +14409,7 @@ type MetricsArtistAccountExportItem struct { func (x *MetricsArtistAccountExportItem) Reset() { *x = MetricsArtistAccountExportItem{} - mi := &file_pb_bundle_proto_msgTypes[153] + mi := &file_pb_bundle_proto_msgTypes[156] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14257,7 +14421,7 @@ func (x *MetricsArtistAccountExportItem) String() string { func (*MetricsArtistAccountExportItem) ProtoMessage() {} func (x *MetricsArtistAccountExportItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[153] + mi := &file_pb_bundle_proto_msgTypes[156] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14270,7 +14434,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{153} + return file_pb_bundle_proto_rawDescGZIP(), []int{156} } func (x *MetricsArtistAccountExportItem) GetArtistName() string { @@ -14359,7 +14523,7 @@ type MetricsVideoSubmitExportReq struct { func (x *MetricsVideoSubmitExportReq) Reset() { *x = MetricsVideoSubmitExportReq{} - mi := &file_pb_bundle_proto_msgTypes[154] + mi := &file_pb_bundle_proto_msgTypes[157] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14371,7 +14535,7 @@ func (x *MetricsVideoSubmitExportReq) String() string { func (*MetricsVideoSubmitExportReq) ProtoMessage() {} func (x *MetricsVideoSubmitExportReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[154] + mi := &file_pb_bundle_proto_msgTypes[157] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14384,7 +14548,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{154} + return file_pb_bundle_proto_rawDescGZIP(), []int{157} } func (x *MetricsVideoSubmitExportReq) GetMonth() string { @@ -14403,7 +14567,7 @@ type MetricsVideoSubmitExportResp struct { func (x *MetricsVideoSubmitExportResp) Reset() { *x = MetricsVideoSubmitExportResp{} - mi := &file_pb_bundle_proto_msgTypes[155] + mi := &file_pb_bundle_proto_msgTypes[158] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14415,7 +14579,7 @@ func (x *MetricsVideoSubmitExportResp) String() string { func (*MetricsVideoSubmitExportResp) ProtoMessage() {} func (x *MetricsVideoSubmitExportResp) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[155] + mi := &file_pb_bundle_proto_msgTypes[158] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14428,7 +14592,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{155} + return file_pb_bundle_proto_rawDescGZIP(), []int{158} } func (x *MetricsVideoSubmitExportResp) GetData() []*MetricsVideoSubmitExportItem { @@ -14452,7 +14616,7 @@ type MetricsVideoSubmitExportItem struct { func (x *MetricsVideoSubmitExportItem) Reset() { *x = MetricsVideoSubmitExportItem{} - mi := &file_pb_bundle_proto_msgTypes[156] + mi := &file_pb_bundle_proto_msgTypes[159] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14464,7 +14628,7 @@ func (x *MetricsVideoSubmitExportItem) String() string { func (*MetricsVideoSubmitExportItem) ProtoMessage() {} func (x *MetricsVideoSubmitExportItem) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[156] + mi := &file_pb_bundle_proto_msgTypes[159] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14477,7 +14641,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{156} + return file_pb_bundle_proto_rawDescGZIP(), []int{159} } func (x *MetricsVideoSubmitExportItem) GetArtistName() string { @@ -14531,7 +14695,7 @@ type MetricsBalanceDetailExportReq struct { func (x *MetricsBalanceDetailExportReq) Reset() { *x = MetricsBalanceDetailExportReq{} - mi := &file_pb_bundle_proto_msgTypes[157] + mi := &file_pb_bundle_proto_msgTypes[160] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -14543,7 +14707,7 @@ func (x *MetricsBalanceDetailExportReq) String() string { func (*MetricsBalanceDetailExportReq) ProtoMessage() {} func (x *MetricsBalanceDetailExportReq) ProtoReflect() protoreflect.Message { - mi := &file_pb_bundle_proto_msgTypes[157] + mi := &file_pb_bundle_proto_msgTypes[160] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -14556,7 +14720,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{157} + return file_pb_bundle_proto_rawDescGZIP(), []int{160} } func (x *MetricsBalanceDetailExportReq) GetMonth() string { @@ -14570,7 +14734,17 @@ var File_pb_bundle_proto protoreflect.FileDescriptor const file_pb_bundle_proto_rawDesc = "" + "\n" + - "\x0fpb/bundle.proto\x12\x06bundle\x1a\x13pb/descriptor.proto\x1a\x12pb/validator.proto\"x\n" + + "\x0fpb/bundle.proto\x12\x06bundle\x1a\x13pb/descriptor.proto\x1a\x12pb/validator.proto\"?\n" + + "#QueryTheOrderSnapshotInformationReq\x12\x18\n" + + "\aorderNo\x18\x01 \x01(\tR\aorderNo\"\xce\x01\n" + + "$QueryTheOrderSnapshotInformationResp\x12<\n" + + "\vbundleOrder\x18\x01 \x03(\v2\x1a.bundle.ServiceInformationR\vbundleOrder\x12B\n" + + "\x0eaddBundleOrder\x18\x02 \x03(\v2\x1a.bundle.ServiceInformationR\x0eaddBundleOrder\x12$\n" + + "\rbundleContent\x18\x03 \x01(\tR\rbundleContent\"\\\n" + + "\x12ServiceInformation\x12 \n" + + "\vserviceType\x18\x01 \x01(\x04R\vserviceType\x12\x10\n" + + "\x03num\x18\x02 \x01(\x04R\x03num\x12\x12\n" + + "\x04unit\x18\x03 \x01(\tR\x04unit\"x\n" + "\x18ReSignTheContractRequest\x12\x18\n" + "\aorderNo\x18\x01 \x01(\tR\aorderNo\x12\x1e\n" + "\n" + @@ -16040,7 +16214,7 @@ const file_pb_bundle_proto_rawDesc = "" + "\x13instagramUploadTime\x18\x05 \x01(\x03R\x13instagramUploadTime\x12*\n" + "\x10tiktokUploadTime\x18\x06 \x01(\x03R\x10tiktokUploadTime\"5\n" + "\x1dMetricsBalanceDetailExportReq\x12\x14\n" + - "\x05month\x18\x01 \x01(\tR\x05month2\x9e8\n" + + "\x05month\x18\x01 \x01(\tR\x05month2\x9f9\n" + "\x06Bundle\x12?\n" + "\fCreateBundle\x12\x15.bundle.BundleProfile\x1a\x16.bundle.CommonResponse\"\x00\x12?\n" + "\fUpdateBundle\x12\x15.bundle.BundleProfile\x1a\x16.bundle.CommonResponse\"\x00\x12B\n" + @@ -16125,7 +16299,8 @@ const file_pb_bundle_proto_rawDesc = "" + "\x16MetricsOperatingStatus\x12!.bundle.MetricsOperatingStatusReq\x1a\".bundle.MetricsOperatingStatusResp\"\x00\x12p\n" + "\x1bMetricsBundlePurchaseExport\x12&.bundle.MetricsBundlePurchaseExportReq\x1a'.bundle.MetricsBundlePurchaseExportResp\"\x00\x12m\n" + "\x1aMetricsArtistAccountExport\x12%.bundle.MetricsArtistAccountExportReq\x1a&.bundle.MetricsArtistAccountExportResp\"\x00\x12g\n" + - "\x18MetricsVideoSubmitExport\x12#.bundle.MetricsVideoSubmitExportReq\x1a$.bundle.MetricsVideoSubmitExportResp\"\x00B\n" + + "\x18MetricsVideoSubmitExport\x12#.bundle.MetricsVideoSubmitExportReq\x1a$.bundle.MetricsVideoSubmitExportResp\"\x00\x12\x7f\n" + + " QueryTheOrderSnapshotInformation\x12+.bundle.QueryTheOrderSnapshotInformationReq\x1a,.bundle.QueryTheOrderSnapshotInformationResp\"\x00B\n" + "Z\b./bundleb\x06proto3" var ( @@ -16140,378 +16315,385 @@ func file_pb_bundle_proto_rawDescGZIP() []byte { return file_pb_bundle_proto_rawDescData } -var file_pb_bundle_proto_msgTypes = make([]protoimpl.MessageInfo, 158) +var file_pb_bundle_proto_msgTypes = make([]protoimpl.MessageInfo, 161) var file_pb_bundle_proto_goTypes = []any{ - (*ReSignTheContractRequest)(nil), // 0: bundle.ReSignTheContractRequest - (*DeleteValueAddServiceRequest)(nil), // 1: bundle.DeleteValueAddServiceRequest - (*GetReconciliationListReq)(nil), // 2: bundle.GetReconciliationListReq - (*GetReconciliationListResp)(nil), // 3: bundle.GetReconciliationListResp - (*ReconciliationInfo)(nil), // 4: bundle.ReconciliationInfo - (*OrderInfoByOrderNoRequest)(nil), // 5: bundle.OrderInfoByOrderNoRequest - (*OrderInfoByOrderNoResp)(nil), // 6: bundle.OrderInfoByOrderNoResp - (*OrderCreateRecord)(nil), // 7: bundle.OrderCreateRecord - (*OrderCreateAddRecord)(nil), // 8: bundle.OrderCreateAddRecord - (*OrderRecordsRequestV2)(nil), // 9: bundle.OrderRecordsRequestV2 - (*OrderRecordsResponseV2)(nil), // 10: bundle.OrderRecordsResponseV2 - (*OrderBundleRecordInfo)(nil), // 11: bundle.OrderBundleRecordInfo - (*OrderAddBundleRecordInfo)(nil), // 12: bundle.OrderAddBundleRecordInfo - (*PackagePriceAndTimeResponse)(nil), // 13: bundle.PackagePriceAndTimeResponse - (*CommonResponse)(nil), // 14: bundle.CommonResponse - (*BundleProfile)(nil), // 15: bundle.BundleProfile - (*BundleProfileLang)(nil), // 16: bundle.BundleProfileLang - (*ServiceLangInfo)(nil), // 17: bundle.ServiceLangInfo - (*SaveResponse)(nil), // 18: bundle.SaveResponse - (*SelectValueAddService)(nil), // 19: bundle.SelectValueAddService - (*SelectValueAdditionalService)(nil), // 20: bundle.SelectValueAdditionalService - (*DelBundleRequest)(nil), // 21: bundle.DelBundleRequest - (*BundleListRequest)(nil), // 22: bundle.BundleListRequest - (*BundleListResponse)(nil), // 23: bundle.BundleListResponse - (*BundleDetailRequest)(nil), // 24: bundle.BundleDetailRequest - (*HandShelfRequest)(nil), // 25: bundle.HandShelfRequest - (*BundleDetailResponse)(nil), // 26: bundle.BundleDetailResponse - (*BundleDetailResponseV2)(nil), // 27: bundle.BundleDetailResponseV2 - (*OrderRecord)(nil), // 28: bundle.OrderRecord - (*AddInfo)(nil), // 29: bundle.AddInfo - (*OrderAddRecord)(nil), // 30: bundle.OrderAddRecord - (*AddPriceOptionsInfo)(nil), // 31: bundle.AddPriceOptionsInfo - (*PriceOptionsInfo)(nil), // 32: bundle.PriceOptionsInfo - (*OrderRecordsRequest)(nil), // 33: bundle.OrderRecordsRequest - (*OrderRecordsResponse)(nil), // 34: bundle.OrderRecordsResponse - (*OrderRecordsDetailRequest)(nil), // 35: bundle.OrderRecordsDetailRequest - (*OrderRecordsDetailResponse)(nil), // 36: bundle.OrderRecordsDetailResponse - (*ValueAddBundleProfile)(nil), // 37: bundle.ValueAddBundleProfile - (*CreateValueAddBundleRequest)(nil), // 38: bundle.CreateValueAddBundleRequest - (*CreateValueAddBundleResponse)(nil), // 39: bundle.CreateValueAddBundleResponse - (*ValueAddBundleListRequest)(nil), // 40: bundle.ValueAddBundleListRequest - (*ValueAddBundleListResponse)(nil), // 41: bundle.ValueAddBundleListResponse - (*ValueAddBundleDetailRequest)(nil), // 42: bundle.ValueAddBundleDetailRequest - (*ValueAddBundleDetailResponse)(nil), // 43: bundle.ValueAddBundleDetailResponse - (*FinancialConfirmationRequest)(nil), // 44: bundle.FinancialConfirmationRequest - (*ValueAddService)(nil), // 45: bundle.ValueAddService - (*ValueAddServiceLang)(nil), // 46: bundle.ValueAddServiceLang - (*ValueAddPriceOptions)(nil), // 47: bundle.ValueAddPriceOptions - (*ValueAddServiceListRequest)(nil), // 48: bundle.ValueAddServiceListRequest - (*ValueAddServiceListResponse)(nil), // 49: bundle.ValueAddServiceListResponse - (*ValueAddServiceDetailRequest)(nil), // 50: bundle.ValueAddServiceDetailRequest - (*ValueAddServiceDetailResponse)(nil), // 51: bundle.ValueAddServiceDetailResponse - (*CalculatePriceRequest)(nil), // 52: bundle.CalculatePriceRequest - (*CalculatePriceResponse)(nil), // 53: bundle.CalculatePriceResponse - (*BatchGetValueAddServiceLangRequest)(nil), // 54: bundle.BatchGetValueAddServiceLangRequest - (*BatchGetValueAddServiceLangResponse)(nil), // 55: bundle.BatchGetValueAddServiceLangResponse - (*BundleExtendRequest)(nil), // 56: bundle.BundleExtendRequest - (*BundleExtendResponse)(nil), // 57: bundle.BundleExtendResponse - (*BundleExtendRecordsListRequest)(nil), // 58: bundle.BundleExtendRecordsListRequest - (*BundleExtendRecordsListResponse)(nil), // 59: bundle.BundleExtendRecordsListResponse - (*BundleExtendRecordItem)(nil), // 60: bundle.BundleExtendRecordItem - (*GetBundleBalanceListReq)(nil), // 61: bundle.GetBundleBalanceListReq - (*GetBundleBalanceReq)(nil), // 62: bundle.GetBundleBalanceReq - (*BundleBalanceItem)(nil), // 63: bundle.BundleBalanceItem - (*BundleBalanceExportItem)(nil), // 64: bundle.BundleBalanceExportItem - (*BundleBalanceExportReq)(nil), // 65: bundle.BundleBalanceExportReq - (*BundleBalanceExportResp)(nil), // 66: bundle.BundleBalanceExportResp - (*GetBundleBalanceListResp)(nil), // 67: bundle.GetBundleBalanceListResp - (*CreateBundleBalanceReq)(nil), // 68: bundle.CreateBundleBalanceReq - (*CreateBundleBalanceResp)(nil), // 69: bundle.CreateBundleBalanceResp - (*AddBundleBalanceReq)(nil), // 70: bundle.AddBundleBalanceReq - (*AddBundleBalanceResp)(nil), // 71: bundle.AddBundleBalanceResp - (*GetUsedRecordListReq)(nil), // 72: bundle.GetUsedRecordListReq - (*GetUsedRecordListResp)(nil), // 73: bundle.GetUsedRecordListResp - (*WorkCastItem)(nil), // 74: bundle.WorkCastItem - (*GetImageWorkDetailReq)(nil), // 75: bundle.GetImageWorkDetailReq - (*GetVedioWorkDetailReq)(nil), // 76: bundle.GetVedioWorkDetailReq - (*GetImageWorkDetailResp)(nil), // 77: bundle.GetImageWorkDetailResp - (*GetVedioeWorkDetailResp)(nil), // 78: bundle.GetVedioeWorkDetailResp - (*ToBeComfirmedWorksReq)(nil), // 79: bundle.ToBeComfirmedWorksReq - (*WorkItem)(nil), // 80: bundle.workItem - (*ToBeComfirmedWorksResp)(nil), // 81: bundle.ToBeComfirmedWorksResp - (*GetBundleBalanceByUserIdReq)(nil), // 82: bundle.GetBundleBalanceByUserIdReq - (*GetBundleBalanceByUserIdResp)(nil), // 83: bundle.GetBundleBalanceByUserIdResp - (*OnlyAddValueListByOrderNoRequest)(nil), // 84: bundle.OnlyAddValueListByOrderNoRequest - (*OnlyAddValueListByOrderNoResp)(nil), // 85: bundle.OnlyAddValueListByOrderNoResp - (*AddBundleInfo)(nil), // 86: bundle.AddBundleInfo - (*UpdateStatusAndPayTimeBySerialNumber)(nil), // 87: bundle.UpdateStatusAndPayTimeBySerialNumber - (*ConfirmWorkReq)(nil), // 88: bundle.ConfirmWorkReq - (*ConfirmWorkResp)(nil), // 89: bundle.ConfirmWorkResp - (*ConfirmWorkItem)(nil), // 90: bundle.ConfirmWorkItem - (*GetWaitConfirmWorkListReq)(nil), // 91: bundle.GetWaitConfirmWorkListReq - (*GetWaitConfirmWorkListResp)(nil), // 92: bundle.GetWaitConfirmWorkListResp - (*AutoCreateUserAndOrderRequest)(nil), // 93: bundle.AutoCreateUserAndOrderRequest - (*UnfinishedInfos)(nil), // 94: bundle.UnfinishedInfos - (*UnfinishedInfo)(nil), // 95: bundle.UnfinishedInfo - (*SoftDeleteUnfinishedInfoRequest)(nil), // 96: bundle.SoftDeleteUnfinishedInfoRequest - (*BundleActivateReq)(nil), // 97: bundle.BundleActivateReq - (*BundleActivateResp)(nil), // 98: bundle.BundleActivateResp - (*TaskQueryRequest)(nil), // 99: bundle.TaskQueryRequest - (*TaskQueryResponse)(nil), // 100: bundle.TaskQueryResponse - (*TaskManagementInfo)(nil), // 101: bundle.TaskManagementInfo - (*TaskAssignRequest)(nil), // 102: bundle.TaskAssignRequest - (*UpdatePendingCountRequest)(nil), // 103: bundle.UpdatePendingCountRequest - (*AddHiddenTaskAssigneeRequest)(nil), // 104: bundle.AddHiddenTaskAssigneeRequest - (*RecentAssignRecordsRequest)(nil), // 105: bundle.RecentAssignRecordsRequest - (*RecentAssigneeItem)(nil), // 106: bundle.RecentAssigneeItem - (*RecentAssignRecordsResponse)(nil), // 107: bundle.RecentAssignRecordsResponse - (*EmployeeTaskQueryRequest)(nil), // 108: bundle.EmployeeTaskQueryRequest - (*EmployeeTaskQueryResponse)(nil), // 109: bundle.EmployeeTaskQueryResponse - (*TaskAssignRecordInfo)(nil), // 110: bundle.TaskAssignRecordInfo - (*BatchAssignTaskItem)(nil), // 111: bundle.BatchAssignTaskItem - (*BatchAssignTaskRequest)(nil), // 112: bundle.BatchAssignTaskRequest - (*CompleteTaskManuallyRequest)(nil), // 113: bundle.CompleteTaskManuallyRequest - (*TerminateTaskByUUIDRequest)(nil), // 114: bundle.TerminateTaskByUUIDRequest - (*BatchTerminateTaskRequest)(nil), // 115: bundle.BatchTerminateTaskRequest - (*RevertTaskCompletionByUUIDItemRequest)(nil), // 116: bundle.RevertTaskCompletionByUUIDItemRequest - (*GetTaskActualStatusByUUIDRequest)(nil), // 117: bundle.GetTaskActualStatusByUUIDRequest - (*GetTaskActualStatusByUUIDResponse)(nil), // 118: bundle.GetTaskActualStatusByUUIDResponse - (*UpdateTaskProgressRequest)(nil), // 119: bundle.UpdateTaskProgressRequest - (*TaskAssignRecordsQueryRequest)(nil), // 120: bundle.TaskAssignRecordsQueryRequest - (*ComResponse)(nil), // 121: bundle.ComResponse - (*TaskAssignRecordsQueryResponse)(nil), // 122: bundle.TaskAssignRecordsQueryResponse - (*TaskAssignRecordsSummary)(nil), // 123: bundle.TaskAssignRecordsSummary - (*ArtistUploadStatsItem)(nil), // 124: bundle.ArtistUploadStatsItem - (*ArtistUploadStatsResponse)(nil), // 125: bundle.ArtistUploadStatsResponse - (*PendingUploadBreakdownRequest)(nil), // 126: bundle.PendingUploadBreakdownRequest - (*PendingUploadBreakdownItem)(nil), // 127: bundle.PendingUploadBreakdownItem - (*PendingUploadBreakdownResponse)(nil), // 128: bundle.PendingUploadBreakdownResponse - (*PendingAssignRequest)(nil), // 129: bundle.PendingAssignRequest - (*PendingAssignItem)(nil), // 130: bundle.PendingAssignItem - (*PendingAssignResponse)(nil), // 131: bundle.PendingAssignResponse - (*ArtistBundleBalanceRequest)(nil), // 132: bundle.ArtistBundleBalanceRequest - (*ArtistBundleBalanceResponse)(nil), // 133: bundle.ArtistBundleBalanceResponse - (*SetBundleBalanceLayoutReq)(nil), // 134: bundle.SetBundleBalanceLayoutReq - (*SetBundleBalanceLayoutResp)(nil), // 135: bundle.SetBundleBalanceLayoutResp - (*GetBundleBalanceLayoutReq)(nil), // 136: bundle.GetBundleBalanceLayoutReq - (*GetBundleBalanceLayoutResp)(nil), // 137: bundle.GetBundleBalanceLayoutResp - (*GetPendingTaskLayoutReq)(nil), // 138: bundle.GetPendingTaskLayoutReq - (*GetPendingTaskLayoutResp)(nil), // 139: bundle.GetPendingTaskLayoutResp - (*SetPendingTaskLayoutReq)(nil), // 140: bundle.SetPendingTaskLayoutReq - (*SetPendingTaskLayoutResp)(nil), // 141: bundle.SetPendingTaskLayoutResp - (*MetricsBusinessReq)(nil), // 142: bundle.MetricsBusinessReq - (*MetricsBusinessResp)(nil), // 143: bundle.MetricsBusinessResp - (*MetricsOperatingCreateReq)(nil), // 144: bundle.MetricsOperatingCreateReq - (*MetricsOperatingCreateResp)(nil), // 145: bundle.MetricsOperatingCreateResp - (*MetricsOperatingStatusReq)(nil), // 146: bundle.MetricsOperatingStatusReq - (*MetricsOperatingStatusResp)(nil), // 147: bundle.MetricsOperatingStatusResp - (*MetricsBundlePurchaseExportReq)(nil), // 148: bundle.MetricsBundlePurchaseExportReq - (*MetricsBundlePurchaseExportResp)(nil), // 149: bundle.MetricsBundlePurchaseExportResp - (*MetricsBundlePurchaseItem)(nil), // 150: bundle.MetricsBundlePurchaseItem - (*MetricsArtistAccountExportReq)(nil), // 151: bundle.MetricsArtistAccountExportReq - (*MetricsArtistAccountExportResp)(nil), // 152: bundle.MetricsArtistAccountExportResp - (*MetricsArtistAccountExportItem)(nil), // 153: bundle.MetricsArtistAccountExportItem - (*MetricsVideoSubmitExportReq)(nil), // 154: bundle.MetricsVideoSubmitExportReq - (*MetricsVideoSubmitExportResp)(nil), // 155: bundle.MetricsVideoSubmitExportResp - (*MetricsVideoSubmitExportItem)(nil), // 156: bundle.MetricsVideoSubmitExportItem - (*MetricsBalanceDetailExportReq)(nil), // 157: bundle.MetricsBalanceDetailExportReq + (*QueryTheOrderSnapshotInformationReq)(nil), // 0: bundle.QueryTheOrderSnapshotInformationReq + (*QueryTheOrderSnapshotInformationResp)(nil), // 1: bundle.QueryTheOrderSnapshotInformationResp + (*ServiceInformation)(nil), // 2: bundle.ServiceInformation + (*ReSignTheContractRequest)(nil), // 3: bundle.ReSignTheContractRequest + (*DeleteValueAddServiceRequest)(nil), // 4: bundle.DeleteValueAddServiceRequest + (*GetReconciliationListReq)(nil), // 5: bundle.GetReconciliationListReq + (*GetReconciliationListResp)(nil), // 6: bundle.GetReconciliationListResp + (*ReconciliationInfo)(nil), // 7: bundle.ReconciliationInfo + (*OrderInfoByOrderNoRequest)(nil), // 8: bundle.OrderInfoByOrderNoRequest + (*OrderInfoByOrderNoResp)(nil), // 9: bundle.OrderInfoByOrderNoResp + (*OrderCreateRecord)(nil), // 10: bundle.OrderCreateRecord + (*OrderCreateAddRecord)(nil), // 11: bundle.OrderCreateAddRecord + (*OrderRecordsRequestV2)(nil), // 12: bundle.OrderRecordsRequestV2 + (*OrderRecordsResponseV2)(nil), // 13: bundle.OrderRecordsResponseV2 + (*OrderBundleRecordInfo)(nil), // 14: bundle.OrderBundleRecordInfo + (*OrderAddBundleRecordInfo)(nil), // 15: bundle.OrderAddBundleRecordInfo + (*PackagePriceAndTimeResponse)(nil), // 16: bundle.PackagePriceAndTimeResponse + (*CommonResponse)(nil), // 17: bundle.CommonResponse + (*BundleProfile)(nil), // 18: bundle.BundleProfile + (*BundleProfileLang)(nil), // 19: bundle.BundleProfileLang + (*ServiceLangInfo)(nil), // 20: bundle.ServiceLangInfo + (*SaveResponse)(nil), // 21: bundle.SaveResponse + (*SelectValueAddService)(nil), // 22: bundle.SelectValueAddService + (*SelectValueAdditionalService)(nil), // 23: bundle.SelectValueAdditionalService + (*DelBundleRequest)(nil), // 24: bundle.DelBundleRequest + (*BundleListRequest)(nil), // 25: bundle.BundleListRequest + (*BundleListResponse)(nil), // 26: bundle.BundleListResponse + (*BundleDetailRequest)(nil), // 27: bundle.BundleDetailRequest + (*HandShelfRequest)(nil), // 28: bundle.HandShelfRequest + (*BundleDetailResponse)(nil), // 29: bundle.BundleDetailResponse + (*BundleDetailResponseV2)(nil), // 30: bundle.BundleDetailResponseV2 + (*OrderRecord)(nil), // 31: bundle.OrderRecord + (*AddInfo)(nil), // 32: bundle.AddInfo + (*OrderAddRecord)(nil), // 33: bundle.OrderAddRecord + (*AddPriceOptionsInfo)(nil), // 34: bundle.AddPriceOptionsInfo + (*PriceOptionsInfo)(nil), // 35: bundle.PriceOptionsInfo + (*OrderRecordsRequest)(nil), // 36: bundle.OrderRecordsRequest + (*OrderRecordsResponse)(nil), // 37: bundle.OrderRecordsResponse + (*OrderRecordsDetailRequest)(nil), // 38: bundle.OrderRecordsDetailRequest + (*OrderRecordsDetailResponse)(nil), // 39: bundle.OrderRecordsDetailResponse + (*ValueAddBundleProfile)(nil), // 40: bundle.ValueAddBundleProfile + (*CreateValueAddBundleRequest)(nil), // 41: bundle.CreateValueAddBundleRequest + (*CreateValueAddBundleResponse)(nil), // 42: bundle.CreateValueAddBundleResponse + (*ValueAddBundleListRequest)(nil), // 43: bundle.ValueAddBundleListRequest + (*ValueAddBundleListResponse)(nil), // 44: bundle.ValueAddBundleListResponse + (*ValueAddBundleDetailRequest)(nil), // 45: bundle.ValueAddBundleDetailRequest + (*ValueAddBundleDetailResponse)(nil), // 46: bundle.ValueAddBundleDetailResponse + (*FinancialConfirmationRequest)(nil), // 47: bundle.FinancialConfirmationRequest + (*ValueAddService)(nil), // 48: bundle.ValueAddService + (*ValueAddServiceLang)(nil), // 49: bundle.ValueAddServiceLang + (*ValueAddPriceOptions)(nil), // 50: bundle.ValueAddPriceOptions + (*ValueAddServiceListRequest)(nil), // 51: bundle.ValueAddServiceListRequest + (*ValueAddServiceListResponse)(nil), // 52: bundle.ValueAddServiceListResponse + (*ValueAddServiceDetailRequest)(nil), // 53: bundle.ValueAddServiceDetailRequest + (*ValueAddServiceDetailResponse)(nil), // 54: bundle.ValueAddServiceDetailResponse + (*CalculatePriceRequest)(nil), // 55: bundle.CalculatePriceRequest + (*CalculatePriceResponse)(nil), // 56: bundle.CalculatePriceResponse + (*BatchGetValueAddServiceLangRequest)(nil), // 57: bundle.BatchGetValueAddServiceLangRequest + (*BatchGetValueAddServiceLangResponse)(nil), // 58: bundle.BatchGetValueAddServiceLangResponse + (*BundleExtendRequest)(nil), // 59: bundle.BundleExtendRequest + (*BundleExtendResponse)(nil), // 60: bundle.BundleExtendResponse + (*BundleExtendRecordsListRequest)(nil), // 61: bundle.BundleExtendRecordsListRequest + (*BundleExtendRecordsListResponse)(nil), // 62: bundle.BundleExtendRecordsListResponse + (*BundleExtendRecordItem)(nil), // 63: bundle.BundleExtendRecordItem + (*GetBundleBalanceListReq)(nil), // 64: bundle.GetBundleBalanceListReq + (*GetBundleBalanceReq)(nil), // 65: bundle.GetBundleBalanceReq + (*BundleBalanceItem)(nil), // 66: bundle.BundleBalanceItem + (*BundleBalanceExportItem)(nil), // 67: bundle.BundleBalanceExportItem + (*BundleBalanceExportReq)(nil), // 68: bundle.BundleBalanceExportReq + (*BundleBalanceExportResp)(nil), // 69: bundle.BundleBalanceExportResp + (*GetBundleBalanceListResp)(nil), // 70: bundle.GetBundleBalanceListResp + (*CreateBundleBalanceReq)(nil), // 71: bundle.CreateBundleBalanceReq + (*CreateBundleBalanceResp)(nil), // 72: bundle.CreateBundleBalanceResp + (*AddBundleBalanceReq)(nil), // 73: bundle.AddBundleBalanceReq + (*AddBundleBalanceResp)(nil), // 74: bundle.AddBundleBalanceResp + (*GetUsedRecordListReq)(nil), // 75: bundle.GetUsedRecordListReq + (*GetUsedRecordListResp)(nil), // 76: bundle.GetUsedRecordListResp + (*WorkCastItem)(nil), // 77: bundle.WorkCastItem + (*GetImageWorkDetailReq)(nil), // 78: bundle.GetImageWorkDetailReq + (*GetVedioWorkDetailReq)(nil), // 79: bundle.GetVedioWorkDetailReq + (*GetImageWorkDetailResp)(nil), // 80: bundle.GetImageWorkDetailResp + (*GetVedioeWorkDetailResp)(nil), // 81: bundle.GetVedioeWorkDetailResp + (*ToBeComfirmedWorksReq)(nil), // 82: bundle.ToBeComfirmedWorksReq + (*WorkItem)(nil), // 83: bundle.workItem + (*ToBeComfirmedWorksResp)(nil), // 84: bundle.ToBeComfirmedWorksResp + (*GetBundleBalanceByUserIdReq)(nil), // 85: bundle.GetBundleBalanceByUserIdReq + (*GetBundleBalanceByUserIdResp)(nil), // 86: bundle.GetBundleBalanceByUserIdResp + (*OnlyAddValueListByOrderNoRequest)(nil), // 87: bundle.OnlyAddValueListByOrderNoRequest + (*OnlyAddValueListByOrderNoResp)(nil), // 88: bundle.OnlyAddValueListByOrderNoResp + (*AddBundleInfo)(nil), // 89: bundle.AddBundleInfo + (*UpdateStatusAndPayTimeBySerialNumber)(nil), // 90: bundle.UpdateStatusAndPayTimeBySerialNumber + (*ConfirmWorkReq)(nil), // 91: bundle.ConfirmWorkReq + (*ConfirmWorkResp)(nil), // 92: bundle.ConfirmWorkResp + (*ConfirmWorkItem)(nil), // 93: bundle.ConfirmWorkItem + (*GetWaitConfirmWorkListReq)(nil), // 94: bundle.GetWaitConfirmWorkListReq + (*GetWaitConfirmWorkListResp)(nil), // 95: bundle.GetWaitConfirmWorkListResp + (*AutoCreateUserAndOrderRequest)(nil), // 96: bundle.AutoCreateUserAndOrderRequest + (*UnfinishedInfos)(nil), // 97: bundle.UnfinishedInfos + (*UnfinishedInfo)(nil), // 98: bundle.UnfinishedInfo + (*SoftDeleteUnfinishedInfoRequest)(nil), // 99: bundle.SoftDeleteUnfinishedInfoRequest + (*BundleActivateReq)(nil), // 100: bundle.BundleActivateReq + (*BundleActivateResp)(nil), // 101: bundle.BundleActivateResp + (*TaskQueryRequest)(nil), // 102: bundle.TaskQueryRequest + (*TaskQueryResponse)(nil), // 103: bundle.TaskQueryResponse + (*TaskManagementInfo)(nil), // 104: bundle.TaskManagementInfo + (*TaskAssignRequest)(nil), // 105: bundle.TaskAssignRequest + (*UpdatePendingCountRequest)(nil), // 106: bundle.UpdatePendingCountRequest + (*AddHiddenTaskAssigneeRequest)(nil), // 107: bundle.AddHiddenTaskAssigneeRequest + (*RecentAssignRecordsRequest)(nil), // 108: bundle.RecentAssignRecordsRequest + (*RecentAssigneeItem)(nil), // 109: bundle.RecentAssigneeItem + (*RecentAssignRecordsResponse)(nil), // 110: bundle.RecentAssignRecordsResponse + (*EmployeeTaskQueryRequest)(nil), // 111: bundle.EmployeeTaskQueryRequest + (*EmployeeTaskQueryResponse)(nil), // 112: bundle.EmployeeTaskQueryResponse + (*TaskAssignRecordInfo)(nil), // 113: bundle.TaskAssignRecordInfo + (*BatchAssignTaskItem)(nil), // 114: bundle.BatchAssignTaskItem + (*BatchAssignTaskRequest)(nil), // 115: bundle.BatchAssignTaskRequest + (*CompleteTaskManuallyRequest)(nil), // 116: bundle.CompleteTaskManuallyRequest + (*TerminateTaskByUUIDRequest)(nil), // 117: bundle.TerminateTaskByUUIDRequest + (*BatchTerminateTaskRequest)(nil), // 118: bundle.BatchTerminateTaskRequest + (*RevertTaskCompletionByUUIDItemRequest)(nil), // 119: bundle.RevertTaskCompletionByUUIDItemRequest + (*GetTaskActualStatusByUUIDRequest)(nil), // 120: bundle.GetTaskActualStatusByUUIDRequest + (*GetTaskActualStatusByUUIDResponse)(nil), // 121: bundle.GetTaskActualStatusByUUIDResponse + (*UpdateTaskProgressRequest)(nil), // 122: bundle.UpdateTaskProgressRequest + (*TaskAssignRecordsQueryRequest)(nil), // 123: bundle.TaskAssignRecordsQueryRequest + (*ComResponse)(nil), // 124: bundle.ComResponse + (*TaskAssignRecordsQueryResponse)(nil), // 125: bundle.TaskAssignRecordsQueryResponse + (*TaskAssignRecordsSummary)(nil), // 126: bundle.TaskAssignRecordsSummary + (*ArtistUploadStatsItem)(nil), // 127: bundle.ArtistUploadStatsItem + (*ArtistUploadStatsResponse)(nil), // 128: bundle.ArtistUploadStatsResponse + (*PendingUploadBreakdownRequest)(nil), // 129: bundle.PendingUploadBreakdownRequest + (*PendingUploadBreakdownItem)(nil), // 130: bundle.PendingUploadBreakdownItem + (*PendingUploadBreakdownResponse)(nil), // 131: bundle.PendingUploadBreakdownResponse + (*PendingAssignRequest)(nil), // 132: bundle.PendingAssignRequest + (*PendingAssignItem)(nil), // 133: bundle.PendingAssignItem + (*PendingAssignResponse)(nil), // 134: bundle.PendingAssignResponse + (*ArtistBundleBalanceRequest)(nil), // 135: bundle.ArtistBundleBalanceRequest + (*ArtistBundleBalanceResponse)(nil), // 136: bundle.ArtistBundleBalanceResponse + (*SetBundleBalanceLayoutReq)(nil), // 137: bundle.SetBundleBalanceLayoutReq + (*SetBundleBalanceLayoutResp)(nil), // 138: bundle.SetBundleBalanceLayoutResp + (*GetBundleBalanceLayoutReq)(nil), // 139: bundle.GetBundleBalanceLayoutReq + (*GetBundleBalanceLayoutResp)(nil), // 140: bundle.GetBundleBalanceLayoutResp + (*GetPendingTaskLayoutReq)(nil), // 141: bundle.GetPendingTaskLayoutReq + (*GetPendingTaskLayoutResp)(nil), // 142: bundle.GetPendingTaskLayoutResp + (*SetPendingTaskLayoutReq)(nil), // 143: bundle.SetPendingTaskLayoutReq + (*SetPendingTaskLayoutResp)(nil), // 144: bundle.SetPendingTaskLayoutResp + (*MetricsBusinessReq)(nil), // 145: bundle.MetricsBusinessReq + (*MetricsBusinessResp)(nil), // 146: bundle.MetricsBusinessResp + (*MetricsOperatingCreateReq)(nil), // 147: bundle.MetricsOperatingCreateReq + (*MetricsOperatingCreateResp)(nil), // 148: bundle.MetricsOperatingCreateResp + (*MetricsOperatingStatusReq)(nil), // 149: bundle.MetricsOperatingStatusReq + (*MetricsOperatingStatusResp)(nil), // 150: bundle.MetricsOperatingStatusResp + (*MetricsBundlePurchaseExportReq)(nil), // 151: bundle.MetricsBundlePurchaseExportReq + (*MetricsBundlePurchaseExportResp)(nil), // 152: bundle.MetricsBundlePurchaseExportResp + (*MetricsBundlePurchaseItem)(nil), // 153: bundle.MetricsBundlePurchaseItem + (*MetricsArtistAccountExportReq)(nil), // 154: bundle.MetricsArtistAccountExportReq + (*MetricsArtistAccountExportResp)(nil), // 155: bundle.MetricsArtistAccountExportResp + (*MetricsArtistAccountExportItem)(nil), // 156: bundle.MetricsArtistAccountExportItem + (*MetricsVideoSubmitExportReq)(nil), // 157: bundle.MetricsVideoSubmitExportReq + (*MetricsVideoSubmitExportResp)(nil), // 158: bundle.MetricsVideoSubmitExportResp + (*MetricsVideoSubmitExportItem)(nil), // 159: bundle.MetricsVideoSubmitExportItem + (*MetricsBalanceDetailExportReq)(nil), // 160: bundle.MetricsBalanceDetailExportReq } var file_pb_bundle_proto_depIdxs = []int32{ - 4, // 0: bundle.GetReconciliationListResp.list:type_name -> bundle.ReconciliationInfo - 8, // 1: bundle.OrderCreateRecord.addRecords:type_name -> bundle.OrderCreateAddRecord - 11, // 2: bundle.OrderRecordsResponseV2.bundleInfo:type_name -> bundle.OrderBundleRecordInfo - 12, // 3: bundle.OrderBundleRecordInfo.addBundleInfo:type_name -> bundle.OrderAddBundleRecordInfo - 19, // 4: bundle.BundleProfile.selectValueAddService:type_name -> bundle.SelectValueAddService - 20, // 5: bundle.BundleProfile.selectValueAdditionalService:type_name -> bundle.SelectValueAdditionalService - 16, // 6: bundle.BundleProfile.bundleProfileLang:type_name -> bundle.BundleProfileLang - 17, // 7: bundle.BundleProfileLang.serviceLangInfo:type_name -> bundle.ServiceLangInfo - 15, // 8: bundle.BundleListResponse.bundles:type_name -> bundle.BundleProfile - 15, // 9: bundle.BundleDetailResponse.bundle:type_name -> bundle.BundleProfile - 15, // 10: bundle.BundleDetailResponseV2.bundle:type_name -> bundle.BundleProfile - 32, // 11: bundle.OrderRecord.priceOptionsInfo:type_name -> bundle.PriceOptionsInfo - 29, // 12: bundle.OrderRecord.addInfos:type_name -> bundle.AddInfo - 31, // 13: bundle.OrderAddRecord.addPriceOptionsList:type_name -> bundle.AddPriceOptionsInfo - 28, // 14: bundle.OrderRecordsResponse.orderRecords:type_name -> bundle.OrderRecord - 28, // 15: bundle.OrderRecordsDetailResponse.orderRecord:type_name -> bundle.OrderRecord - 37, // 16: bundle.ValueAddBundleListResponse.data:type_name -> bundle.ValueAddBundleProfile - 37, // 17: bundle.ValueAddBundleDetailResponse.data:type_name -> bundle.ValueAddBundleProfile - 46, // 18: bundle.ValueAddService.serviceLang:type_name -> bundle.ValueAddServiceLang - 47, // 19: bundle.ValueAddServiceLang.options:type_name -> bundle.ValueAddPriceOptions - 45, // 20: bundle.ValueAddServiceListResponse.valueAddServiceList:type_name -> bundle.ValueAddService - 45, // 21: bundle.ValueAddServiceDetailResponse.valueAddService:type_name -> bundle.ValueAddService - 46, // 22: bundle.BatchGetValueAddServiceLangResponse.valueAddServiceLangList:type_name -> bundle.ValueAddServiceLang - 60, // 23: bundle.BundleExtendRecordsListResponse.data:type_name -> bundle.BundleExtendRecordItem - 64, // 24: bundle.BundleBalanceExportResp.data:type_name -> bundle.BundleBalanceExportItem - 63, // 25: bundle.GetBundleBalanceListResp.data:type_name -> bundle.BundleBalanceItem - 74, // 26: bundle.GetUsedRecordListResp.data:type_name -> bundle.WorkCastItem - 80, // 27: bundle.ToBeComfirmedWorksResp.data:type_name -> bundle.workItem - 86, // 28: bundle.OnlyAddValueListByOrderNoResp.AddBundleInfos:type_name -> bundle.AddBundleInfo - 90, // 29: bundle.GetWaitConfirmWorkListResp.data:type_name -> bundle.ConfirmWorkItem - 95, // 30: bundle.UnfinishedInfos.unfinishedInfos:type_name -> bundle.UnfinishedInfo - 101, // 31: bundle.TaskQueryResponse.tasks:type_name -> bundle.TaskManagementInfo - 106, // 32: bundle.RecentAssignRecordsResponse.operatorList:type_name -> bundle.RecentAssigneeItem - 110, // 33: bundle.EmployeeTaskQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo - 111, // 34: bundle.BatchAssignTaskRequest.items:type_name -> bundle.BatchAssignTaskItem - 110, // 35: bundle.TaskAssignRecordsQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo - 123, // 36: bundle.TaskAssignRecordsQueryResponse.summary:type_name -> bundle.TaskAssignRecordsSummary - 124, // 37: bundle.ArtistUploadStatsResponse.items:type_name -> bundle.ArtistUploadStatsItem - 127, // 38: bundle.PendingUploadBreakdownResponse.items:type_name -> bundle.PendingUploadBreakdownItem - 130, // 39: bundle.PendingAssignResponse.items:type_name -> bundle.PendingAssignItem - 150, // 40: bundle.MetricsBundlePurchaseExportResp.data:type_name -> bundle.MetricsBundlePurchaseItem - 153, // 41: bundle.MetricsArtistAccountExportResp.data:type_name -> bundle.MetricsArtistAccountExportItem - 156, // 42: bundle.MetricsVideoSubmitExportResp.data:type_name -> bundle.MetricsVideoSubmitExportItem - 15, // 43: bundle.Bundle.CreateBundle:input_type -> bundle.BundleProfile - 15, // 44: bundle.Bundle.UpdateBundle:input_type -> bundle.BundleProfile - 21, // 45: bundle.Bundle.DeleteBundle:input_type -> bundle.DelBundleRequest - 25, // 46: bundle.Bundle.HandShelf:input_type -> bundle.HandShelfRequest - 15, // 47: bundle.Bundle.SaveBundle:input_type -> bundle.BundleProfile - 22, // 48: bundle.Bundle.BundleListV2:input_type -> bundle.BundleListRequest - 24, // 49: bundle.Bundle.BundleDetailV2:input_type -> bundle.BundleDetailRequest - 22, // 50: bundle.Bundle.BundleListH5V2:input_type -> bundle.BundleListRequest - 24, // 51: bundle.Bundle.BundleLangDetailV2:input_type -> bundle.BundleDetailRequest - 22, // 52: bundle.Bundle.BundleList:input_type -> bundle.BundleListRequest - 24, // 53: bundle.Bundle.BundleDetail:input_type -> bundle.BundleDetailRequest - 7, // 54: bundle.Bundle.CreateOrderRecord:input_type -> bundle.OrderCreateRecord - 28, // 55: bundle.Bundle.UpdateOrderRecord:input_type -> bundle.OrderRecord - 28, // 56: bundle.Bundle.UpdateOrderRecordByOrderNo:input_type -> bundle.OrderRecord - 33, // 57: bundle.Bundle.OrderRecordsList:input_type -> bundle.OrderRecordsRequest - 35, // 58: bundle.Bundle.OrderRecordsDetail:input_type -> bundle.OrderRecordsDetailRequest - 44, // 59: bundle.Bundle.UpdateFinancialConfirmationStatus:input_type -> bundle.FinancialConfirmationRequest - 30, // 60: bundle.Bundle.CreateOrderAddRecord:input_type -> bundle.OrderAddRecord - 28, // 61: bundle.Bundle.PackagePriceAndTime:input_type -> bundle.OrderRecord - 9, // 62: bundle.Bundle.OrderRecordsListV2:input_type -> bundle.OrderRecordsRequestV2 - 5, // 63: bundle.Bundle.OrderListByOrderNo:input_type -> bundle.OrderInfoByOrderNoRequest - 84, // 64: bundle.Bundle.OnlyAddValueListByOrderNo:input_type -> bundle.OnlyAddValueListByOrderNoRequest - 0, // 65: bundle.Bundle.ReSignTheContract:input_type -> bundle.ReSignTheContractRequest - 38, // 66: bundle.Bundle.CreateValueAddBundle:input_type -> bundle.CreateValueAddBundleRequest - 40, // 67: bundle.Bundle.ValueAddBundleList:input_type -> bundle.ValueAddBundleListRequest - 42, // 68: bundle.Bundle.ValueAddBundleDetail:input_type -> bundle.ValueAddBundleDetailRequest - 46, // 69: bundle.Bundle.SaveValueAddService:input_type -> bundle.ValueAddServiceLang - 48, // 70: bundle.Bundle.ValueAddServiceList:input_type -> bundle.ValueAddServiceListRequest - 50, // 71: bundle.Bundle.ValueAddServiceDetail:input_type -> bundle.ValueAddServiceDetailRequest - 50, // 72: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:input_type -> bundle.ValueAddServiceDetailRequest - 52, // 73: bundle.Bundle.CalculatePrice:input_type -> bundle.CalculatePriceRequest - 54, // 74: bundle.Bundle.BatchGetValueAddServiceLang:input_type -> bundle.BatchGetValueAddServiceLangRequest - 1, // 75: bundle.Bundle.DeleteValueAddService:input_type -> bundle.DeleteValueAddServiceRequest - 56, // 76: bundle.Bundle.BundleExtend:input_type -> bundle.BundleExtendRequest - 58, // 77: bundle.Bundle.BundleExtendRecordsList:input_type -> bundle.BundleExtendRecordsListRequest - 61, // 78: bundle.Bundle.GetBundleBalanceList:input_type -> bundle.GetBundleBalanceListReq - 82, // 79: bundle.Bundle.GetBundleBalanceByUserId:input_type -> bundle.GetBundleBalanceByUserIdReq - 68, // 80: bundle.Bundle.CreateBundleBalance:input_type -> bundle.CreateBundleBalanceReq - 70, // 81: bundle.Bundle.AddBundleBalance:input_type -> bundle.AddBundleBalanceReq - 97, // 82: bundle.Bundle.BundleActivate:input_type -> bundle.BundleActivateReq - 65, // 83: bundle.Bundle.BundleBalanceExport:input_type -> bundle.BundleBalanceExportReq - 136, // 84: bundle.Bundle.GetBundleBalanceLayout:input_type -> bundle.GetBundleBalanceLayoutReq - 134, // 85: bundle.Bundle.SetBundleBalanceLayout:input_type -> bundle.SetBundleBalanceLayoutReq - 72, // 86: bundle.Bundle.GetUsedRecordList:input_type -> bundle.GetUsedRecordListReq - 75, // 87: bundle.Bundle.GetImageWorkDetail:input_type -> bundle.GetImageWorkDetailReq - 76, // 88: bundle.Bundle.GetVedioWorkDetail:input_type -> bundle.GetVedioWorkDetailReq - 79, // 89: bundle.Bundle.ToBeComfirmedWorks:input_type -> bundle.ToBeComfirmedWorksReq - 88, // 90: bundle.Bundle.ConfirmWork:input_type -> bundle.ConfirmWorkReq - 91, // 91: bundle.Bundle.GetWaitConfirmWorkList:input_type -> bundle.GetWaitConfirmWorkListReq - 2, // 92: bundle.Bundle.GetReconciliationList:input_type -> bundle.GetReconciliationListReq - 4, // 93: bundle.Bundle.CreateReconciliation:input_type -> bundle.ReconciliationInfo - 4, // 94: bundle.Bundle.UpdateReconciliation:input_type -> bundle.ReconciliationInfo - 87, // 95: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:input_type -> bundle.UpdateStatusAndPayTimeBySerialNumber - 93, // 96: bundle.Bundle.ListUnfinishedInfos:input_type -> bundle.AutoCreateUserAndOrderRequest - 96, // 97: bundle.Bundle.SoftDeleteUnfinishedInfo:input_type -> bundle.SoftDeleteUnfinishedInfoRequest - 99, // 98: bundle.Bundle.GetPendingTaskList:input_type -> bundle.TaskQueryRequest - 102, // 99: bundle.Bundle.AssignTask:input_type -> bundle.TaskAssignRequest - 103, // 100: bundle.Bundle.UpdatePendingCount:input_type -> bundle.UpdatePendingCountRequest - 105, // 101: bundle.Bundle.GetRecentAssignRecords:input_type -> bundle.RecentAssignRecordsRequest - 108, // 102: bundle.Bundle.GetEmployeeAssignedTasks:input_type -> bundle.EmployeeTaskQueryRequest - 113, // 103: bundle.Bundle.CompleteTaskManually:input_type -> bundle.CompleteTaskManuallyRequest - 119, // 104: bundle.Bundle.UpdateTaskProgress:input_type -> bundle.UpdateTaskProgressRequest - 120, // 105: bundle.Bundle.GetTaskAssignRecordsList:input_type -> bundle.TaskAssignRecordsQueryRequest - 132, // 106: bundle.Bundle.GetArtistBundleBalance:input_type -> bundle.ArtistBundleBalanceRequest - 114, // 107: bundle.Bundle.TerminateTaskByUUID:input_type -> bundle.TerminateTaskByUUIDRequest - 117, // 108: bundle.Bundle.GetTaskActualStatusByUUID:input_type -> bundle.GetTaskActualStatusByUUIDRequest - 112, // 109: bundle.Bundle.BatchAssignTask:input_type -> bundle.BatchAssignTaskRequest - 115, // 110: bundle.Bundle.BatchTerminateTask:input_type -> bundle.BatchTerminateTaskRequest - 99, // 111: bundle.Bundle.GetArtistUploadStatsList:input_type -> bundle.TaskQueryRequest - 138, // 112: bundle.Bundle.GetPendingTaskLayout:input_type -> bundle.GetPendingTaskLayoutReq - 140, // 113: bundle.Bundle.SetPendingTaskLayout:input_type -> bundle.SetPendingTaskLayoutReq - 126, // 114: bundle.Bundle.GetPendingUploadBreakdown:input_type -> bundle.PendingUploadBreakdownRequest - 129, // 115: bundle.Bundle.GetPendingAssign:input_type -> bundle.PendingAssignRequest - 116, // 116: bundle.Bundle.RevertTaskCompletionByUUIDItem:input_type -> bundle.RevertTaskCompletionByUUIDItemRequest - 104, // 117: bundle.Bundle.AddHiddenTaskAssignee:input_type -> bundle.AddHiddenTaskAssigneeRequest - 142, // 118: bundle.Bundle.MetricsBusiness:input_type -> bundle.MetricsBusinessReq - 144, // 119: bundle.Bundle.MetricsOperatingCreate:input_type -> bundle.MetricsOperatingCreateReq - 146, // 120: bundle.Bundle.MetricsOperatingStatus:input_type -> bundle.MetricsOperatingStatusReq - 148, // 121: bundle.Bundle.MetricsBundlePurchaseExport:input_type -> bundle.MetricsBundlePurchaseExportReq - 151, // 122: bundle.Bundle.MetricsArtistAccountExport:input_type -> bundle.MetricsArtistAccountExportReq - 154, // 123: bundle.Bundle.MetricsVideoSubmitExport:input_type -> bundle.MetricsVideoSubmitExportReq - 14, // 124: bundle.Bundle.CreateBundle:output_type -> bundle.CommonResponse - 14, // 125: bundle.Bundle.UpdateBundle:output_type -> bundle.CommonResponse - 14, // 126: bundle.Bundle.DeleteBundle:output_type -> bundle.CommonResponse - 14, // 127: bundle.Bundle.HandShelf:output_type -> bundle.CommonResponse - 18, // 128: bundle.Bundle.SaveBundle:output_type -> bundle.SaveResponse - 23, // 129: bundle.Bundle.BundleListV2:output_type -> bundle.BundleListResponse - 27, // 130: bundle.Bundle.BundleDetailV2:output_type -> bundle.BundleDetailResponseV2 - 23, // 131: bundle.Bundle.BundleListH5V2:output_type -> bundle.BundleListResponse - 16, // 132: bundle.Bundle.BundleLangDetailV2:output_type -> bundle.BundleProfileLang - 23, // 133: bundle.Bundle.BundleList:output_type -> bundle.BundleListResponse - 26, // 134: bundle.Bundle.BundleDetail:output_type -> bundle.BundleDetailResponse - 14, // 135: bundle.Bundle.CreateOrderRecord:output_type -> bundle.CommonResponse - 14, // 136: bundle.Bundle.UpdateOrderRecord:output_type -> bundle.CommonResponse - 14, // 137: bundle.Bundle.UpdateOrderRecordByOrderNo:output_type -> bundle.CommonResponse - 34, // 138: bundle.Bundle.OrderRecordsList:output_type -> bundle.OrderRecordsResponse - 36, // 139: bundle.Bundle.OrderRecordsDetail:output_type -> bundle.OrderRecordsDetailResponse - 14, // 140: bundle.Bundle.UpdateFinancialConfirmationStatus:output_type -> bundle.CommonResponse - 14, // 141: bundle.Bundle.CreateOrderAddRecord:output_type -> bundle.CommonResponse - 13, // 142: bundle.Bundle.PackagePriceAndTime:output_type -> bundle.PackagePriceAndTimeResponse - 10, // 143: bundle.Bundle.OrderRecordsListV2:output_type -> bundle.OrderRecordsResponseV2 - 6, // 144: bundle.Bundle.OrderListByOrderNo:output_type -> bundle.OrderInfoByOrderNoResp - 85, // 145: bundle.Bundle.OnlyAddValueListByOrderNo:output_type -> bundle.OnlyAddValueListByOrderNoResp - 14, // 146: bundle.Bundle.ReSignTheContract:output_type -> bundle.CommonResponse - 39, // 147: bundle.Bundle.CreateValueAddBundle:output_type -> bundle.CreateValueAddBundleResponse - 41, // 148: bundle.Bundle.ValueAddBundleList:output_type -> bundle.ValueAddBundleListResponse - 43, // 149: bundle.Bundle.ValueAddBundleDetail:output_type -> bundle.ValueAddBundleDetailResponse - 18, // 150: bundle.Bundle.SaveValueAddService:output_type -> bundle.SaveResponse - 49, // 151: bundle.Bundle.ValueAddServiceList:output_type -> bundle.ValueAddServiceListResponse - 51, // 152: bundle.Bundle.ValueAddServiceDetail:output_type -> bundle.ValueAddServiceDetailResponse - 46, // 153: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:output_type -> bundle.ValueAddServiceLang - 53, // 154: bundle.Bundle.CalculatePrice:output_type -> bundle.CalculatePriceResponse - 55, // 155: bundle.Bundle.BatchGetValueAddServiceLang:output_type -> bundle.BatchGetValueAddServiceLangResponse - 14, // 156: bundle.Bundle.DeleteValueAddService:output_type -> bundle.CommonResponse - 57, // 157: bundle.Bundle.BundleExtend:output_type -> bundle.BundleExtendResponse - 59, // 158: bundle.Bundle.BundleExtendRecordsList:output_type -> bundle.BundleExtendRecordsListResponse - 67, // 159: bundle.Bundle.GetBundleBalanceList:output_type -> bundle.GetBundleBalanceListResp - 83, // 160: bundle.Bundle.GetBundleBalanceByUserId:output_type -> bundle.GetBundleBalanceByUserIdResp - 69, // 161: bundle.Bundle.CreateBundleBalance:output_type -> bundle.CreateBundleBalanceResp - 71, // 162: bundle.Bundle.AddBundleBalance:output_type -> bundle.AddBundleBalanceResp - 98, // 163: bundle.Bundle.BundleActivate:output_type -> bundle.BundleActivateResp - 66, // 164: bundle.Bundle.BundleBalanceExport:output_type -> bundle.BundleBalanceExportResp - 137, // 165: bundle.Bundle.GetBundleBalanceLayout:output_type -> bundle.GetBundleBalanceLayoutResp - 135, // 166: bundle.Bundle.SetBundleBalanceLayout:output_type -> bundle.SetBundleBalanceLayoutResp - 73, // 167: bundle.Bundle.GetUsedRecordList:output_type -> bundle.GetUsedRecordListResp - 77, // 168: bundle.Bundle.GetImageWorkDetail:output_type -> bundle.GetImageWorkDetailResp - 78, // 169: bundle.Bundle.GetVedioWorkDetail:output_type -> bundle.GetVedioeWorkDetailResp - 81, // 170: bundle.Bundle.ToBeComfirmedWorks:output_type -> bundle.ToBeComfirmedWorksResp - 89, // 171: bundle.Bundle.ConfirmWork:output_type -> bundle.ConfirmWorkResp - 92, // 172: bundle.Bundle.GetWaitConfirmWorkList:output_type -> bundle.GetWaitConfirmWorkListResp - 3, // 173: bundle.Bundle.GetReconciliationList:output_type -> bundle.GetReconciliationListResp - 14, // 174: bundle.Bundle.CreateReconciliation:output_type -> bundle.CommonResponse - 14, // 175: bundle.Bundle.UpdateReconciliation:output_type -> bundle.CommonResponse - 14, // 176: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:output_type -> bundle.CommonResponse - 94, // 177: bundle.Bundle.ListUnfinishedInfos:output_type -> bundle.UnfinishedInfos - 14, // 178: bundle.Bundle.SoftDeleteUnfinishedInfo:output_type -> bundle.CommonResponse - 100, // 179: bundle.Bundle.GetPendingTaskList:output_type -> bundle.TaskQueryResponse - 14, // 180: bundle.Bundle.AssignTask:output_type -> bundle.CommonResponse - 14, // 181: bundle.Bundle.UpdatePendingCount:output_type -> bundle.CommonResponse - 107, // 182: bundle.Bundle.GetRecentAssignRecords:output_type -> bundle.RecentAssignRecordsResponse - 109, // 183: bundle.Bundle.GetEmployeeAssignedTasks:output_type -> bundle.EmployeeTaskQueryResponse - 14, // 184: bundle.Bundle.CompleteTaskManually:output_type -> bundle.CommonResponse - 14, // 185: bundle.Bundle.UpdateTaskProgress:output_type -> bundle.CommonResponse - 122, // 186: bundle.Bundle.GetTaskAssignRecordsList:output_type -> bundle.TaskAssignRecordsQueryResponse - 133, // 187: bundle.Bundle.GetArtistBundleBalance:output_type -> bundle.ArtistBundleBalanceResponse - 121, // 188: bundle.Bundle.TerminateTaskByUUID:output_type -> bundle.ComResponse - 118, // 189: bundle.Bundle.GetTaskActualStatusByUUID:output_type -> bundle.GetTaskActualStatusByUUIDResponse - 121, // 190: bundle.Bundle.BatchAssignTask:output_type -> bundle.ComResponse - 121, // 191: bundle.Bundle.BatchTerminateTask:output_type -> bundle.ComResponse - 125, // 192: bundle.Bundle.GetArtistUploadStatsList:output_type -> bundle.ArtistUploadStatsResponse - 139, // 193: bundle.Bundle.GetPendingTaskLayout:output_type -> bundle.GetPendingTaskLayoutResp - 141, // 194: bundle.Bundle.SetPendingTaskLayout:output_type -> bundle.SetPendingTaskLayoutResp - 128, // 195: bundle.Bundle.GetPendingUploadBreakdown:output_type -> bundle.PendingUploadBreakdownResponse - 131, // 196: bundle.Bundle.GetPendingAssign:output_type -> bundle.PendingAssignResponse - 121, // 197: bundle.Bundle.RevertTaskCompletionByUUIDItem:output_type -> bundle.ComResponse - 121, // 198: bundle.Bundle.AddHiddenTaskAssignee:output_type -> bundle.ComResponse - 143, // 199: bundle.Bundle.MetricsBusiness:output_type -> bundle.MetricsBusinessResp - 145, // 200: bundle.Bundle.MetricsOperatingCreate:output_type -> bundle.MetricsOperatingCreateResp - 147, // 201: bundle.Bundle.MetricsOperatingStatus:output_type -> bundle.MetricsOperatingStatusResp - 149, // 202: bundle.Bundle.MetricsBundlePurchaseExport:output_type -> bundle.MetricsBundlePurchaseExportResp - 152, // 203: bundle.Bundle.MetricsArtistAccountExport:output_type -> bundle.MetricsArtistAccountExportResp - 155, // 204: bundle.Bundle.MetricsVideoSubmitExport:output_type -> bundle.MetricsVideoSubmitExportResp - 124, // [124:205] is the sub-list for method output_type - 43, // [43:124] is the sub-list for method input_type - 43, // [43:43] is the sub-list for extension type_name - 43, // [43:43] is the sub-list for extension extendee - 0, // [0:43] is the sub-list for field type_name + 2, // 0: bundle.QueryTheOrderSnapshotInformationResp.bundleOrder:type_name -> bundle.ServiceInformation + 2, // 1: bundle.QueryTheOrderSnapshotInformationResp.addBundleOrder:type_name -> bundle.ServiceInformation + 7, // 2: bundle.GetReconciliationListResp.list:type_name -> bundle.ReconciliationInfo + 11, // 3: bundle.OrderCreateRecord.addRecords:type_name -> bundle.OrderCreateAddRecord + 14, // 4: bundle.OrderRecordsResponseV2.bundleInfo:type_name -> bundle.OrderBundleRecordInfo + 15, // 5: bundle.OrderBundleRecordInfo.addBundleInfo:type_name -> bundle.OrderAddBundleRecordInfo + 22, // 6: bundle.BundleProfile.selectValueAddService:type_name -> bundle.SelectValueAddService + 23, // 7: bundle.BundleProfile.selectValueAdditionalService:type_name -> bundle.SelectValueAdditionalService + 19, // 8: bundle.BundleProfile.bundleProfileLang:type_name -> bundle.BundleProfileLang + 20, // 9: bundle.BundleProfileLang.serviceLangInfo:type_name -> bundle.ServiceLangInfo + 18, // 10: bundle.BundleListResponse.bundles:type_name -> bundle.BundleProfile + 18, // 11: bundle.BundleDetailResponse.bundle:type_name -> bundle.BundleProfile + 18, // 12: bundle.BundleDetailResponseV2.bundle:type_name -> bundle.BundleProfile + 35, // 13: bundle.OrderRecord.priceOptionsInfo:type_name -> bundle.PriceOptionsInfo + 32, // 14: bundle.OrderRecord.addInfos:type_name -> bundle.AddInfo + 34, // 15: bundle.OrderAddRecord.addPriceOptionsList:type_name -> bundle.AddPriceOptionsInfo + 31, // 16: bundle.OrderRecordsResponse.orderRecords:type_name -> bundle.OrderRecord + 31, // 17: bundle.OrderRecordsDetailResponse.orderRecord:type_name -> bundle.OrderRecord + 40, // 18: bundle.ValueAddBundleListResponse.data:type_name -> bundle.ValueAddBundleProfile + 40, // 19: bundle.ValueAddBundleDetailResponse.data:type_name -> bundle.ValueAddBundleProfile + 49, // 20: bundle.ValueAddService.serviceLang:type_name -> bundle.ValueAddServiceLang + 50, // 21: bundle.ValueAddServiceLang.options:type_name -> bundle.ValueAddPriceOptions + 48, // 22: bundle.ValueAddServiceListResponse.valueAddServiceList:type_name -> bundle.ValueAddService + 48, // 23: bundle.ValueAddServiceDetailResponse.valueAddService:type_name -> bundle.ValueAddService + 49, // 24: bundle.BatchGetValueAddServiceLangResponse.valueAddServiceLangList:type_name -> bundle.ValueAddServiceLang + 63, // 25: bundle.BundleExtendRecordsListResponse.data:type_name -> bundle.BundleExtendRecordItem + 67, // 26: bundle.BundleBalanceExportResp.data:type_name -> bundle.BundleBalanceExportItem + 66, // 27: bundle.GetBundleBalanceListResp.data:type_name -> bundle.BundleBalanceItem + 77, // 28: bundle.GetUsedRecordListResp.data:type_name -> bundle.WorkCastItem + 83, // 29: bundle.ToBeComfirmedWorksResp.data:type_name -> bundle.workItem + 89, // 30: bundle.OnlyAddValueListByOrderNoResp.AddBundleInfos:type_name -> bundle.AddBundleInfo + 93, // 31: bundle.GetWaitConfirmWorkListResp.data:type_name -> bundle.ConfirmWorkItem + 98, // 32: bundle.UnfinishedInfos.unfinishedInfos:type_name -> bundle.UnfinishedInfo + 104, // 33: bundle.TaskQueryResponse.tasks:type_name -> bundle.TaskManagementInfo + 109, // 34: bundle.RecentAssignRecordsResponse.operatorList:type_name -> bundle.RecentAssigneeItem + 113, // 35: bundle.EmployeeTaskQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo + 114, // 36: bundle.BatchAssignTaskRequest.items:type_name -> bundle.BatchAssignTaskItem + 113, // 37: bundle.TaskAssignRecordsQueryResponse.records:type_name -> bundle.TaskAssignRecordInfo + 126, // 38: bundle.TaskAssignRecordsQueryResponse.summary:type_name -> bundle.TaskAssignRecordsSummary + 127, // 39: bundle.ArtistUploadStatsResponse.items:type_name -> bundle.ArtistUploadStatsItem + 130, // 40: bundle.PendingUploadBreakdownResponse.items:type_name -> bundle.PendingUploadBreakdownItem + 133, // 41: bundle.PendingAssignResponse.items:type_name -> bundle.PendingAssignItem + 153, // 42: bundle.MetricsBundlePurchaseExportResp.data:type_name -> bundle.MetricsBundlePurchaseItem + 156, // 43: bundle.MetricsArtistAccountExportResp.data:type_name -> bundle.MetricsArtistAccountExportItem + 159, // 44: bundle.MetricsVideoSubmitExportResp.data:type_name -> bundle.MetricsVideoSubmitExportItem + 18, // 45: bundle.Bundle.CreateBundle:input_type -> bundle.BundleProfile + 18, // 46: bundle.Bundle.UpdateBundle:input_type -> bundle.BundleProfile + 24, // 47: bundle.Bundle.DeleteBundle:input_type -> bundle.DelBundleRequest + 28, // 48: bundle.Bundle.HandShelf:input_type -> bundle.HandShelfRequest + 18, // 49: bundle.Bundle.SaveBundle:input_type -> bundle.BundleProfile + 25, // 50: bundle.Bundle.BundleListV2:input_type -> bundle.BundleListRequest + 27, // 51: bundle.Bundle.BundleDetailV2:input_type -> bundle.BundleDetailRequest + 25, // 52: bundle.Bundle.BundleListH5V2:input_type -> bundle.BundleListRequest + 27, // 53: bundle.Bundle.BundleLangDetailV2:input_type -> bundle.BundleDetailRequest + 25, // 54: bundle.Bundle.BundleList:input_type -> bundle.BundleListRequest + 27, // 55: bundle.Bundle.BundleDetail:input_type -> bundle.BundleDetailRequest + 10, // 56: bundle.Bundle.CreateOrderRecord:input_type -> bundle.OrderCreateRecord + 31, // 57: bundle.Bundle.UpdateOrderRecord:input_type -> bundle.OrderRecord + 31, // 58: bundle.Bundle.UpdateOrderRecordByOrderNo:input_type -> bundle.OrderRecord + 36, // 59: bundle.Bundle.OrderRecordsList:input_type -> bundle.OrderRecordsRequest + 38, // 60: bundle.Bundle.OrderRecordsDetail:input_type -> bundle.OrderRecordsDetailRequest + 47, // 61: bundle.Bundle.UpdateFinancialConfirmationStatus:input_type -> bundle.FinancialConfirmationRequest + 33, // 62: bundle.Bundle.CreateOrderAddRecord:input_type -> bundle.OrderAddRecord + 31, // 63: bundle.Bundle.PackagePriceAndTime:input_type -> bundle.OrderRecord + 12, // 64: bundle.Bundle.OrderRecordsListV2:input_type -> bundle.OrderRecordsRequestV2 + 8, // 65: bundle.Bundle.OrderListByOrderNo:input_type -> bundle.OrderInfoByOrderNoRequest + 87, // 66: bundle.Bundle.OnlyAddValueListByOrderNo:input_type -> bundle.OnlyAddValueListByOrderNoRequest + 3, // 67: bundle.Bundle.ReSignTheContract:input_type -> bundle.ReSignTheContractRequest + 41, // 68: bundle.Bundle.CreateValueAddBundle:input_type -> bundle.CreateValueAddBundleRequest + 43, // 69: bundle.Bundle.ValueAddBundleList:input_type -> bundle.ValueAddBundleListRequest + 45, // 70: bundle.Bundle.ValueAddBundleDetail:input_type -> bundle.ValueAddBundleDetailRequest + 49, // 71: bundle.Bundle.SaveValueAddService:input_type -> bundle.ValueAddServiceLang + 51, // 72: bundle.Bundle.ValueAddServiceList:input_type -> bundle.ValueAddServiceListRequest + 53, // 73: bundle.Bundle.ValueAddServiceDetail:input_type -> bundle.ValueAddServiceDetailRequest + 53, // 74: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:input_type -> bundle.ValueAddServiceDetailRequest + 55, // 75: bundle.Bundle.CalculatePrice:input_type -> bundle.CalculatePriceRequest + 57, // 76: bundle.Bundle.BatchGetValueAddServiceLang:input_type -> bundle.BatchGetValueAddServiceLangRequest + 4, // 77: bundle.Bundle.DeleteValueAddService:input_type -> bundle.DeleteValueAddServiceRequest + 59, // 78: bundle.Bundle.BundleExtend:input_type -> bundle.BundleExtendRequest + 61, // 79: bundle.Bundle.BundleExtendRecordsList:input_type -> bundle.BundleExtendRecordsListRequest + 64, // 80: bundle.Bundle.GetBundleBalanceList:input_type -> bundle.GetBundleBalanceListReq + 85, // 81: bundle.Bundle.GetBundleBalanceByUserId:input_type -> bundle.GetBundleBalanceByUserIdReq + 71, // 82: bundle.Bundle.CreateBundleBalance:input_type -> bundle.CreateBundleBalanceReq + 73, // 83: bundle.Bundle.AddBundleBalance:input_type -> bundle.AddBundleBalanceReq + 100, // 84: bundle.Bundle.BundleActivate:input_type -> bundle.BundleActivateReq + 68, // 85: bundle.Bundle.BundleBalanceExport:input_type -> bundle.BundleBalanceExportReq + 139, // 86: bundle.Bundle.GetBundleBalanceLayout:input_type -> bundle.GetBundleBalanceLayoutReq + 137, // 87: bundle.Bundle.SetBundleBalanceLayout:input_type -> bundle.SetBundleBalanceLayoutReq + 75, // 88: bundle.Bundle.GetUsedRecordList:input_type -> bundle.GetUsedRecordListReq + 78, // 89: bundle.Bundle.GetImageWorkDetail:input_type -> bundle.GetImageWorkDetailReq + 79, // 90: bundle.Bundle.GetVedioWorkDetail:input_type -> bundle.GetVedioWorkDetailReq + 82, // 91: bundle.Bundle.ToBeComfirmedWorks:input_type -> bundle.ToBeComfirmedWorksReq + 91, // 92: bundle.Bundle.ConfirmWork:input_type -> bundle.ConfirmWorkReq + 94, // 93: bundle.Bundle.GetWaitConfirmWorkList:input_type -> bundle.GetWaitConfirmWorkListReq + 5, // 94: bundle.Bundle.GetReconciliationList:input_type -> bundle.GetReconciliationListReq + 7, // 95: bundle.Bundle.CreateReconciliation:input_type -> bundle.ReconciliationInfo + 7, // 96: bundle.Bundle.UpdateReconciliation:input_type -> bundle.ReconciliationInfo + 90, // 97: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:input_type -> bundle.UpdateStatusAndPayTimeBySerialNumber + 96, // 98: bundle.Bundle.ListUnfinishedInfos:input_type -> bundle.AutoCreateUserAndOrderRequest + 99, // 99: bundle.Bundle.SoftDeleteUnfinishedInfo:input_type -> bundle.SoftDeleteUnfinishedInfoRequest + 102, // 100: bundle.Bundle.GetPendingTaskList:input_type -> bundle.TaskQueryRequest + 105, // 101: bundle.Bundle.AssignTask:input_type -> bundle.TaskAssignRequest + 106, // 102: bundle.Bundle.UpdatePendingCount:input_type -> bundle.UpdatePendingCountRequest + 108, // 103: bundle.Bundle.GetRecentAssignRecords:input_type -> bundle.RecentAssignRecordsRequest + 111, // 104: bundle.Bundle.GetEmployeeAssignedTasks:input_type -> bundle.EmployeeTaskQueryRequest + 116, // 105: bundle.Bundle.CompleteTaskManually:input_type -> bundle.CompleteTaskManuallyRequest + 122, // 106: bundle.Bundle.UpdateTaskProgress:input_type -> bundle.UpdateTaskProgressRequest + 123, // 107: bundle.Bundle.GetTaskAssignRecordsList:input_type -> bundle.TaskAssignRecordsQueryRequest + 135, // 108: bundle.Bundle.GetArtistBundleBalance:input_type -> bundle.ArtistBundleBalanceRequest + 117, // 109: bundle.Bundle.TerminateTaskByUUID:input_type -> bundle.TerminateTaskByUUIDRequest + 120, // 110: bundle.Bundle.GetTaskActualStatusByUUID:input_type -> bundle.GetTaskActualStatusByUUIDRequest + 115, // 111: bundle.Bundle.BatchAssignTask:input_type -> bundle.BatchAssignTaskRequest + 118, // 112: bundle.Bundle.BatchTerminateTask:input_type -> bundle.BatchTerminateTaskRequest + 102, // 113: bundle.Bundle.GetArtistUploadStatsList:input_type -> bundle.TaskQueryRequest + 141, // 114: bundle.Bundle.GetPendingTaskLayout:input_type -> bundle.GetPendingTaskLayoutReq + 143, // 115: bundle.Bundle.SetPendingTaskLayout:input_type -> bundle.SetPendingTaskLayoutReq + 129, // 116: bundle.Bundle.GetPendingUploadBreakdown:input_type -> bundle.PendingUploadBreakdownRequest + 132, // 117: bundle.Bundle.GetPendingAssign:input_type -> bundle.PendingAssignRequest + 119, // 118: bundle.Bundle.RevertTaskCompletionByUUIDItem:input_type -> bundle.RevertTaskCompletionByUUIDItemRequest + 107, // 119: bundle.Bundle.AddHiddenTaskAssignee:input_type -> bundle.AddHiddenTaskAssigneeRequest + 145, // 120: bundle.Bundle.MetricsBusiness:input_type -> bundle.MetricsBusinessReq + 147, // 121: bundle.Bundle.MetricsOperatingCreate:input_type -> bundle.MetricsOperatingCreateReq + 149, // 122: bundle.Bundle.MetricsOperatingStatus:input_type -> bundle.MetricsOperatingStatusReq + 151, // 123: bundle.Bundle.MetricsBundlePurchaseExport:input_type -> bundle.MetricsBundlePurchaseExportReq + 154, // 124: bundle.Bundle.MetricsArtistAccountExport:input_type -> bundle.MetricsArtistAccountExportReq + 157, // 125: bundle.Bundle.MetricsVideoSubmitExport:input_type -> bundle.MetricsVideoSubmitExportReq + 0, // 126: bundle.Bundle.QueryTheOrderSnapshotInformation:input_type -> bundle.QueryTheOrderSnapshotInformationReq + 17, // 127: bundle.Bundle.CreateBundle:output_type -> bundle.CommonResponse + 17, // 128: bundle.Bundle.UpdateBundle:output_type -> bundle.CommonResponse + 17, // 129: bundle.Bundle.DeleteBundle:output_type -> bundle.CommonResponse + 17, // 130: bundle.Bundle.HandShelf:output_type -> bundle.CommonResponse + 21, // 131: bundle.Bundle.SaveBundle:output_type -> bundle.SaveResponse + 26, // 132: bundle.Bundle.BundleListV2:output_type -> bundle.BundleListResponse + 30, // 133: bundle.Bundle.BundleDetailV2:output_type -> bundle.BundleDetailResponseV2 + 26, // 134: bundle.Bundle.BundleListH5V2:output_type -> bundle.BundleListResponse + 19, // 135: bundle.Bundle.BundleLangDetailV2:output_type -> bundle.BundleProfileLang + 26, // 136: bundle.Bundle.BundleList:output_type -> bundle.BundleListResponse + 29, // 137: bundle.Bundle.BundleDetail:output_type -> bundle.BundleDetailResponse + 17, // 138: bundle.Bundle.CreateOrderRecord:output_type -> bundle.CommonResponse + 17, // 139: bundle.Bundle.UpdateOrderRecord:output_type -> bundle.CommonResponse + 17, // 140: bundle.Bundle.UpdateOrderRecordByOrderNo:output_type -> bundle.CommonResponse + 37, // 141: bundle.Bundle.OrderRecordsList:output_type -> bundle.OrderRecordsResponse + 39, // 142: bundle.Bundle.OrderRecordsDetail:output_type -> bundle.OrderRecordsDetailResponse + 17, // 143: bundle.Bundle.UpdateFinancialConfirmationStatus:output_type -> bundle.CommonResponse + 17, // 144: bundle.Bundle.CreateOrderAddRecord:output_type -> bundle.CommonResponse + 16, // 145: bundle.Bundle.PackagePriceAndTime:output_type -> bundle.PackagePriceAndTimeResponse + 13, // 146: bundle.Bundle.OrderRecordsListV2:output_type -> bundle.OrderRecordsResponseV2 + 9, // 147: bundle.Bundle.OrderListByOrderNo:output_type -> bundle.OrderInfoByOrderNoResp + 88, // 148: bundle.Bundle.OnlyAddValueListByOrderNo:output_type -> bundle.OnlyAddValueListByOrderNoResp + 17, // 149: bundle.Bundle.ReSignTheContract:output_type -> bundle.CommonResponse + 42, // 150: bundle.Bundle.CreateValueAddBundle:output_type -> bundle.CreateValueAddBundleResponse + 44, // 151: bundle.Bundle.ValueAddBundleList:output_type -> bundle.ValueAddBundleListResponse + 46, // 152: bundle.Bundle.ValueAddBundleDetail:output_type -> bundle.ValueAddBundleDetailResponse + 21, // 153: bundle.Bundle.SaveValueAddService:output_type -> bundle.SaveResponse + 52, // 154: bundle.Bundle.ValueAddServiceList:output_type -> bundle.ValueAddServiceListResponse + 54, // 155: bundle.Bundle.ValueAddServiceDetail:output_type -> bundle.ValueAddServiceDetailResponse + 49, // 156: bundle.Bundle.ValueAddServiceLangByUuidAndLanguage:output_type -> bundle.ValueAddServiceLang + 56, // 157: bundle.Bundle.CalculatePrice:output_type -> bundle.CalculatePriceResponse + 58, // 158: bundle.Bundle.BatchGetValueAddServiceLang:output_type -> bundle.BatchGetValueAddServiceLangResponse + 17, // 159: bundle.Bundle.DeleteValueAddService:output_type -> bundle.CommonResponse + 60, // 160: bundle.Bundle.BundleExtend:output_type -> bundle.BundleExtendResponse + 62, // 161: bundle.Bundle.BundleExtendRecordsList:output_type -> bundle.BundleExtendRecordsListResponse + 70, // 162: bundle.Bundle.GetBundleBalanceList:output_type -> bundle.GetBundleBalanceListResp + 86, // 163: bundle.Bundle.GetBundleBalanceByUserId:output_type -> bundle.GetBundleBalanceByUserIdResp + 72, // 164: bundle.Bundle.CreateBundleBalance:output_type -> bundle.CreateBundleBalanceResp + 74, // 165: bundle.Bundle.AddBundleBalance:output_type -> bundle.AddBundleBalanceResp + 101, // 166: bundle.Bundle.BundleActivate:output_type -> bundle.BundleActivateResp + 69, // 167: bundle.Bundle.BundleBalanceExport:output_type -> bundle.BundleBalanceExportResp + 140, // 168: bundle.Bundle.GetBundleBalanceLayout:output_type -> bundle.GetBundleBalanceLayoutResp + 138, // 169: bundle.Bundle.SetBundleBalanceLayout:output_type -> bundle.SetBundleBalanceLayoutResp + 76, // 170: bundle.Bundle.GetUsedRecordList:output_type -> bundle.GetUsedRecordListResp + 80, // 171: bundle.Bundle.GetImageWorkDetail:output_type -> bundle.GetImageWorkDetailResp + 81, // 172: bundle.Bundle.GetVedioWorkDetail:output_type -> bundle.GetVedioeWorkDetailResp + 84, // 173: bundle.Bundle.ToBeComfirmedWorks:output_type -> bundle.ToBeComfirmedWorksResp + 92, // 174: bundle.Bundle.ConfirmWork:output_type -> bundle.ConfirmWorkResp + 95, // 175: bundle.Bundle.GetWaitConfirmWorkList:output_type -> bundle.GetWaitConfirmWorkListResp + 6, // 176: bundle.Bundle.GetReconciliationList:output_type -> bundle.GetReconciliationListResp + 17, // 177: bundle.Bundle.CreateReconciliation:output_type -> bundle.CommonResponse + 17, // 178: bundle.Bundle.UpdateReconciliation:output_type -> bundle.CommonResponse + 17, // 179: bundle.Bundle.UpdateReconciliationStatusBySerialNumber:output_type -> bundle.CommonResponse + 97, // 180: bundle.Bundle.ListUnfinishedInfos:output_type -> bundle.UnfinishedInfos + 17, // 181: bundle.Bundle.SoftDeleteUnfinishedInfo:output_type -> bundle.CommonResponse + 103, // 182: bundle.Bundle.GetPendingTaskList:output_type -> bundle.TaskQueryResponse + 17, // 183: bundle.Bundle.AssignTask:output_type -> bundle.CommonResponse + 17, // 184: bundle.Bundle.UpdatePendingCount:output_type -> bundle.CommonResponse + 110, // 185: bundle.Bundle.GetRecentAssignRecords:output_type -> bundle.RecentAssignRecordsResponse + 112, // 186: bundle.Bundle.GetEmployeeAssignedTasks:output_type -> bundle.EmployeeTaskQueryResponse + 17, // 187: bundle.Bundle.CompleteTaskManually:output_type -> bundle.CommonResponse + 17, // 188: bundle.Bundle.UpdateTaskProgress:output_type -> bundle.CommonResponse + 125, // 189: bundle.Bundle.GetTaskAssignRecordsList:output_type -> bundle.TaskAssignRecordsQueryResponse + 136, // 190: bundle.Bundle.GetArtistBundleBalance:output_type -> bundle.ArtistBundleBalanceResponse + 124, // 191: bundle.Bundle.TerminateTaskByUUID:output_type -> bundle.ComResponse + 121, // 192: bundle.Bundle.GetTaskActualStatusByUUID:output_type -> bundle.GetTaskActualStatusByUUIDResponse + 124, // 193: bundle.Bundle.BatchAssignTask:output_type -> bundle.ComResponse + 124, // 194: bundle.Bundle.BatchTerminateTask:output_type -> bundle.ComResponse + 128, // 195: bundle.Bundle.GetArtistUploadStatsList:output_type -> bundle.ArtistUploadStatsResponse + 142, // 196: bundle.Bundle.GetPendingTaskLayout:output_type -> bundle.GetPendingTaskLayoutResp + 144, // 197: bundle.Bundle.SetPendingTaskLayout:output_type -> bundle.SetPendingTaskLayoutResp + 131, // 198: bundle.Bundle.GetPendingUploadBreakdown:output_type -> bundle.PendingUploadBreakdownResponse + 134, // 199: bundle.Bundle.GetPendingAssign:output_type -> bundle.PendingAssignResponse + 124, // 200: bundle.Bundle.RevertTaskCompletionByUUIDItem:output_type -> bundle.ComResponse + 124, // 201: bundle.Bundle.AddHiddenTaskAssignee:output_type -> bundle.ComResponse + 146, // 202: bundle.Bundle.MetricsBusiness:output_type -> bundle.MetricsBusinessResp + 148, // 203: bundle.Bundle.MetricsOperatingCreate:output_type -> bundle.MetricsOperatingCreateResp + 150, // 204: bundle.Bundle.MetricsOperatingStatus:output_type -> bundle.MetricsOperatingStatusResp + 152, // 205: bundle.Bundle.MetricsBundlePurchaseExport:output_type -> bundle.MetricsBundlePurchaseExportResp + 155, // 206: bundle.Bundle.MetricsArtistAccountExport:output_type -> bundle.MetricsArtistAccountExportResp + 158, // 207: bundle.Bundle.MetricsVideoSubmitExport:output_type -> bundle.MetricsVideoSubmitExportResp + 1, // 208: bundle.Bundle.QueryTheOrderSnapshotInformation:output_type -> bundle.QueryTheOrderSnapshotInformationResp + 127, // [127:209] is the sub-list for method output_type + 45, // [45:127] is the sub-list for method input_type + 45, // [45:45] is the sub-list for extension type_name + 45, // [45:45] is the sub-list for extension extendee + 0, // [0:45] is the sub-list for field type_name } func init() { file_pb_bundle_proto_init() } @@ -16525,7 +16707,7 @@ func file_pb_bundle_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: unsafe.Slice(unsafe.StringData(file_pb_bundle_proto_rawDesc), len(file_pb_bundle_proto_rawDesc)), NumEnums: 0, - NumMessages: 158, + NumMessages: 161, NumExtensions: 0, NumServices: 1, }, diff --git a/pb/bundle/bundle.validator.pb.go b/pb/bundle/bundle.validator.pb.go index e61c4a0..1045872 100644 --- a/pb/bundle/bundle.validator.pb.go +++ b/pb/bundle/bundle.validator.pb.go @@ -7,8 +7,8 @@ import ( fmt "fmt" math "math" proto "github.com/golang/protobuf/proto" - _ "github.com/mwitkow/go-proto-validators" _ "google.golang.org/protobuf/types/descriptorpb" + _ "github.com/mwitkow/go-proto-validators" github_com_mwitkow_go_proto_validators "github.com/mwitkow/go-proto-validators" ) @@ -17,6 +17,29 @@ var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf +func (this *QueryTheOrderSnapshotInformationReq) Validate() error { + return nil +} +func (this *QueryTheOrderSnapshotInformationResp) Validate() error { + for _, item := range this.BundleOrder { + if item != nil { + if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil { + return github_com_mwitkow_go_proto_validators.FieldError("BundleOrder", err) + } + } + } + for _, item := range this.AddBundleOrder { + if item != nil { + if err := github_com_mwitkow_go_proto_validators.CallValidatorIfExists(item); err != nil { + return github_com_mwitkow_go_proto_validators.FieldError("AddBundleOrder", err) + } + } + } + return nil +} +func (this *ServiceInformation) Validate() error { + return nil +} func (this *ReSignTheContractRequest) Validate() error { return nil } diff --git a/pb/bundle/bundle_triple.pb.go b/pb/bundle/bundle_triple.pb.go index a29f01b..e794982 100644 --- a/pb/bundle/bundle_triple.pb.go +++ b/pb/bundle/bundle_triple.pb.go @@ -117,6 +117,7 @@ type BundleClient interface { MetricsBundlePurchaseExport(ctx context.Context, in *MetricsBundlePurchaseExportReq, opts ...grpc_go.CallOption) (*MetricsBundlePurchaseExportResp, common.ErrorWithAttachment) MetricsArtistAccountExport(ctx context.Context, in *MetricsArtistAccountExportReq, opts ...grpc_go.CallOption) (*MetricsArtistAccountExportResp, common.ErrorWithAttachment) MetricsVideoSubmitExport(ctx context.Context, in *MetricsVideoSubmitExportReq, opts ...grpc_go.CallOption) (*MetricsVideoSubmitExportResp, common.ErrorWithAttachment) + QueryTheOrderSnapshotInformation(ctx context.Context, in *QueryTheOrderSnapshotInformationReq, opts ...grpc_go.CallOption) (*QueryTheOrderSnapshotInformationResp, common.ErrorWithAttachment) } type bundleClient struct { @@ -205,6 +206,7 @@ type BundleClientImpl struct { MetricsBundlePurchaseExport func(ctx context.Context, in *MetricsBundlePurchaseExportReq) (*MetricsBundlePurchaseExportResp, error) MetricsArtistAccountExport func(ctx context.Context, in *MetricsArtistAccountExportReq) (*MetricsArtistAccountExportResp, error) MetricsVideoSubmitExport func(ctx context.Context, in *MetricsVideoSubmitExportReq) (*MetricsVideoSubmitExportResp, error) + QueryTheOrderSnapshotInformation func(ctx context.Context, in *QueryTheOrderSnapshotInformationReq) (*QueryTheOrderSnapshotInformationResp, error) } func (c *BundleClientImpl) GetDubboStub(cc *triple.TripleConn) BundleClient { @@ -705,6 +707,12 @@ func (c *bundleClient) MetricsVideoSubmitExport(ctx context.Context, in *Metrics return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/MetricsVideoSubmitExport", in, out) } +func (c *bundleClient) QueryTheOrderSnapshotInformation(ctx context.Context, in *QueryTheOrderSnapshotInformationReq, opts ...grpc_go.CallOption) (*QueryTheOrderSnapshotInformationResp, common.ErrorWithAttachment) { + out := new(QueryTheOrderSnapshotInformationResp) + interfaceKey := ctx.Value(constant.InterfaceKey).(string) + return out, c.cc.Invoke(ctx, "/"+interfaceKey+"/QueryTheOrderSnapshotInformation", in, out) +} + // BundleServer is the server API for Bundle service. // All implementations must embed UnimplementedBundleServer // for forward compatibility @@ -798,6 +806,7 @@ type BundleServer interface { MetricsBundlePurchaseExport(context.Context, *MetricsBundlePurchaseExportReq) (*MetricsBundlePurchaseExportResp, error) MetricsArtistAccountExport(context.Context, *MetricsArtistAccountExportReq) (*MetricsArtistAccountExportResp, error) MetricsVideoSubmitExport(context.Context, *MetricsVideoSubmitExportReq) (*MetricsVideoSubmitExportResp, error) + QueryTheOrderSnapshotInformation(context.Context, *QueryTheOrderSnapshotInformationReq) (*QueryTheOrderSnapshotInformationResp, error) mustEmbedUnimplementedBundleServer() } @@ -1049,6 +1058,9 @@ func (UnimplementedBundleServer) MetricsArtistAccountExport(context.Context, *Me func (UnimplementedBundleServer) MetricsVideoSubmitExport(context.Context, *MetricsVideoSubmitExportReq) (*MetricsVideoSubmitExportResp, error) { return nil, status.Errorf(codes.Unimplemented, "method MetricsVideoSubmitExport not implemented") } +func (UnimplementedBundleServer) QueryTheOrderSnapshotInformation(context.Context, *QueryTheOrderSnapshotInformationReq) (*QueryTheOrderSnapshotInformationResp, error) { + return nil, status.Errorf(codes.Unimplemented, "method QueryTheOrderSnapshotInformation not implemented") +} func (s *UnimplementedBundleServer) XXX_SetProxyImpl(impl protocol.Invoker) { s.proxyImpl = impl } @@ -3426,6 +3438,35 @@ func _Bundle_MetricsVideoSubmitExport_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } +func _Bundle_QueryTheOrderSnapshotInformation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc_go.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryTheOrderSnapshotInformationReq) + 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("QueryTheOrderSnapshotInformation", 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) +} + // Bundle_ServiceDesc is the grpc_go.ServiceDesc for Bundle service. // It's only intended for direct use with grpc_go.RegisterService, // and not to be introspected or modified (even as a copy) @@ -3757,6 +3798,10 @@ var Bundle_ServiceDesc = grpc_go.ServiceDesc{ MethodName: "MetricsVideoSubmitExport", Handler: _Bundle_MetricsVideoSubmitExport_Handler, }, + { + MethodName: "QueryTheOrderSnapshotInformation", + Handler: _Bundle_QueryTheOrderSnapshotInformation_Handler, + }, }, Streams: []grpc_go.StreamDesc{}, Metadata: "pb/bundle.proto",