object_micro_app

package
v0.0.0-...-b63aa1a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 18, 2019 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterService

func RegisterService(s giraffe_micro.Server, srv Service)

Types

type AggregateMicroAppRequest

type AggregateMicroAppRequest struct {
	//
	//查询条件
	Query                *AggregateMicroAppRequest_Query `protobuf:"bytes,1,opt,name=query,proto3" json:"query" form:"query"`
	XXX_NoUnkeyedLiteral struct{}                        `json:"-"`
	XXX_unrecognized     []byte                          `json:"-"`
	XXX_sizecache        int32                           `json:"-"`
}

AggregateMicroApp请求

func (*AggregateMicroAppRequest) Descriptor

func (*AggregateMicroAppRequest) Descriptor() ([]byte, []int)

func (*AggregateMicroAppRequest) GetQuery

func (*AggregateMicroAppRequest) ProtoMessage

func (*AggregateMicroAppRequest) ProtoMessage()

func (*AggregateMicroAppRequest) Reset

func (m *AggregateMicroAppRequest) Reset()

func (*AggregateMicroAppRequest) String

func (m *AggregateMicroAppRequest) String() string

func (*AggregateMicroAppRequest) Validate

func (this *AggregateMicroAppRequest) Validate() error

func (*AggregateMicroAppRequest) XXX_DiscardUnknown

func (m *AggregateMicroAppRequest) XXX_DiscardUnknown()

func (*AggregateMicroAppRequest) XXX_Marshal

func (m *AggregateMicroAppRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AggregateMicroAppRequest) XXX_Merge

func (m *AggregateMicroAppRequest) XXX_Merge(src proto.Message)

func (*AggregateMicroAppRequest) XXX_Size

func (m *AggregateMicroAppRequest) XXX_Size() int

func (*AggregateMicroAppRequest) XXX_Unmarshal

func (m *AggregateMicroAppRequest) XXX_Unmarshal(b []byte) error

type AggregateMicroAppRequest_Query

