Fetch the repository succeeded.
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.34.2
// protoc v3.19.4
// source: review.proto
package review
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type Reviews struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ReviewImg []string `protobuf:"bytes,1,rep,name=ReviewImg,proto3" json:"ReviewImg,omitempty"`
}
func (x *Reviews) Reset() {
*x = Reviews{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Reviews) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Reviews) ProtoMessage() {}
func (x *Reviews) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Reviews.ProtoReflect.Descriptor instead.
func (*Reviews) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{0}
}
func (x *Reviews) GetReviewImg() []string {
if x != nil {
return x.ReviewImg
}
return nil
}
type ReviewInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ID int64 `protobuf:"varint,5,opt,name=ID,proto3" json:"ID,omitempty"`
UserId int64 `protobuf:"varint,10,opt,name=UserId,proto3" json:"UserId,omitempty"`
ReviewType int64 `protobuf:"varint,15,opt,name=ReviewType,proto3" json:"ReviewType,omitempty"`
ObjectId int64 `protobuf:"varint,20,opt,name=ObjectId,proto3" json:"ObjectId,omitempty"`
StarLevel int64 `protobuf:"varint,23,opt,name=StarLevel,proto3" json:"StarLevel,omitempty"`
Content string `protobuf:"bytes,25,opt,name=Content,proto3" json:"Content,omitempty"`
CreatedAt string `protobuf:"bytes,30,opt,name=CreatedAt,proto3" json:"CreatedAt,omitempty"`
Nickname string `protobuf:"bytes,35,opt,name=Nickname,proto3" json:"Nickname,omitempty"`
Avatar string `protobuf:"bytes,40,opt,name=Avatar,proto3" json:"Avatar,omitempty"`
ReviewImg *Reviews `protobuf:"bytes,45,opt,name=ReviewImg,proto3" json:"ReviewImg,omitempty"`
}
func (x *ReviewInfo) Reset() {
*x = ReviewInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ReviewInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ReviewInfo) ProtoMessage() {}
func (x *ReviewInfo) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ReviewInfo.ProtoReflect.Descriptor instead.
func (*ReviewInfo) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{1}
}
func (x *ReviewInfo) GetID() int64 {
if x != nil {
return x.ID
}
return 0
}
func (x *ReviewInfo) GetUserId() int64 {
if x != nil {
return x.UserId
}
return 0
}
func (x *ReviewInfo) GetReviewType() int64 {
if x != nil {
return x.ReviewType
}
return 0
}
func (x *ReviewInfo) GetObjectId() int64 {
if x != nil {
return x.ObjectId
}
return 0
}
func (x *ReviewInfo) GetStarLevel() int64 {
if x != nil {
return x.StarLevel
}
return 0
}
func (x *ReviewInfo) GetContent() string {
if x != nil {
return x.Content
}
return ""
}
func (x *ReviewInfo) GetCreatedAt() string {
if x != nil {
return x.CreatedAt
}
return ""
}
func (x *ReviewInfo) GetNickname() string {
if x != nil {
return x.Nickname
}
return ""
}
func (x *ReviewInfo) GetAvatar() string {
if x != nil {
return x.Avatar
}
return ""
}
func (x *ReviewInfo) GetReviewImg() *Reviews {
if x != nil {
return x.ReviewImg
}
return nil
}
// 添加评论
type CreateReviewRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info *ReviewInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
}
func (x *CreateReviewRequest) Reset() {
*x = CreateReviewRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateReviewRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateReviewRequest) ProtoMessage() {}
func (x *CreateReviewRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateReviewRequest.ProtoReflect.Descriptor instead.
func (*CreateReviewRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{2}
}
func (x *CreateReviewRequest) GetInfo() *ReviewInfo {
if x != nil {
return x.Info
}
return nil
}
type CreateReviewResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *CreateReviewResponse) Reset() {
*x = CreateReviewResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateReviewResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateReviewResponse) ProtoMessage() {}
func (x *CreateReviewResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateReviewResponse.ProtoReflect.Descriptor instead.
func (*CreateReviewResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{3}
}
// 展示评论列表
type ListReviewRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ObjectId int64 `protobuf:"varint,5,opt,name=ObjectId,proto3" json:"ObjectId,omitempty"`
ReviewType int64 `protobuf:"varint,10,opt,name=ReviewType,proto3" json:"ReviewType,omitempty"`
}
func (x *ListReviewRequest) Reset() {
*x = ListReviewRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListReviewRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListReviewRequest) ProtoMessage() {}
func (x *ListReviewRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListReviewRequest.ProtoReflect.Descriptor instead.
func (*ListReviewRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{4}
}
func (x *ListReviewRequest) GetObjectId() int64 {
if x != nil {
return x.ObjectId
}
return 0
}
func (x *ListReviewRequest) GetReviewType() int64 {
if x != nil {
return x.ReviewType
}
return 0
}
type ListReviewResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info []*ReviewInfo `protobuf:"bytes,1,rep,name=info,proto3" json:"info,omitempty"`
}
func (x *ListReviewResponse) Reset() {
*x = ListReviewResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ListReviewResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ListReviewResponse) ProtoMessage() {}
func (x *ListReviewResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ListReviewResponse.ProtoReflect.Descriptor instead.
func (*ListReviewResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{5}
}
func (x *ListReviewResponse) GetInfo() []*ReviewInfo {
if x != nil {
return x.Info
}
return nil
}
// 评论统计
type ReviewCountRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ObjectId int64 `protobuf:"varint,5,opt,name=ObjectId,proto3" json:"ObjectId,omitempty"`
ReviewType int64 `protobuf:"varint,10,opt,name=ReviewType,proto3" json:"ReviewType,omitempty"`
}
func (x *ReviewCountRequest) Reset() {
*x = ReviewCountRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ReviewCountRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ReviewCountRequest) ProtoMessage() {}
func (x *ReviewCountRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ReviewCountRequest.ProtoReflect.Descriptor instead.
func (*ReviewCountRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{6}
}
func (x *ReviewCountRequest) GetObjectId() int64 {
if x != nil {
return x.ObjectId
}
return 0
}
func (x *ReviewCountRequest) GetReviewType() int64 {
if x != nil {
return x.ReviewType
}
return 0
}
type ReviewCountResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Count int64 `protobuf:"varint,5,opt,name=Count,proto3" json:"Count,omitempty"`
ObjectId int64 `protobuf:"varint,10,opt,name=ObjectId,proto3" json:"ObjectId,omitempty"`
}
func (x *ReviewCountResponse) Reset() {
*x = ReviewCountResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ReviewCountResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ReviewCountResponse) ProtoMessage() {}
func (x *ReviewCountResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ReviewCountResponse.ProtoReflect.Descriptor instead.
func (*ReviewCountResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{7}
}
func (x *ReviewCountResponse) GetCount() int64 {
if x != nil {
return x.Count
}
return 0
}
func (x *ReviewCountResponse) GetObjectId() int64 {
if x != nil {
return x.ObjectId
}
return 0
}
// 展示评论详情
type ReviewInfoRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
UserId int64 `protobuf:"varint,2,opt,name=UserId,proto3" json:"UserId,omitempty"`
ObjectId int64 `protobuf:"varint,5,opt,name=ObjectId,proto3" json:"ObjectId,omitempty"`
ReviewType int64 `protobuf:"varint,10,opt,name=ReviewType,proto3" json:"ReviewType,omitempty"`
}
func (x *ReviewInfoRequest) Reset() {
*x = ReviewInfoRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ReviewInfoRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ReviewInfoRequest) ProtoMessage() {}
func (x *ReviewInfoRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ReviewInfoRequest.ProtoReflect.Descriptor instead.
func (*ReviewInfoRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{8}
}
func (x *ReviewInfoRequest) GetUserId() int64 {
if x != nil {
return x.UserId
}
return 0
}
func (x *ReviewInfoRequest) GetObjectId() int64 {
if x != nil {
return x.ObjectId
}
return 0
}
func (x *ReviewInfoRequest) GetReviewType() int64 {
if x != nil {
return x.ReviewType
}
return 0
}
type ReviewInfoResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info *ReviewInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
}
func (x *ReviewInfoResponse) Reset() {
*x = ReviewInfoResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ReviewInfoResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ReviewInfoResponse) ProtoMessage() {}
func (x *ReviewInfoResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ReviewInfoResponse.ProtoReflect.Descriptor instead.
func (*ReviewInfoResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{9}
}
func (x *ReviewInfoResponse) GetInfo() *ReviewInfo {
if x != nil {
return x.Info
}
return nil
}
// 点赞、收藏
type FavoriteInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ID int64 `protobuf:"varint,2,opt,name=ID,proto3" json:"ID,omitempty"`
UserId int64 `protobuf:"varint,5,opt,name=UserId,proto3" json:"UserId,omitempty"`
ObjectId int64 `protobuf:"varint,10,opt,name=ObjectId,proto3" json:"ObjectId,omitempty"`
FavoriteType int64 `protobuf:"varint,15,opt,name=FavoriteType,proto3" json:"FavoriteType,omitempty"`
ObjectType int64 `protobuf:"varint,20,opt,name=ObjectType,proto3" json:"ObjectType,omitempty"`
}
func (x *FavoriteInfo) Reset() {
*x = FavoriteInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FavoriteInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FavoriteInfo) ProtoMessage() {}
func (x *FavoriteInfo) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FavoriteInfo.ProtoReflect.Descriptor instead.
func (*FavoriteInfo) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{10}
}
func (x *FavoriteInfo) GetID() int64 {
if x != nil {
return x.ID
}
return 0
}
func (x *FavoriteInfo) GetUserId() int64 {
if x != nil {
return x.UserId
}
return 0
}
func (x *FavoriteInfo) GetObjectId() int64 {
if x != nil {
return x.ObjectId
}
return 0
}
func (x *FavoriteInfo) GetFavoriteType() int64 {
if x != nil {
return x.FavoriteType
}
return 0
}
func (x *FavoriteInfo) GetObjectType() int64 {
if x != nil {
return x.ObjectType
}
return 0
}
type CountFavorite struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Count int64 `protobuf:"varint,1,opt,name=Count,proto3" json:"Count,omitempty"`
ObjectId int64 `protobuf:"varint,2,opt,name=ObjectId,proto3" json:"ObjectId,omitempty"`
}
func (x *CountFavorite) Reset() {
*x = CountFavorite{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CountFavorite) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CountFavorite) ProtoMessage() {}
func (x *CountFavorite) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CountFavorite.ProtoReflect.Descriptor instead.
func (*CountFavorite) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{11}
}
func (x *CountFavorite) GetCount() int64 {
if x != nil {
return x.Count
}
return 0
}
func (x *CountFavorite) GetObjectId() int64 {
if x != nil {
return x.ObjectId
}
return 0
}
// 点赞、收藏添加
type CreateFavoriteRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info *FavoriteInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
}
func (x *CreateFavoriteRequest) Reset() {
*x = CreateFavoriteRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateFavoriteRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateFavoriteRequest) ProtoMessage() {}
func (x *CreateFavoriteRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateFavoriteRequest.ProtoReflect.Descriptor instead.
func (*CreateFavoriteRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{12}
}
func (x *CreateFavoriteRequest) GetInfo() *FavoriteInfo {
if x != nil {
return x.Info
}
return nil
}
type CreateFavoriteResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *CreateFavoriteResponse) Reset() {
*x = CreateFavoriteResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateFavoriteResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateFavoriteResponse) ProtoMessage() {}
func (x *CreateFavoriteResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateFavoriteResponse.ProtoReflect.Descriptor instead.
func (*CreateFavoriteResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{13}
}
// 点赞、收藏修改
type UpdateFavoriteRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info *FavoriteInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
}
func (x *UpdateFavoriteRequest) Reset() {
*x = UpdateFavoriteRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UpdateFavoriteRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UpdateFavoriteRequest) ProtoMessage() {}
func (x *UpdateFavoriteRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UpdateFavoriteRequest.ProtoReflect.Descriptor instead.
func (*UpdateFavoriteRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{14}
}
func (x *UpdateFavoriteRequest) GetInfo() *FavoriteInfo {
if x != nil {
return x.Info
}
return nil
}
type UpdateFavoriteResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info *FavoriteInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
}
func (x *UpdateFavoriteResponse) Reset() {
*x = UpdateFavoriteResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UpdateFavoriteResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UpdateFavoriteResponse) ProtoMessage() {}
func (x *UpdateFavoriteResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UpdateFavoriteResponse.ProtoReflect.Descriptor instead.
func (*UpdateFavoriteResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{15}
}
func (x *UpdateFavoriteResponse) GetInfo() *FavoriteInfo {
if x != nil {
return x.Info
}
return nil
}
// 点赞、收藏详情
type FindFavoriteRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
UserId int64 `protobuf:"varint,5,opt,name=UserId,proto3" json:"UserId,omitempty"`
ObjectId int64 `protobuf:"varint,10,opt,name=ObjectId,proto3" json:"ObjectId,omitempty"`
ObjectType int64 `protobuf:"varint,15,opt,name=ObjectType,proto3" json:"ObjectType,omitempty"`
}
func (x *FindFavoriteRequest) Reset() {
*x = FindFavoriteRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FindFavoriteRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FindFavoriteRequest) ProtoMessage() {}
func (x *FindFavoriteRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[16]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FindFavoriteRequest.ProtoReflect.Descriptor instead.
func (*FindFavoriteRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{16}
}
func (x *FindFavoriteRequest) GetUserId() int64 {
if x != nil {
return x.UserId
}
return 0
}
func (x *FindFavoriteRequest) GetObjectId() int64 {
if x != nil {
return x.ObjectId
}
return 0
}
func (x *FindFavoriteRequest) GetObjectType() int64 {
if x != nil {
return x.ObjectType
}
return 0
}
type FindFavoriteResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info *FavoriteInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
}
func (x *FindFavoriteResponse) Reset() {
*x = FindFavoriteResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FindFavoriteResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FindFavoriteResponse) ProtoMessage() {}
func (x *FindFavoriteResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[17]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FindFavoriteResponse.ProtoReflect.Descriptor instead.
func (*FindFavoriteResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{17}
}
func (x *FindFavoriteResponse) GetInfo() *FavoriteInfo {
if x != nil {
return x.Info
}
return nil
}
// 点赞、收藏列表
type FindFavoriteListRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
UserId int64 `protobuf:"varint,5,opt,name=UserId,proto3" json:"UserId,omitempty"`
FavoriteType []int64 `protobuf:"varint,10,rep,packed,name=FavoriteType,proto3" json:"FavoriteType,omitempty"`
}
func (x *FindFavoriteListRequest) Reset() {
*x = FindFavoriteListRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FindFavoriteListRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FindFavoriteListRequest) ProtoMessage() {}
func (x *FindFavoriteListRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[18]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FindFavoriteListRequest.ProtoReflect.Descriptor instead.
func (*FindFavoriteListRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{18}
}
func (x *FindFavoriteListRequest) GetUserId() int64 {
if x != nil {
return x.UserId
}
return 0
}
func (x *FindFavoriteListRequest) GetFavoriteType() []int64 {
if x != nil {
return x.FavoriteType
}
return nil
}
type FindFavoriteListResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info []*FavoriteInfo `protobuf:"bytes,1,rep,name=info,proto3" json:"info,omitempty"`
}
func (x *FindFavoriteListResponse) Reset() {
*x = FindFavoriteListResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[19]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FindFavoriteListResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FindFavoriteListResponse) ProtoMessage() {}
func (x *FindFavoriteListResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[19]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FindFavoriteListResponse.ProtoReflect.Descriptor instead.
func (*FindFavoriteListResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{19}
}
func (x *FindFavoriteListResponse) GetInfo() []*FavoriteInfo {
if x != nil {
return x.Info
}
return nil
}
// 点赞、收藏计数
type CountFavoriteRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ObjectType int64 `protobuf:"varint,5,opt,name=ObjectType,proto3" json:"ObjectType,omitempty"`
FavoriteType []int64 `protobuf:"varint,10,rep,packed,name=FavoriteType,proto3" json:"FavoriteType,omitempty"`
}
func (x *CountFavoriteRequest) Reset() {
*x = CountFavoriteRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[20]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CountFavoriteRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CountFavoriteRequest) ProtoMessage() {}
func (x *CountFavoriteRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[20]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CountFavoriteRequest.ProtoReflect.Descriptor instead.
func (*CountFavoriteRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{20}
}
func (x *CountFavoriteRequest) GetObjectType() int64 {
if x != nil {
return x.ObjectType
}
return 0
}
func (x *CountFavoriteRequest) GetFavoriteType() []int64 {
if x != nil {
return x.FavoriteType
}
return nil
}
type CountFavoriteResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
CountInfo []*CountFavorite `protobuf:"bytes,2,rep,name=CountInfo,proto3" json:"CountInfo,omitempty"`
}
func (x *CountFavoriteResponse) Reset() {
*x = CountFavoriteResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[21]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CountFavoriteResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CountFavoriteResponse) ProtoMessage() {}
func (x *CountFavoriteResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[21]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CountFavoriteResponse.ProtoReflect.Descriptor instead.
func (*CountFavoriteResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{21}
}
func (x *CountFavoriteResponse) GetCountInfo() []*CountFavorite {
if x != nil {
return x.CountInfo
}
return nil
}
// 点赞、收藏删除
type DeleteFavoriteRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ID int64 `protobuf:"varint,5,opt,name=ID,proto3" json:"ID,omitempty"`
}
func (x *DeleteFavoriteRequest) Reset() {
*x = DeleteFavoriteRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[22]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeleteFavoriteRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeleteFavoriteRequest) ProtoMessage() {}
func (x *DeleteFavoriteRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[22]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeleteFavoriteRequest.ProtoReflect.Descriptor instead.
func (*DeleteFavoriteRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{22}
}
func (x *DeleteFavoriteRequest) GetID() int64 {
if x != nil {
return x.ID
}
return 0
}
type DeleteFavoriteResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *DeleteFavoriteResponse) Reset() {
*x = DeleteFavoriteResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[23]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeleteFavoriteResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeleteFavoriteResponse) ProtoMessage() {}
func (x *DeleteFavoriteResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[23]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeleteFavoriteResponse.ProtoReflect.Descriptor instead.
func (*DeleteFavoriteResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{23}
}
type ArticleInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ID int64 `protobuf:"varint,5,opt,name=ID,proto3" json:"ID,omitempty"`
ArticleTitle string `protobuf:"bytes,10,opt,name=ArticleTitle,proto3" json:"ArticleTitle,omitempty"`
TouristVolume int64 `protobuf:"varint,15,opt,name=TouristVolume,proto3" json:"TouristVolume,omitempty"`
ArticleInter string `protobuf:"bytes,20,opt,name=ArticleInter,proto3" json:"ArticleInter,omitempty"`
ArticleContent string `protobuf:"bytes,25,opt,name=ArticleContent,proto3" json:"ArticleContent,omitempty"`
ArticleImg *ArticleImg `protobuf:"bytes,30,opt,name=ArticleImg,proto3" json:"ArticleImg,omitempty"`
}
func (x *ArticleInfo) Reset() {
*x = ArticleInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[24]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ArticleInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ArticleInfo) ProtoMessage() {}
func (x *ArticleInfo) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[24]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ArticleInfo.ProtoReflect.Descriptor instead.
func (*ArticleInfo) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{24}
}
func (x *ArticleInfo) GetID() int64 {
if x != nil {
return x.ID
}
return 0
}
func (x *ArticleInfo) GetArticleTitle() string {
if x != nil {
return x.ArticleTitle
}
return ""
}
func (x *ArticleInfo) GetTouristVolume() int64 {
if x != nil {
return x.TouristVolume
}
return 0
}
func (x *ArticleInfo) GetArticleInter() string {
if x != nil {
return x.ArticleInter
}
return ""
}
func (x *ArticleInfo) GetArticleContent() string {
if x != nil {
return x.ArticleContent
}
return ""
}
func (x *ArticleInfo) GetArticleImg() *ArticleImg {
if x != nil {
return x.ArticleImg
}
return nil
}
type ArticleImg struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ArticleImg []string `protobuf:"bytes,5,rep,name=ArticleImg,proto3" json:"ArticleImg,omitempty"`
}
func (x *ArticleImg) Reset() {
*x = ArticleImg{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[25]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ArticleImg) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ArticleImg) ProtoMessage() {}
func (x *ArticleImg) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[25]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ArticleImg.ProtoReflect.Descriptor instead.
func (*ArticleImg) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{25}
}
func (x *ArticleImg) GetArticleImg() []string {
if x != nil {
return x.ArticleImg
}
return nil
}
// 文章详情
type ArticleInfoRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ID int64 `protobuf:"varint,5,opt,name=ID,proto3" json:"ID,omitempty"`
}
func (x *ArticleInfoRequest) Reset() {
*x = ArticleInfoRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[26]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ArticleInfoRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ArticleInfoRequest) ProtoMessage() {}
func (x *ArticleInfoRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[26]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ArticleInfoRequest.ProtoReflect.Descriptor instead.
func (*ArticleInfoRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{26}
}
func (x *ArticleInfoRequest) GetID() int64 {
if x != nil {
return x.ID
}
return 0
}
type ArticleInfoResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info *ArticleInfo `protobuf:"bytes,5,opt,name=info,proto3" json:"info,omitempty"`
}
func (x *ArticleInfoResponse) Reset() {
*x = ArticleInfoResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[27]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ArticleInfoResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ArticleInfoResponse) ProtoMessage() {}
func (x *ArticleInfoResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[27]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ArticleInfoResponse.ProtoReflect.Descriptor instead.
func (*ArticleInfoResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{27}
}
func (x *ArticleInfoResponse) GetInfo() *ArticleInfo {
if x != nil {
return x.Info
}
return nil
}
// 文章列表
type ArticleListRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *ArticleListRequest) Reset() {
*x = ArticleListRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[28]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ArticleListRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ArticleListRequest) ProtoMessage() {}
func (x *ArticleListRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[28]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ArticleListRequest.ProtoReflect.Descriptor instead.
func (*ArticleListRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{28}
}
type ArticleListResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info []*ArticleInfo `protobuf:"bytes,5,rep,name=info,proto3" json:"info,omitempty"`
}
func (x *ArticleListResponse) Reset() {
*x = ArticleListResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[29]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ArticleListResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ArticleListResponse) ProtoMessage() {}
func (x *ArticleListResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[29]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ArticleListResponse.ProtoReflect.Descriptor instead.
func (*ArticleListResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{29}
}
func (x *ArticleListResponse) GetInfo() []*ArticleInfo {
if x != nil {
return x.Info
}
return nil
}
// 文章游览量修改
type ArticleTouristVolumeUpdateRequest struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ID int64 `protobuf:"varint,5,opt,name=ID,proto3" json:"ID,omitempty"`
TouristVolume int64 `protobuf:"varint,10,opt,name=TouristVolume,proto3" json:"TouristVolume,omitempty"`
}
func (x *ArticleTouristVolumeUpdateRequest) Reset() {
*x = ArticleTouristVolumeUpdateRequest{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[30]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ArticleTouristVolumeUpdateRequest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ArticleTouristVolumeUpdateRequest) ProtoMessage() {}
func (x *ArticleTouristVolumeUpdateRequest) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[30]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ArticleTouristVolumeUpdateRequest.ProtoReflect.Descriptor instead.
func (*ArticleTouristVolumeUpdateRequest) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{30}
}
func (x *ArticleTouristVolumeUpdateRequest) GetID() int64 {
if x != nil {
return x.ID
}
return 0
}
func (x *ArticleTouristVolumeUpdateRequest) GetTouristVolume() int64 {
if x != nil {
return x.TouristVolume
}
return 0
}
type ArticleTouristVolumeUpdateResponse struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *ArticleTouristVolumeUpdateResponse) Reset() {
*x = ArticleTouristVolumeUpdateResponse{}
if protoimpl.UnsafeEnabled {
mi := &file_review_proto_msgTypes[31]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ArticleTouristVolumeUpdateResponse) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ArticleTouristVolumeUpdateResponse) ProtoMessage() {}
func (x *ArticleTouristVolumeUpdateResponse) ProtoReflect() protoreflect.Message {
mi := &file_review_proto_msgTypes[31]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ArticleTouristVolumeUpdateResponse.ProtoReflect.Descriptor instead.
func (*ArticleTouristVolumeUpdateResponse) Descriptor() ([]byte, []int) {
return file_review_proto_rawDescGZIP(), []int{31}
}
var File_review_proto protoreflect.FileDescriptor
var file_review_proto_rawDesc = []byte{
0x0a, 0x0c, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06,
0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x22, 0x27, 0x0a, 0x07, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77,
0x73, 0x12, 0x1c, 0x0a, 0x09, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, 0x67, 0x18, 0x01,
0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, 0x67, 0x22,
0xa9, 0x02, 0x0a, 0x0a, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e,
0x0a, 0x02, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x44, 0x12, 0x16,
0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77,
0x54, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x52, 0x65, 0x76, 0x69,
0x65, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74,
0x49, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74,
0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x74, 0x61, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18,
0x17, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x53, 0x74, 0x61, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c,
0x12, 0x18, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28,
0x09, 0x52, 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x43, 0x72,
0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x43,
0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x4e, 0x69, 0x63, 0x6b,
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x23, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4e, 0x69, 0x63, 0x6b,
0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x28,
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x2d, 0x0a, 0x09,
0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, 0x67, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x0f, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x73,
0x52, 0x09, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, 0x67, 0x22, 0x3d, 0x0a, 0x13, 0x43,
0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x12, 0x26, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x12, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77,
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x16, 0x0a, 0x14, 0x43, 0x72,
0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x73, 0x65, 0x22, 0x4f, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63,
0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63,
0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x54, 0x79, 0x70,
0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x54,
0x79, 0x70, 0x65, 0x22, 0x3c, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76, 0x69, 0x65,
0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x04, 0x69, 0x6e, 0x66,
0x6f, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
0x2e, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66,
0x6f, 0x22, 0x50, 0x0a, 0x12, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x6f, 0x75, 0x6e, 0x74,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63,
0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63,
0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x54, 0x79, 0x70,
0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x54,
0x79, 0x70, 0x65, 0x22, 0x47, 0x0a, 0x13, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x6f, 0x75,
0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x43, 0x6f,
0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x43, 0x6f, 0x75, 0x6e, 0x74,
0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01,
0x28, 0x03, 0x52, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x11,
0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
0x03, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x62, 0x6a,
0x65, 0x63, 0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x4f, 0x62, 0x6a,
0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x54,
0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x52, 0x65, 0x76, 0x69, 0x65,
0x77, 0x54, 0x79, 0x70, 0x65, 0x22, 0x3c, 0x0a, 0x12, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x04, 0x69,
0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x72, 0x65, 0x76, 0x69,
0x65, 0x77, 0x2e, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69,
0x6e, 0x66, 0x6f, 0x22, 0x96, 0x01, 0x0a, 0x0c, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65,
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
0x52, 0x02, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05,
0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x61, 0x76, 0x6f,
0x72, 0x69, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03,
0x52, 0x0a, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x41, 0x0a, 0x0d,
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x14, 0x0a,
0x05, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x43, 0x6f,
0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x18,
0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22,
0x41, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74,
0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e,
0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e,
0x66, 0x6f, 0x22, 0x18, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f,
0x72, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x41, 0x0a, 0x15,
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x46, 0x61, 0x76,
0x6f, 0x72, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22,
0x42, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74,
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x69, 0x6e, 0x66,
0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69,
0x6e, 0x66, 0x6f, 0x22, 0x69, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x46, 0x61, 0x76, 0x6f, 0x72,
0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73,
0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72,
0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x18, 0x0a,
0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1e,
0x0a, 0x0a, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x01,
0x28, 0x03, 0x52, 0x0a, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x40,
0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65,
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x46, 0x61,
0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f,
0x22, 0x55, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65,
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x55,
0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x55, 0x73, 0x65,
0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x54,
0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0c, 0x46, 0x61, 0x76, 0x6f, 0x72,
0x69, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x44, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x46,
0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x14, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x46, 0x61, 0x76, 0x6f, 0x72,
0x69, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x5a, 0x0a,
0x14, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x54,
0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x4f, 0x62, 0x6a, 0x65, 0x63,
0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74,
0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0c, 0x46, 0x61, 0x76,
0x6f, 0x72, 0x69, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x4c, 0x0a, 0x15, 0x43, 0x6f, 0x75,
0x6e, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x73, 0x65, 0x12, 0x33, 0x0a, 0x09, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18,
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x43,
0x6f, 0x75, 0x6e, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, 0x09, 0x43, 0x6f,
0x75, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x27, 0x0a, 0x15, 0x44, 0x65, 0x6c, 0x65, 0x74,
0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x44,
0x22, 0x18, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69,
0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xe7, 0x01, 0x0a, 0x0b, 0x41,
0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44,
0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x41, 0x72,
0x74, 0x69, 0x63, 0x6c, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0c, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x24,
0x0a, 0x0d, 0x54, 0x6f, 0x75, 0x72, 0x69, 0x73, 0x74, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x18,
0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x54, 0x6f, 0x75, 0x72, 0x69, 0x73, 0x74, 0x56, 0x6f,
0x6c, 0x75, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49,
0x6e, 0x74, 0x65, 0x72, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x41, 0x72, 0x74, 0x69,
0x63, 0x6c, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x0e, 0x41, 0x72, 0x74, 0x69,
0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0e, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
0x12, 0x32, 0x0a, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6d, 0x67, 0x18, 0x1e,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x41, 0x72,
0x74, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6d, 0x67, 0x52, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c,
0x65, 0x49, 0x6d, 0x67, 0x22, 0x2c, 0x0a, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49,
0x6d, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6d, 0x67,
0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49,
0x6d, 0x67, 0x22, 0x24, 0x0a, 0x12, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66,
0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x05,
0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x44, 0x22, 0x3e, 0x0a, 0x13, 0x41, 0x72, 0x74, 0x69,
0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
0x27, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e,
0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6e,
0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x14, 0x0a, 0x12, 0x41, 0x72, 0x74, 0x69,
0x63, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x3e,
0x0a, 0x13, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x27, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x05, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x41, 0x72, 0x74,
0x69, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x59,
0x0a, 0x21, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x54, 0x6f, 0x75, 0x72, 0x69, 0x73, 0x74,
0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
0x02, 0x49, 0x44, 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x6f, 0x75, 0x72, 0x69, 0x73, 0x74, 0x56, 0x6f,
0x6c, 0x75, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x54, 0x6f, 0x75, 0x72,
0x69, 0x73, 0x74, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x22, 0x24, 0x0a, 0x22, 0x41, 0x72, 0x74,
0x69, 0x63, 0x6c, 0x65, 0x54, 0x6f, 0x75, 0x72, 0x69, 0x73, 0x74, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32,
0x8d, 0x08, 0x0a, 0x06, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x49, 0x0a, 0x0c, 0x43, 0x72,
0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x1b, 0x2e, 0x72, 0x65, 0x76,
0x69, 0x65, 0x77, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x43, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76,
0x69, 0x65, 0x77, 0x12, 0x19, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x4c, 0x69, 0x73,
0x74, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a,
0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76, 0x69,
0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x43, 0x0a, 0x0a, 0x52, 0x65,
0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x19, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65,
0x77, 0x2e, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x52, 0x65, 0x76,
0x69, 0x65, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
0x46, 0x0a, 0x0b, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a,
0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x6f,
0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x72, 0x65, 0x76,
0x69, 0x65, 0x77, 0x2e, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52,
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74,
0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x1d, 0x2e, 0x72, 0x65, 0x76, 0x69,
0x65, 0x77, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74,
0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65,
0x77, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61,
0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x1d, 0x2e, 0x72, 0x65, 0x76,
0x69, 0x65, 0x77, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69,
0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x72, 0x65, 0x76, 0x69,
0x65, 0x77, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74,
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x49, 0x0a, 0x0c, 0x46, 0x69, 0x6e,
0x64, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x1b, 0x2e, 0x72, 0x65, 0x76, 0x69,
0x65, 0x77, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e,
0x46, 0x69, 0x6e, 0x64, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x46, 0x61, 0x76, 0x6f,
0x72, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1f, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65,
0x77, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x4c, 0x69,
0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x72, 0x65, 0x76, 0x69,
0x65, 0x77, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x4c,
0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4c, 0x0a, 0x0d, 0x43,
0x6f, 0x75, 0x6e, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x1c, 0x2e, 0x72,
0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72,
0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x72, 0x65, 0x76,
0x69, 0x65, 0x77, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74,
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x0e, 0x44, 0x65, 0x6c,
0x65, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69, 0x74, 0x65, 0x12, 0x1d, 0x2e, 0x72, 0x65,
0x76, 0x69, 0x65, 0x77, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72,
0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x72, 0x65, 0x76,
0x69, 0x65, 0x77, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x61, 0x76, 0x6f, 0x72, 0x69,
0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x46, 0x0a, 0x0b, 0x41, 0x72,
0x74, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x2e, 0x72, 0x65, 0x76, 0x69,
0x65, 0x77, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x41,
0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x73, 0x65, 0x12, 0x46, 0x0a, 0x0b, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x4c, 0x69, 0x73,
0x74, 0x12, 0x1a, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x63,
0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e,
0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x4c, 0x69,
0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x73, 0x0a, 0x1a, 0x41, 0x72,
0x74, 0x69, 0x63, 0x6c, 0x65, 0x54, 0x6f, 0x75, 0x72, 0x69, 0x73, 0x74, 0x56, 0x6f, 0x6c, 0x75,
0x6d, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x29, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65,
0x77, 0x2e, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x54, 0x6f, 0x75, 0x72, 0x69, 0x73, 0x74,
0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x41, 0x72, 0x74,
0x69, 0x63, 0x6c, 0x65, 0x54, 0x6f, 0x75, 0x72, 0x69, 0x73, 0x74, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42,
0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
file_review_proto_rawDescOnce sync.Once
file_review_proto_rawDescData = file_review_proto_rawDesc
)
func file_review_proto_rawDescGZIP() []byte {
file_review_proto_rawDescOnce.Do(func() {
file_review_proto_rawDescData = protoimpl.X.CompressGZIP(file_review_proto_rawDescData)
})
return file_review_proto_rawDescData
}
var file_review_proto_msgTypes = make([]protoimpl.MessageInfo, 32)
var file_review_proto_goTypes = []any{
(*Reviews)(nil), // 0: review.Reviews
(*ReviewInfo)(nil), // 1: review.ReviewInfo
(*CreateReviewRequest)(nil), // 2: review.CreateReviewRequest
(*CreateReviewResponse)(nil), // 3: review.CreateReviewResponse
(*ListReviewRequest)(nil), // 4: review.ListReviewRequest
(*ListReviewResponse)(nil), // 5: review.ListReviewResponse
(*ReviewCountRequest)(nil), // 6: review.ReviewCountRequest
(*ReviewCountResponse)(nil), // 7: review.ReviewCountResponse
(*ReviewInfoRequest)(nil), // 8: review.ReviewInfoRequest
(*ReviewInfoResponse)(nil), // 9: review.ReviewInfoResponse
(*FavoriteInfo)(nil), // 10: review.FavoriteInfo
(*CountFavorite)(nil), // 11: review.CountFavorite
(*CreateFavoriteRequest)(nil), // 12: review.CreateFavoriteRequest
(*CreateFavoriteResponse)(nil), // 13: review.CreateFavoriteResponse
(*UpdateFavoriteRequest)(nil), // 14: review.UpdateFavoriteRequest
(*UpdateFavoriteResponse)(nil), // 15: review.UpdateFavoriteResponse
(*FindFavoriteRequest)(nil), // 16: review.FindFavoriteRequest
(*FindFavoriteResponse)(nil), // 17: review.FindFavoriteResponse
(*FindFavoriteListRequest)(nil), // 18: review.FindFavoriteListRequest
(*FindFavoriteListResponse)(nil), // 19: review.FindFavoriteListResponse
(*CountFavoriteRequest)(nil), // 20: review.CountFavoriteRequest
(*CountFavoriteResponse)(nil), // 21: review.CountFavoriteResponse
(*DeleteFavoriteRequest)(nil), // 22: review.DeleteFavoriteRequest
(*DeleteFavoriteResponse)(nil), // 23: review.DeleteFavoriteResponse
(*ArticleInfo)(nil), // 24: review.ArticleInfo
(*ArticleImg)(nil), // 25: review.ArticleImg
(*ArticleInfoRequest)(nil), // 26: review.ArticleInfoRequest
(*ArticleInfoResponse)(nil), // 27: review.ArticleInfoResponse
(*ArticleListRequest)(nil), // 28: review.ArticleListRequest
(*ArticleListResponse)(nil), // 29: review.ArticleListResponse
(*ArticleTouristVolumeUpdateRequest)(nil), // 30: review.ArticleTouristVolumeUpdateRequest
(*ArticleTouristVolumeUpdateResponse)(nil), // 31: review.ArticleTouristVolumeUpdateResponse
}
var file_review_proto_depIdxs = []int32{
0, // 0: review.ReviewInfo.ReviewImg:type_name -> review.Reviews
1, // 1: review.CreateReviewRequest.info:type_name -> review.ReviewInfo
1, // 2: review.ListReviewResponse.info:type_name -> review.ReviewInfo
1, // 3: review.ReviewInfoResponse.info:type_name -> review.ReviewInfo
10, // 4: review.CreateFavoriteRequest.info:type_name -> review.FavoriteInfo
10, // 5: review.UpdateFavoriteRequest.info:type_name -> review.FavoriteInfo
10, // 6: review.UpdateFavoriteResponse.info:type_name -> review.FavoriteInfo
10, // 7: review.FindFavoriteResponse.info:type_name -> review.FavoriteInfo
10, // 8: review.FindFavoriteListResponse.info:type_name -> review.FavoriteInfo
11, // 9: review.CountFavoriteResponse.CountInfo:type_name -> review.CountFavorite
25, // 10: review.ArticleInfo.ArticleImg:type_name -> review.ArticleImg
24, // 11: review.ArticleInfoResponse.info:type_name -> review.ArticleInfo
24, // 12: review.ArticleListResponse.info:type_name -> review.ArticleInfo
2, // 13: review.Review.CreateReview:input_type -> review.CreateReviewRequest
4, // 14: review.Review.ListReview:input_type -> review.ListReviewRequest
8, // 15: review.Review.ReviewInfo:input_type -> review.ReviewInfoRequest
6, // 16: review.Review.ReviewCount:input_type -> review.ReviewCountRequest
12, // 17: review.Review.CreateFavorite:input_type -> review.CreateFavoriteRequest
14, // 18: review.Review.UpdateFavorite:input_type -> review.UpdateFavoriteRequest
16, // 19: review.Review.FindFavorite:input_type -> review.FindFavoriteRequest
18, // 20: review.Review.FindFavoriteList:input_type -> review.FindFavoriteListRequest
20, // 21: review.Review.CountFavorite:input_type -> review.CountFavoriteRequest
22, // 22: review.Review.DeleteFavorite:input_type -> review.DeleteFavoriteRequest
26, // 23: review.Review.ArticleInfo:input_type -> review.ArticleInfoRequest
28, // 24: review.Review.ArticleList:input_type -> review.ArticleListRequest
30, // 25: review.Review.ArticleTouristVolumeUpdate:input_type -> review.ArticleTouristVolumeUpdateRequest
3, // 26: review.Review.CreateReview:output_type -> review.CreateReviewResponse
5, // 27: review.Review.ListReview:output_type -> review.ListReviewResponse
9, // 28: review.Review.ReviewInfo:output_type -> review.ReviewInfoResponse
7, // 29: review.Review.ReviewCount:output_type -> review.ReviewCountResponse
13, // 30: review.Review.CreateFavorite:output_type -> review.CreateFavoriteResponse
15, // 31: review.Review.UpdateFavorite:output_type -> review.UpdateFavoriteResponse
17, // 32: review.Review.FindFavorite:output_type -> review.FindFavoriteResponse
19, // 33: review.Review.FindFavoriteList:output_type -> review.FindFavoriteListResponse
21, // 34: review.Review.CountFavorite:output_type -> review.CountFavoriteResponse
23, // 35: review.Review.DeleteFavorite:output_type -> review.DeleteFavoriteResponse
27, // 36: review.Review.ArticleInfo:output_type -> review.ArticleInfoResponse
29, // 37: review.Review.ArticleList:output_type -> review.ArticleListResponse
31, // 38: review.Review.ArticleTouristVolumeUpdate:output_type -> review.ArticleTouristVolumeUpdateResponse
26, // [26:39] is the sub-list for method output_type
13, // [13:26] is the sub-list for method input_type
13, // [13:13] is the sub-list for extension type_name
13, // [13:13] is the sub-list for extension extendee
0, // [0:13] is the sub-list for field type_name
}
func init() { file_review_proto_init() }
func file_review_proto_init() {
if File_review_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_review_proto_msgTypes[0].Exporter = func(v any, i int) any {
switch v := v.(*Reviews); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[1].Exporter = func(v any, i int) any {
switch v := v.(*ReviewInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[2].Exporter = func(v any, i int) any {
switch v := v.(*CreateReviewRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[3].Exporter = func(v any, i int) any {
switch v := v.(*CreateReviewResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[4].Exporter = func(v any, i int) any {
switch v := v.(*ListReviewRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[5].Exporter = func(v any, i int) any {
switch v := v.(*ListReviewResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[6].Exporter = func(v any, i int) any {
switch v := v.(*ReviewCountRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[7].Exporter = func(v any, i int) any {
switch v := v.(*ReviewCountResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[8].Exporter = func(v any, i int) any {
switch v := v.(*ReviewInfoRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[9].Exporter = func(v any, i int) any {
switch v := v.(*ReviewInfoResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[10].Exporter = func(v any, i int) any {
switch v := v.(*FavoriteInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[11].Exporter = func(v any, i int) any {
switch v := v.(*CountFavorite); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[12].Exporter = func(v any, i int) any {
switch v := v.(*CreateFavoriteRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[13].Exporter = func(v any, i int) any {
switch v := v.(*CreateFavoriteResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[14].Exporter = func(v any, i int) any {
switch v := v.(*UpdateFavoriteRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[15].Exporter = func(v any, i int) any {
switch v := v.(*UpdateFavoriteResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[16].Exporter = func(v any, i int) any {
switch v := v.(*FindFavoriteRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[17].Exporter = func(v any, i int) any {
switch v := v.(*FindFavoriteResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[18].Exporter = func(v any, i int) any {
switch v := v.(*FindFavoriteListRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[19].Exporter = func(v any, i int) any {
switch v := v.(*FindFavoriteListResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[20].Exporter = func(v any, i int) any {
switch v := v.(*CountFavoriteRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[21].Exporter = func(v any, i int) any {
switch v := v.(*CountFavoriteResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[22].Exporter = func(v any, i int) any {
switch v := v.(*DeleteFavoriteRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[23].Exporter = func(v any, i int) any {
switch v := v.(*DeleteFavoriteResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[24].Exporter = func(v any, i int) any {
switch v := v.(*ArticleInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[25].Exporter = func(v any, i int) any {
switch v := v.(*ArticleImg); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[26].Exporter = func(v any, i int) any {
switch v := v.(*ArticleInfoRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[27].Exporter = func(v any, i int) any {
switch v := v.(*ArticleInfoResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[28].Exporter = func(v any, i int) any {
switch v := v.(*ArticleListRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[29].Exporter = func(v any, i int) any {
switch v := v.(*ArticleListResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[30].Exporter = func(v any, i int) any {
switch v := v.(*ArticleTouristVolumeUpdateRequest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_review_proto_msgTypes[31].Exporter = func(v any, i int) any {
switch v := v.(*ArticleTouristVolumeUpdateResponse); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_review_proto_rawDesc,
NumEnums: 0,
NumMessages: 32,
NumExtensions: 0,
NumServices: 1,
},
GoTypes: file_review_proto_goTypes,
DependencyIndexes: file_review_proto_depIdxs,
MessageInfos: file_review_proto_msgTypes,
}.Build()
File_review_proto = out.File
file_review_proto_rawDesc = nil
file_review_proto_goTypes = nil
file_review_proto_depIdxs = nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。