type AggregateMicroAppRequest_Query struct {
	//
	//按objectId列表查询
	ObjectId             []string `protobuf:"bytes,1,rep,name=objectId,proto3" json:"objectId" form:"objectId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AggregateMicroAppRequest_Query) Descriptor

func (*AggregateMicroAppRequest_Query) Descriptor() ([]byte, []int)

func (*AggregateMicroAppRequest_Query) GetObjectId

func (m *AggregateMicroAppRequest_Query) GetObjectId() []string

func (*AggregateMicroAppRequest_Query) ProtoMessage

func (*AggregateMicroAppRequest_Query) ProtoMessage()

func (*AggregateMicroAppRequest_Query) Reset

func (m *AggregateMicroAppRequest_Query) Reset()

func (*AggregateMicroAppRequest_Query) String

func (*AggregateMicroAppRequest_Query) Validate

func (this *AggregateMicroAppRequest_Query) Validate() error

func (*AggregateMicroAppRequest_Query) XXX_DiscardUnknown

func (m *AggregateMicroAppRequest_Query) XXX_DiscardUnknown()

func (*AggregateMicroAppRequest_Query) XXX_Marshal

func (m *AggregateMicroAppRequest_Query) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AggregateMicroAppRequest_Query) XXX_Merge

func (m *AggregateMicroAppRequest_Query) XXX_Merge(src proto.Message)

func (*AggregateMicroAppRequest_Query) XXX_Size

func (m *AggregateMicroAppRequest_Query) XXX_Size() int

func (*AggregateMicroAppRequest_Query) XXX_Unmarshal

func (m *AggregateMicroAppRequest_Query) XXX_Unmarshal(b []byte) error

type AggregateMicroAppResponse

type AggregateMicroAppResponse struct {
	//
	//数据列表
	List                 []*AggregateMicroAppResponse_List `protobuf:"bytes,1,rep,name=list,proto3" json:"list" form:"list"`
	XXX_NoUnkeyedLiteral struct{}                          `json:"-"`
	XXX_unrecognized     []byte                            `json:"-"`
	XXX_sizecache        int32                             `json:"-"`
}

AggregateMicroApp返回

func (*AggregateMicroAppResponse) Descriptor

func (*AggregateMicroAppResponse) Descriptor() ([]byte, []int)

func (*AggregateMicroAppResponse) GetList

func (*AggregateMicroAppResponse) ProtoMessage

func (*AggregateMicroAppResponse) ProtoMessage()

func (*AggregateMicroAppResponse) Reset

func (m *AggregateMicroAppResponse) Reset()

func (*AggregateMicroAppResponse) String

func (m *AggregateMicroAppResponse) String() string

func (*AggregateMicroAppResponse) Validate

func (this *AggregateMicroAppResponse) Validate() error

func (*AggregateMicroAppResponse) XXX_DiscardUnknown

func (m *AggregateMicroAppResponse) XXX_DiscardUnknown()

func (*AggregateMicroAppResponse) XXX_Marshal

func (m *AggregateMicroAppResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AggregateMicroAppResponse) XXX_Merge

func (m *AggregateMicroAppResponse) XXX_Merge(src proto.Message)

func (*AggregateMicroAppResponse) XXX_Size

func (m *AggregateMicroAppResponse) XXX_Size() int

func (*AggregateMicroAppResponse) XXX_Unmarshal

func (m *AggregateMicroAppResponse) XXX_Unmarshal(b []byte) error

type AggregateMicroAppResponseWrapper

type AggregateMicroAppResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *AggregateMicroAppResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

AggregateMicroAppApi返回

func (*AggregateMicroAppResponseWrapper) Descriptor

func (*AggregateMicroAppResponseWrapper) Descriptor() ([]byte, []int)

func (*AggregateMicroAppResponseWrapper) GetCode

func (*AggregateMicroAppResponseWrapper) GetCodeExplain

func (m *AggregateMicroAppResponseWrapper) GetCodeExplain() string

func (*AggregateMicroAppResponseWrapper) GetData

func (*AggregateMicroAppResponseWrapper) GetError

func (*AggregateMicroAppResponseWrapper) ProtoMessage

func (*AggregateMicroAppResponseWrapper) ProtoMessage()

func (*AggregateMicroAppResponseWrapper) Reset

func (*AggregateMicroAppResponseWrapper) String

func (*AggregateMicroAppResponseWrapper) Validate

func (this *AggregateMicroAppResponseWrapper) Validate() error

func (*AggregateMicroAppResponseWrapper) XXX_DiscardUnknown

func (m *AggregateMicroAppResponseWrapper) XXX_DiscardUnknown()

func (*AggregateMicroAppResponseWrapper) XXX_Marshal

func (m *AggregateMicroAppResponseWrapper) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AggregateMicroAppResponseWrapper) XXX_Merge

func (*AggregateMicroAppResponseWrapper) XXX_Size

func (m *AggregateMicroAppResponseWrapper) XXX_Size() int

func (*AggregateMicroAppResponseWrapper) XXX_Unmarshal

func (m *AggregateMicroAppResponseWrapper) XXX_Unmarshal(b []byte) error

type AggregateMicroAppResponse_List

type AggregateMicroAppResponse_List struct {
	//
	//模型ID
	ObjectId string `protobuf:"bytes,1,opt,name=objectId,proto3" json:"objectId" form:"objectId"`
	//
	//关联小产品列表
	MicroAppList         []*micro_app.ObjectMicroApp `protobuf:"bytes,2,rep,name=microAppList,proto3" json:"microAppList" form:"microAppList"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*AggregateMicroAppResponse_List) Descriptor

func (*AggregateMicroAppResponse_List) Descriptor() ([]byte, []int)

func (*AggregateMicroAppResponse_List) GetMicroAppList

func (*AggregateMicroAppResponse_List) GetObjectId

func (m *AggregateMicroAppResponse_List) GetObjectId() string

func (*AggregateMicroAppResponse_List) ProtoMessage

func (*AggregateMicroAppResponse_List) ProtoMessage()

func (*AggregateMicroAppResponse_List) Reset

func (m *AggregateMicroAppResponse_List) Reset()

func (*AggregateMicroAppResponse_List) String

func (*AggregateMicroAppResponse_List) Validate

func (this *AggregateMicroAppResponse_List) Validate() error

func (*AggregateMicroAppResponse_List) XXX_DiscardUnknown

func (m *AggregateMicroAppResponse_List) XXX_DiscardUnknown()

func (*AggregateMicroAppResponse_List) XXX_Marshal

func (m *AggregateMicroAppResponse_List) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AggregateMicroAppResponse_List) XXX_Merge

func (m *AggregateMicroAppResponse_List) XXX_Merge(src proto.Message)

func (*AggregateMicroAppResponse_List) XXX_Size

func (m *AggregateMicroAppResponse_List) XXX_Size() int

func (*AggregateMicroAppResponse_List) XXX_Unmarshal

func (m *AggregateMicroAppResponse_List) XXX_Unmarshal(b []byte) error

type BindObjectMicroAppRequest

type BindObjectMicroAppRequest struct {
	//
	//小产品id
	AppId                string   `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId" form:"appId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

BindObjectMicroApp请求

func (*BindObjectMicroAppRequest) Descriptor

func (*BindObjectMicroAppRequest) Descriptor() ([]byte, []int)

func (*BindObjectMicroAppRequest) GetAppId

func (m *BindObjectMicroAppRequest) GetAppId() string

func (*BindObjectMicroAppRequest) ProtoMessage

func (*BindObjectMicroAppRequest) ProtoMessage()

func (*BindObjectMicroAppRequest) Reset

func (m *BindObjectMicroAppRequest) Reset()

func (*BindObjectMicroAppRequest) String

func (m *BindObjectMicroAppRequest) String() string

func (*BindObjectMicroAppRequest) Validate

func (this *BindObjectMicroAppRequest) Validate() error

func (*BindObjectMicroAppRequest) XXX_DiscardUnknown

func (m *BindObjectMicroAppRequest) XXX_DiscardUnknown()

func (*BindObjectMicroAppRequest) XXX_Marshal

func (m *BindObjectMicroAppRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BindObjectMicroAppRequest) XXX_Merge

func (m *BindObjectMicroAppRequest) XXX_Merge(src proto.Message)

func (*BindObjectMicroAppRequest) XXX_Size

func (m *BindObjectMicroAppRequest) XXX_Size() int

func (*BindObjectMicroAppRequest) XXX_Unmarshal

func (m *BindObjectMicroAppRequest) XXX_Unmarshal(b []byte) error

type BindObjectMicroAppResponseWrapper

type BindObjectMicroAppResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *types.Empty `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

BindObjectMicroAppApi返回

func (*BindObjectMicroAppResponseWrapper) Descriptor

func (*BindObjectMicroAppResponseWrapper) Descriptor() ([]byte, []int)

func (*BindObjectMicroAppResponseWrapper) GetCode

func (*BindObjectMicroAppResponseWrapper) GetCodeExplain

func (m *BindObjectMicroAppResponseWrapper) GetCodeExplain() string

func (*BindObjectMicroAppResponseWrapper) GetData

func (*BindObjectMicroAppResponseWrapper) GetError

func (*BindObjectMicroAppResponseWrapper) ProtoMessage

func (*BindObjectMicroAppResponseWrapper) ProtoMessage()

func (*BindObjectMicroAppResponseWrapper) Reset

func (*BindObjectMicroAppResponseWrapper) String

func (*BindObjectMicroAppResponseWrapper) Validate

func (this *BindObjectMicroAppResponseWrapper) Validate() error

func (*BindObjectMicroAppResponseWrapper) XXX_DiscardUnknown

func (m *BindObjectMicroAppResponseWrapper) XXX_DiscardUnknown()

func (*BindObjectMicroAppResponseWrapper) XXX_Marshal

func (m *BindObjectMicroAppResponseWrapper) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BindObjectMicroAppResponseWrapper) XXX_Merge

func (*BindObjectMicroAppResponseWrapper) XXX_Size

func (m *BindObjectMicroAppResponseWrapper) XXX_Size() int

func (*BindObjectMicroAppResponseWrapper) XXX_Unmarshal

func (m *BindObjectMicroAppResponseWrapper) XXX_Unmarshal(b []byte) error

type Client

type Client interface {
	AggregateMicroApp(ctx context.Context, in *AggregateMicroAppRequest) (*AggregateMicroAppResponse, error)
	BindObjectMicroApp(ctx context.Context, in *BindObjectMicroAppRequest) (*types.Empty, error)
	GetObjectMicroAppList(ctx context.Context, in *types.Empty) (*GetObjectMicroAppListResponse, error)
	GetMicroAppList(ctx context.Context, in *GetMicroAppListRequest) (*GetMicroAppListResponse, error)
	GetObjectByMicroApp(ctx context.Context, in *GetObjectByMicroAppRequest) (*micro_app.ObjectMicroApp, error)
	SearchMicroAppList(ctx context.Context, in *SearchMicroAppListRequest) (*SearchMicroAppListResponse, error)
}

Client is the client API for object_micro_app service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewClient

func NewClient(c giraffe_micro.Client) Client

type GetMicroAppListRequest

type GetMicroAppListRequest struct {
	//
	//模型id
	ObjectId             string   `protobuf:"bytes,1,opt,name=object_id,json=objectId,proto3" json:"object_id" form:"object_id"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

GetMicroAppList请求

func (*GetMicroAppListRequest) Descriptor

func (*GetMicroAppListRequest) Descriptor() ([]byte, []int)

func (*GetMicroAppListRequest) GetObjectId

func (m *GetMicroAppListRequest) GetObjectId() string

func (*GetMicroAppListRequest) ProtoMessage

func (*GetMicroAppListRequest) ProtoMessage()

func (*GetMicroAppListRequest) Reset

func (m *GetMicroAppListRequest) Reset()

func (*GetMicroAppListRequest) String

func (m *GetMicroAppListRequest) String() string

func (*GetMicroAppListRequest) Validate

func (this *GetMicroAppListRequest) Validate() error

func (*GetMicroAppListRequest) XXX_DiscardUnknown

func (m *GetMicroAppListRequest) XXX_DiscardUnknown()

func (*GetMicroAppListRequest) XXX_Marshal

func (m *GetMicroAppListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetMicroAppListRequest) XXX_Merge

func (m *GetMicroAppListRequest) XXX_Merge(src proto.Message)

func (*GetMicroAppListRequest) XXX_Size

func (m *GetMicroAppListRequest) XXX_Size() int

func (*GetMicroAppListRequest) XXX_Unmarshal

func (m *GetMicroAppListRequest) XXX_Unmarshal(b []byte) error

type GetMicroAppListResponse

type GetMicroAppListResponse struct {
	//
	//页数
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//页大小
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size" form:"page_size"`
	//
	//总数
	Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total" form:"total"`
	//
	//数据列表
	List                 []*micro_app.ObjectMicroApp `protobuf:"bytes,4,rep,name=list,proto3" json:"list" form:"list"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

GetMicroAppList返回

func (*GetMicroAppListResponse) Descriptor

func (*GetMicroAppListResponse) Descriptor() ([]byte, []int)

func (*GetMicroAppListResponse) GetList

func (*GetMicroAppListResponse) GetPage

func (m *GetMicroAppListResponse) GetPage() int32

func (*GetMicroAppListResponse) GetPageSize

func (m *GetMicroAppListResponse) GetPageSize() int32

func (*GetMicroAppListResponse) GetTotal

func (m *GetMicroAppListResponse) GetTotal() int32

func (*GetMicroAppListResponse) ProtoMessage

func (*GetMicroAppListResponse) ProtoMessage()

func (*GetMicroAppListResponse) Reset

func (m *GetMicroAppListResponse) Reset()

func (*GetMicroAppListResponse) String

func (m *GetMicroAppListResponse) String() string

func (*GetMicroAppListResponse) Validate

func (this *GetMicroAppListResponse) Validate() error

func (*GetMicroAppListResponse) XXX_DiscardUnknown

func (m *GetMicroAppListResponse) XXX_DiscardUnknown()

func (*GetMicroAppListResponse) XXX_Marshal

func (m *GetMicroAppListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetMicroAppListResponse) XXX_Merge

func (m *GetMicroAppListResponse) XXX_Merge(src proto.Message)

func (*GetMicroAppListResponse) XXX_Size

func (m *GetMicroAppListResponse) XXX_Size() int

func (*GetMicroAppListResponse) XXX_Unmarshal

func (m *GetMicroAppListResponse) XXX_Unmarshal(b []byte) error

type GetMicroAppListResponseWrapper

type GetMicroAppListResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *GetMicroAppListResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

GetMicroAppListApi返回

func (*GetMicroAppListResponseWrapper) Descriptor

func (*GetMicroAppListResponseWrapper) Descriptor() ([]byte, []int)

func (*GetMicroAppListResponseWrapper) GetCode

func (*GetMicroAppListResponseWrapper) GetCodeExplain

func (m *GetMicroAppListResponseWrapper) GetCodeExplain() string

func (*GetMicroAppListResponseWrapper) GetData

func (*GetMicroAppListResponseWrapper) GetError

func (m *GetMicroAppListResponseWrapper) GetError() string

func (*GetMicroAppListResponseWrapper) ProtoMessage

func (*GetMicroAppListResponseWrapper) ProtoMessage()

func (*GetMicroAppListResponseWrapper) Reset

func (m *GetMicroAppListResponseWrapper) Reset()

func (*GetMicroAppListResponseWrapper) String

func (*GetMicroAppListResponseWrapper) Validate

func (this *GetMicroAppListResponseWrapper) Validate() error

func (*GetMicroAppListResponseWrapper) XXX_DiscardUnknown

func (m *GetMicroAppListResponseWrapper) XXX_DiscardUnknown()

func (*GetMicroAppListResponseWrapper) XXX_Marshal

func (m *GetMicroAppListResponseWrapper) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetMicroAppListResponseWrapper) XXX_Merge

func (m *GetMicroAppListResponseWrapper) XXX_Merge(src proto.Message)

func (*GetMicroAppListResponseWrapper) XXX_Size

func (m *GetMicroAppListResponseWrapper) XXX_Size() int

func (*GetMicroAppListResponseWrapper) XXX_Unmarshal

func (m *GetMicroAppListResponseWrapper) XXX_Unmarshal(b []byte) error

type GetObjectByMicroAppRequest

type GetObjectByMicroAppRequest struct {
	//
	//小产品id
	AppId                string   `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId" form:"appId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

GetObjectByMicroApp请求

func (*GetObjectByMicroAppRequest) Descriptor

func (*GetObjectByMicroAppRequest) Descriptor() ([]byte, []int)

func (*GetObjectByMicroAppRequest) GetAppId

func (m *GetObjectByMicroAppRequest) GetAppId() string

func (*GetObjectByMicroAppRequest) ProtoMessage

func (*GetObjectByMicroAppRequest) ProtoMessage()

func (*GetObjectByMicroAppRequest) Reset

func (m *GetObjectByMicroAppRequest) Reset()

func (*GetObjectByMicroAppRequest) String

func (m *GetObjectByMicroAppRequest) String() string

func (*GetObjectByMicroAppRequest) Validate

func (this *GetObjectByMicroAppRequest) Validate() error

func (*GetObjectByMicroAppRequest) XXX_DiscardUnknown

func (m *GetObjectByMicroAppRequest) XXX_DiscardUnknown()

func (*GetObjectByMicroAppRequest) XXX_Marshal

func (m *GetObjectByMicroAppRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetObjectByMicroAppRequest) XXX_Merge

func (m *GetObjectByMicroAppRequest) XXX_Merge(src proto.Message)

func (*GetObjectByMicroAppRequest) XXX_Size

func (m *GetObjectByMicroAppRequest) XXX_Size() int

func (*GetObjectByMicroAppRequest) XXX_Unmarshal

func (m *GetObjectByMicroAppRequest) XXX_Unmarshal(b []byte) error

type GetObjectByMicroAppResponseWrapper

type GetObjectByMicroAppResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *micro_app.ObjectMicroApp `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

GetObjectByMicroAppApi返回

func (*GetObjectByMicroAppResponseWrapper) Descriptor

func (*GetObjectByMicroAppResponseWrapper) Descriptor() ([]byte, []int)

func (*GetObjectByMicroAppResponseWrapper) GetCode

func (*GetObjectByMicroAppResponseWrapper) GetCodeExplain

func (m *GetObjectByMicroAppResponseWrapper) GetCodeExplain() string

func (*GetObjectByMicroAppResponseWrapper) GetData

func (*GetObjectByMicroAppResponseWrapper) GetError

func (*GetObjectByMicroAppResponseWrapper) ProtoMessage

func (*GetObjectByMicroAppResponseWrapper) ProtoMessage()

func (*GetObjectByMicroAppResponseWrapper) Reset

func (*GetObjectByMicroAppResponseWrapper) String

func (*GetObjectByMicroAppResponseWrapper) Validate

func (this *GetObjectByMicroAppResponseWrapper) Validate() error

func (*GetObjectByMicroAppResponseWrapper) XXX_DiscardUnknown

func (m *GetObjectByMicroAppResponseWrapper) XXX_DiscardUnknown()

func (*GetObjectByMicroAppResponseWrapper) XXX_Marshal

func (m *GetObjectByMicroAppResponseWrapper) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetObjectByMicroAppResponseWrapper) XXX_Merge

func (*GetObjectByMicroAppResponseWrapper) XXX_Size

func (*GetObjectByMicroAppResponseWrapper) XXX_Unmarshal

func (m *GetObjectByMicroAppResponseWrapper) XXX_Unmarshal(b []byte) error

type GetObjectMicroAppListResponse

type GetObjectMicroAppListResponse struct {
	//
	//页数
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//页大小
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size" form:"page_size"`
	//
	//总数
	Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total" form:"total"`
	//
	//数据列表
	List                 []*micro_app.ObjectMicroApp `protobuf:"bytes,4,rep,name=list,proto3" json:"list" form:"list"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

GetObjectMicroAppList返回

func (*GetObjectMicroAppListResponse) Descriptor

func (*GetObjectMicroAppListResponse) Descriptor() ([]byte, []int)

func (*GetObjectMicroAppListResponse) GetList

func (*GetObjectMicroAppListResponse) GetPage

func (m *GetObjectMicroAppListResponse) GetPage() int32

func (*GetObjectMicroAppListResponse) GetPageSize

func (m *GetObjectMicroAppListResponse) GetPageSize() int32

func (*GetObjectMicroAppListResponse) GetTotal

func (m *GetObjectMicroAppListResponse) GetTotal() int32

func (*GetObjectMicroAppListResponse) ProtoMessage

func (*GetObjectMicroAppListResponse) ProtoMessage()

func (*GetObjectMicroAppListResponse) Reset

func (m *GetObjectMicroAppListResponse) Reset()

func (*GetObjectMicroAppListResponse) String

func (*GetObjectMicroAppListResponse) Validate

func (this *GetObjectMicroAppListResponse) Validate() error

func (*GetObjectMicroAppListResponse) XXX_DiscardUnknown

func (m *GetObjectMicroAppListResponse) XXX_DiscardUnknown()

func (*GetObjectMicroAppListResponse) XXX_Marshal

func (m *GetObjectMicroAppListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetObjectMicroAppListResponse) XXX_Merge

func (m *GetObjectMicroAppListResponse) XXX_Merge(src proto.Message)

func (*GetObjectMicroAppListResponse) XXX_Size

func (m *GetObjectMicroAppListResponse) XXX_Size() int

func (*GetObjectMicroAppListResponse) XXX_Unmarshal

func (m *GetObjectMicroAppListResponse) XXX_Unmarshal(b []byte) error

type GetObjectMicroAppListResponseWrapper

type GetObjectMicroAppListResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *GetObjectMicroAppListResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_unrecognized     []byte                         `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

GetObjectMicroAppListApi返回

func (*GetObjectMicroAppListResponseWrapper) Descriptor

func (*GetObjectMicroAppListResponseWrapper) Descriptor() ([]byte, []int)

func (*GetObjectMicroAppListResponseWrapper) GetCode

func (*GetObjectMicroAppListResponseWrapper) GetCodeExplain

func (m *GetObjectMicroAppListResponseWrapper) GetCodeExplain() string

func (*GetObjectMicroAppListResponseWrapper) GetData

func (*GetObjectMicroAppListResponseWrapper) GetError

func (*GetObjectMicroAppListResponseWrapper) ProtoMessage

func (*GetObjectMicroAppListResponseWrapper) ProtoMessage()

func (*GetObjectMicroAppListResponseWrapper) Reset

func (*GetObjectMicroAppListResponseWrapper) String

func (*GetObjectMicroAppListResponseWrapper) Validate

func (*GetObjectMicroAppListResponseWrapper) XXX_DiscardUnknown

func (m *GetObjectMicroAppListResponseWrapper) XXX_DiscardUnknown()

func (*GetObjectMicroAppListResponseWrapper) XXX_Marshal

func (m *GetObjectMicroAppListResponseWrapper) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetObjectMicroAppListResponseWrapper) XXX_Merge

func (*GetObjectMicroAppListResponseWrapper) XXX_Size

func (*GetObjectMicroAppListResponseWrapper) XXX_Unmarshal

func (m *GetObjectMicroAppListResponseWrapper) XXX_Unmarshal(b []byte) error

type SearchMicroAppListRequest

type SearchMicroAppListRequest struct {
	//
	//页码
	Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page" form:"page"`
	//
	//每页大小
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size" form:"page_size"`
	//
	//查询条件
	Query                *SearchMicroAppListRequest_Query `protobuf:"bytes,3,opt,name=query,proto3" json:"query" form:"query"`
	XXX_NoUnkeyedLiteral struct{}                         `json:"-"`
	XXX_unrecognized     []byte                           `json:"-"`
	XXX_sizecache        int32                            `json:"-"`
}

SearchMicroAppList请求

func (*SearchMicroAppListRequest) Descriptor

func (*SearchMicroAppListRequest) Descriptor() ([]byte, []int)

func (*SearchMicroAppListRequest) GetPage

func (m *SearchMicroAppListRequest) GetPage() int32

func (*SearchMicroAppListRequest) GetPageSize

func (m *SearchMicroAppListRequest) GetPageSize() int32

func (*SearchMicroAppListRequest) GetQuery

func (*SearchMicroAppListRequest) ProtoMessage

func (*SearchMicroAppListRequest) ProtoMessage()

func (*SearchMicroAppListRequest) Reset

func (m *SearchMicroAppListRequest) Reset()

func (*SearchMicroAppListRequest) String

func (m *SearchMicroAppListRequest) String() string

func (*SearchMicroAppListRequest) Validate

func (this *SearchMicroAppListRequest) Validate() error

func (*SearchMicroAppListRequest) XXX_DiscardUnknown

func (m *SearchMicroAppListRequest) XXX_DiscardUnknown()

func (*SearchMicroAppListRequest) XXX_Marshal

func (m *SearchMicroAppListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SearchMicroAppListRequest) XXX_Merge

func (m *SearchMicroAppListRequest) XXX_Merge(src proto.Message)

func (*SearchMicroAppListRequest) XXX_Size

func (m *SearchMicroAppListRequest) XXX_Size() int

func (*SearchMicroAppListRequest) XXX_Unmarshal

func (m *SearchMicroAppListRequest) XXX_Unmarshal(b []byte) error

type SearchMicroAppListRequest_Query

type SearchMicroAppListRequest_Query struct {
	//
	//按objectId列表查询
	ObjectId             []string `protobuf:"bytes,1,rep,name=objectId,proto3" json:"objectId" form:"objectId"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SearchMicroAppListRequest_Query) Descriptor

func (*SearchMicroAppListRequest_Query) Descriptor() ([]byte, []int)

func (*SearchMicroAppListRequest_Query) GetObjectId

func (m *SearchMicroAppListRequest_Query) GetObjectId() []string

func (*SearchMicroAppListRequest_Query) ProtoMessage

func (*SearchMicroAppListRequest_Query) ProtoMessage()

func (*SearchMicroAppListRequest_Query) Reset

func (*SearchMicroAppListRequest_Query) String

func (*SearchMicroAppListRequest_Query) Validate

func (this *SearchMicroAppListRequest_Query) Validate() error

func (*SearchMicroAppListRequest_Query) XXX_DiscardUnknown

func (m *SearchMicroAppListRequest_Query) XXX_DiscardUnknown()

func (*SearchMicroAppListRequest_Query) XXX_Marshal

func (m *SearchMicroAppListRequest_Query) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SearchMicroAppListRequest_Query) XXX_Merge

func (m *SearchMicroAppListRequest_Query) XXX_Merge(src proto.Message)

func (*SearchMicroAppListRequest_Query) XXX_Size

func (m *SearchMicroAppListRequest_Query) XXX_Size() int

func (*SearchMicroAppListRequest_Query) XXX_Unmarshal

func (m *SearchMicroAppListRequest_Query) XXX_Unmarshal(b []byte) error

type SearchMicroAppListResponse

type SearchMicroAppListResponse struct {
	//
	//返回总数
	Total int32 `protobuf:"varint,1,opt,name=total,proto3" json:"total" form:"total"`
	//
	//页数
	Page int32 `protobuf:"varint,2,opt,name=page,proto3" json:"page" form:"page"`
	//
	//该页大小
	PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size" form:"page_size"`
	//
	//数据列表
	List                 []*SearchMicroAppListResponse_List `protobuf:"bytes,4,rep,name=list,proto3" json:"list" form:"list"`
	XXX_NoUnkeyedLiteral struct{}                           `json:"-"`
	XXX_unrecognized     []byte                             `json:"-"`
	XXX_sizecache        int32                              `json:"-"`
}

SearchMicroAppList返回

func (*SearchMicroAppListResponse) Descriptor

func (*SearchMicroAppListResponse) Descriptor() ([]byte, []int)

func (*SearchMicroAppListResponse) GetList

func (*SearchMicroAppListResponse) GetPage

func (m *SearchMicroAppListResponse) GetPage() int32

func (*SearchMicroAppListResponse) GetPageSize

func (m *SearchMicroAppListResponse) GetPageSize() int32

func (*SearchMicroAppListResponse) GetTotal

func (m *SearchMicroAppListResponse) GetTotal() int32

func (*SearchMicroAppListResponse) ProtoMessage

func (*SearchMicroAppListResponse) ProtoMessage()

func (*SearchMicroAppListResponse) Reset

func (m *SearchMicroAppListResponse) Reset()

func (*SearchMicroAppListResponse) String

func (m *SearchMicroAppListResponse) String() string

func (*SearchMicroAppListResponse) Validate

func (this *SearchMicroAppListResponse) Validate() error

func (*SearchMicroAppListResponse) XXX_DiscardUnknown

func (m *SearchMicroAppListResponse) XXX_DiscardUnknown()

func (*SearchMicroAppListResponse) XXX_Marshal

func (m *SearchMicroAppListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SearchMicroAppListResponse) XXX_Merge

func (m *SearchMicroAppListResponse) XXX_Merge(src proto.Message)

func (*SearchMicroAppListResponse) XXX_Size

func (m *SearchMicroAppListResponse) XXX_Size() int

func (*SearchMicroAppListResponse) XXX_Unmarshal

func (m *SearchMicroAppListResponse) XXX_Unmarshal(b []byte) error

type SearchMicroAppListResponseWrapper

type SearchMicroAppListResponseWrapper struct {
	//
	//返回码
	Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code" form:"code"`
	//
	//返回码解释
	CodeExplain string `protobuf:"bytes,2,opt,name=codeExplain,proto3" json:"codeExplain" form:"codeExplain"`
	//
	//错误详情
	Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error" form:"error"`
	//
	//返回数据
	Data                 *SearchMicroAppListResponse `protobuf:"bytes,4,opt,name=data,proto3" json:"data" form:"data"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

SearchMicroAppListApi返回

func (*SearchMicroAppListResponseWrapper) Descriptor

func (*SearchMicroAppListResponseWrapper) Descriptor() ([]byte, []int)

func (*SearchMicroAppListResponseWrapper) GetCode

func (*SearchMicroAppListResponseWrapper) GetCodeExplain

func (m *SearchMicroAppListResponseWrapper) GetCodeExplain() string

func (*SearchMicroAppListResponseWrapper) GetData

func (*SearchMicroAppListResponseWrapper) GetError

func (*SearchMicroAppListResponseWrapper) ProtoMessage

func (*SearchMicroAppListResponseWrapper) ProtoMessage()

func (*SearchMicroAppListResponseWrapper) Reset

func (*SearchMicroAppListResponseWrapper) String

func (*SearchMicroAppListResponseWrapper) Validate

func (this *SearchMicroAppListResponseWrapper) Validate() error

func (*SearchMicroAppListResponseWrapper) XXX_DiscardUnknown

func (m *SearchMicroAppListResponseWrapper) XXX_DiscardUnknown()

func (*SearchMicroAppListResponseWrapper) XXX_Marshal

func (m *SearchMicroAppListResponseWrapper) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SearchMicroAppListResponseWrapper) XXX_Merge

func (*SearchMicroAppListResponseWrapper) XXX_Size

func (m *SearchMicroAppListResponseWrapper) XXX_Size() int

func (*SearchMicroAppListResponseWrapper) XXX_Unmarshal

func (m *SearchMicroAppListResponseWrapper) XXX_Unmarshal(b []byte) error

type SearchMicroAppListResponse_List

type SearchMicroAppListResponse_List struct {
	//
	//关联关系唯一名称
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name" form:"name"`
	//
	//模型id
	ObjectId string `protobuf:"bytes,2,opt,name=objectId,proto3" json:"objectId" form:"objectId"`
	//
	//小产品Id
	MicroAppId string `protobuf:"bytes,3,opt,name=microAppId,proto3" json:"microAppId" form:"microAppId"`
	//
	//小产品名称
	MicroAppName string `protobuf:"bytes,4,opt,name=microAppName,proto3" json:"microAppName" form:"microAppName"`
	//
	//小产品首页
	Homepage string `protobuf:"bytes,5,opt,name=homepage,proto3" json:"homepage" form:"homepage"`
	//
	//子页面相对路径
	SubPath string `protobuf:"bytes,6,opt,name=subPath,proto3" json:"subPath" form:"subPath"`
	//
	//排序序号
	Order int32 `protobuf:"varint,7,opt,name=order,proto3" json:"order" form:"order"`
	//
	//状态
	Status string `protobuf:"bytes,8,opt,name=status,proto3" json:"status" form:"status"`
	//
	//是否是默认小产品
	Default string `protobuf:"bytes,9,opt,name=default,proto3" json:"default" form:"default"`
	//
	//标签
	Tags                 []string `protobuf:"bytes,10,rep,name=tags,proto3" json:"tags" form:"tags"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SearchMicroAppListResponse_List) Descriptor

func (*SearchMicroAppListResponse_List) Descriptor() ([]byte, []int)

func (*SearchMicroAppListResponse_List) GetDefault

func (m *SearchMicroAppListResponse_List) GetDefault() string

func (*SearchMicroAppListResponse_List) GetHomepage

func (m *SearchMicroAppListResponse_List) GetHomepage() string

func (*SearchMicroAppListResponse_List) GetMicroAppId

func (m *SearchMicroAppListResponse_List) GetMicroAppId() string

func (*SearchMicroAppListResponse_List) GetMicroAppName

func (m *SearchMicroAppListResponse_List) GetMicroAppName() string

func (*SearchMicroAppListResponse_List) GetName

func (*SearchMicroAppListResponse_List) GetObjectId

func (m *SearchMicroAppListResponse_List) GetObjectId() string

func (*SearchMicroAppListResponse_List) GetOrder

func (m *SearchMicroAppListResponse_List) GetOrder() int32

func (*SearchMicroAppListResponse_List) GetStatus

func (m *SearchMicroAppListResponse_List) GetStatus() string

func (*SearchMicroAppListResponse_List) GetSubPath

func (m *SearchMicroAppListResponse_List) GetSubPath() string

func (*SearchMicroAppListResponse_List) GetTags

func (m *SearchMicroAppListResponse_List) GetTags() []string

func (*SearchMicroAppListResponse_List) ProtoMessage

func (*SearchMicroAppListResponse_List) ProtoMessage()

func (*SearchMicroAppListResponse_List) Reset

func (*SearchMicroAppListResponse_List) String

func (*SearchMicroAppListResponse_List) Validate

func (this *SearchMicroAppListResponse_List) Validate() error

func (*SearchMicroAppListResponse_List) XXX_DiscardUnknown

func (m *SearchMicroAppListResponse_List) XXX_DiscardUnknown()

func (*SearchMicroAppListResponse_List) XXX_Marshal

func (m *SearchMicroAppListResponse_List) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SearchMicroAppListResponse_List) XXX_Merge

func (m *SearchMicroAppListResponse_List) XXX_Merge(src proto.Message)

func (*SearchMicroAppListResponse_List) XXX_Size

func (m *SearchMicroAppListResponse_List) XXX_Size() int

func (*SearchMicroAppListResponse_List) XXX_Unmarshal

func (m *SearchMicroAppListResponse_List) XXX_Unmarshal(b []byte) error

type Service

Service is the server API for object_micro_app service.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL