pb

package
v0.6.8 Latest Latest
Warning

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

Go to latest
Published: Jun 3, 2020 License: Apache-2.0 Imports: 16 Imported by: 6

Documentation

Overview

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package pb is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	ResponseStatusCode_name = map[int32]string{
		0: "ServerError",
		1: "Suc",
		2: "NotAuth",
		3: "FieldTypeError",
		4: "OtherError",
	}
	ResponseStatusCode_value = map[string]int32{
		"ServerError":    0,
		"Suc":            1,
		"NotAuth":        2,
		"FieldTypeError": 3,
		"OtherError":     4,
	}
)

Enum value maps for ResponseStatusCode.

View Source
var (
	UserRoleTypeCode_name = map[int32]string{
		0: "Undefine",
		1: "Root",
		2: "Maintainer",
		3: "Manager",
		4: "Leader",
		5: "Teacher",
		6: "Undergraduate",
		7: "GraduateStudent",
		8: "DoctoralStudent",
	}
	UserRoleTypeCode_value = map[string]int32{
		"Undefine":        0,
		"Root":            1,
		"Maintainer":      2,
		"Manager":         3,
		"Leader":          4,
		"Teacher":         5,
		"Undergraduate":   6,
		"GraduateStudent": 7,
		"DoctoralStudent": 8,
	}
)

Enum value maps for UserRoleTypeCode.

View Source
var (
	QuestionLevelCode_name = map[int32]string{
		0: "Basic",
		1: "Normal",
		2: "Difficult",
		3: "Challenging",
	}
	QuestionLevelCode_value = map[string]int32{
		"Basic":       0,
		"Normal":      1,
		"Difficult":   2,
		"Challenging": 3,
	}
)

Enum value maps for QuestionLevelCode.

View Source
var (
	UserGenderTypeCode_name = map[int32]string{
		0: "Other",
		1: "Man",
		2: "WoMan",
	}
	UserGenderTypeCode_value = map[string]int32{
		"Other": 0,
		"Man":   1,
		"WoMan": 2,
	}
)

Enum value maps for UserGenderTypeCode.

View Source
var (
	QuestionTypeCode_name = map[int32]string{
		0: "Single",
		1: "Multiple",
		2: "Judge",
	}
	QuestionTypeCode_value = map[string]int32{
		"Single":   0,
		"Multiple": 1,
		"Judge":    2,
	}
)

Enum value maps for QuestionTypeCode.

View Source
var File_chapterRequest_proto protoreflect.FileDescriptor
View Source
var File_chapterResponse_proto protoreflect.FileDescriptor
View Source
var File_chapterService_proto protoreflect.FileDescriptor
View Source
var File_classStructRequest_proto protoreflect.FileDescriptor
View Source
var File_classStructResponse_proto protoreflect.FileDescriptor
View Source
var File_classStructService_proto protoreflect.FileDescriptor
View Source
var File_collectingDataRequest_proto protoreflect.FileDescriptor
View Source
var File_collectingDataService_proto protoreflect.FileDescriptor
View Source
var File_collegeStructRequest_proto protoreflect.FileDescriptor
View Source
var File_collegeStructResponse_proto protoreflect.FileDescriptor
View Source
var File_collegeStructService_proto protoreflect.FileDescriptor
View Source
var File_courseRequest_proto protoreflect.FileDescriptor
View Source
var File_courseResponse_proto protoreflect.FileDescriptor
View Source
var File_courseService_proto protoreflect.FileDescriptor
View Source
var File_disciplineStructRequest_proto protoreflect.FileDescriptor
View Source
var File_disciplineStructResponse_proto protoreflect.FileDescriptor
View Source
var File_disciplineStructService_proto protoreflect.FileDescriptor
View Source
var File_global_proto protoreflect.FileDescriptor
View Source
var File_knowledgePointRequest_proto protoreflect.FileDescriptor
View Source
var File_knowledgePointResponse_proto protoreflect.FileDescriptor
View Source
var File_knowledgePointService_proto protoreflect.FileDescriptor
View Source
var File_questionBankRequest_proto protoreflect.FileDescriptor
View Source
var File_questionBankResponse_proto protoreflect.FileDescriptor
View Source
var File_questionBankService_proto protoreflect.FileDescriptor
View Source
var File_questionRequest_proto protoreflect.FileDescriptor
View Source
var File_questionResponse_proto protoreflect.FileDescriptor
View Source
var File_questionService_proto protoreflect.FileDescriptor
View Source
var File_userInfoRequest_proto protoreflect.FileDescriptor
View Source
var File_userInfoResponse_proto protoreflect.FileDescriptor
View Source
var File_userInfoService_proto protoreflect.FileDescriptor

Functions

func RegisterChapterServiceHandler

func RegisterChapterServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterChapterServiceHandler registers the http handlers for service ChapterService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterChapterServiceHandlerClient

func RegisterChapterServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ChapterServiceClient) error

RegisterChapterServiceHandlerClient registers the http handlers for service ChapterService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ChapterServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ChapterServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "ChapterServiceClient" to call the correct interceptors.

func RegisterChapterServiceHandlerFromEndpoint

func RegisterChapterServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterChapterServiceHandlerFromEndpoint is same as RegisterChapterServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterChapterServiceHandlerServer

func RegisterChapterServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ChapterServiceServer) error

RegisterChapterServiceHandlerServer registers the http handlers for service ChapterService to "mux". UnaryRPC :call ChapterServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterChapterServiceServer

func RegisterChapterServiceServer(s *grpc.Server, srv ChapterServiceServer)

func RegisterClassStructServiceHandler

func RegisterClassStructServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterClassStructServiceHandler registers the http handlers for service ClassStructService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterClassStructServiceHandlerClient

func RegisterClassStructServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ClassStructServiceClient) error

RegisterClassStructServiceHandlerClient registers the http handlers for service ClassStructService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ClassStructServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ClassStructServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "ClassStructServiceClient" to call the correct interceptors.

func RegisterClassStructServiceHandlerFromEndpoint

func RegisterClassStructServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterClassStructServiceHandlerFromEndpoint is same as RegisterClassStructServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterClassStructServiceHandlerServer

func RegisterClassStructServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ClassStructServiceServer) error

RegisterClassStructServiceHandlerServer registers the http handlers for service ClassStructService to "mux". UnaryRPC :call ClassStructServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterClassStructServiceServer

func RegisterClassStructServiceServer(s *grpc.Server, srv ClassStructServiceServer)

func RegisterCollectingDataServiceHandler added in v0.6.8

func RegisterCollectingDataServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterCollectingDataServiceHandler registers the http handlers for service CollectingDataService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterCollectingDataServiceHandlerClient added in v0.6.8

func RegisterCollectingDataServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client CollectingDataServiceClient) error

RegisterCollectingDataServiceHandlerClient registers the http handlers for service CollectingDataService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "CollectingDataServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "CollectingDataServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "CollectingDataServiceClient" to call the correct interceptors.

func RegisterCollectingDataServiceHandlerFromEndpoint added in v0.6.8

func RegisterCollectingDataServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterCollectingDataServiceHandlerFromEndpoint is same as RegisterCollectingDataServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterCollectingDataServiceHandlerServer added in v0.6.8

func RegisterCollectingDataServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server CollectingDataServiceServer) error

RegisterCollectingDataServiceHandlerServer registers the http handlers for service CollectingDataService to "mux". UnaryRPC :call CollectingDataServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterCollectingDataServiceServer added in v0.6.8

func RegisterCollectingDataServiceServer(s *grpc.Server, srv CollectingDataServiceServer)

func RegisterCollegeStructServiceHandler

func RegisterCollegeStructServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterCollegeStructServiceHandler registers the http handlers for service CollegeStructService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterCollegeStructServiceHandlerClient

func RegisterCollegeStructServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client CollegeStructServiceClient) error

RegisterCollegeStructServiceHandlerClient registers the http handlers for service CollegeStructService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "CollegeStructServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "CollegeStructServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "CollegeStructServiceClient" to call the correct interceptors.

func RegisterCollegeStructServiceHandlerFromEndpoint

func RegisterCollegeStructServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterCollegeStructServiceHandlerFromEndpoint is same as RegisterCollegeStructServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterCollegeStructServiceHandlerServer

func RegisterCollegeStructServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server CollegeStructServiceServer) error

RegisterCollegeStructServiceHandlerServer registers the http handlers for service CollegeStructService to "mux". UnaryRPC :call CollegeStructServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterCollegeStructServiceServer

func RegisterCollegeStructServiceServer(s *grpc.Server, srv CollegeStructServiceServer)

func RegisterCourseServiceHandler

func RegisterCourseServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterCourseServiceHandler registers the http handlers for service CourseService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterCourseServiceHandlerClient

func RegisterCourseServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client CourseServiceClient) error

RegisterCourseServiceHandlerClient registers the http handlers for service CourseService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "CourseServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "CourseServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "CourseServiceClient" to call the correct interceptors.

func RegisterCourseServiceHandlerFromEndpoint

func RegisterCourseServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterCourseServiceHandlerFromEndpoint is same as RegisterCourseServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterCourseServiceHandlerServer

func RegisterCourseServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server CourseServiceServer) error

RegisterCourseServiceHandlerServer registers the http handlers for service CourseService to "mux". UnaryRPC :call CourseServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterCourseServiceServer

func RegisterCourseServiceServer(s *grpc.Server, srv CourseServiceServer)

func RegisterDisciplineStructServiceHandler

func RegisterDisciplineStructServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterDisciplineStructServiceHandler registers the http handlers for service DisciplineStructService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterDisciplineStructServiceHandlerClient

func RegisterDisciplineStructServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client DisciplineStructServiceClient) error

RegisterDisciplineStructServiceHandlerClient registers the http handlers for service DisciplineStructService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "DisciplineStructServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "DisciplineStructServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "DisciplineStructServiceClient" to call the correct interceptors.

func RegisterDisciplineStructServiceHandlerFromEndpoint

func RegisterDisciplineStructServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterDisciplineStructServiceHandlerFromEndpoint is same as RegisterDisciplineStructServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterDisciplineStructServiceHandlerServer

func RegisterDisciplineStructServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server DisciplineStructServiceServer) error

RegisterDisciplineStructServiceHandlerServer registers the http handlers for service DisciplineStructService to "mux". UnaryRPC :call DisciplineStructServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterDisciplineStructServiceServer

func RegisterDisciplineStructServiceServer(s *grpc.Server, srv DisciplineStructServiceServer)

func RegisterKnowledgePointServiceHandler added in v0.6.8

func RegisterKnowledgePointServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterKnowledgePointServiceHandler registers the http handlers for service KnowledgePointService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterKnowledgePointServiceHandlerClient added in v0.6.8

func RegisterKnowledgePointServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client KnowledgePointServiceClient) error

RegisterKnowledgePointServiceHandlerClient registers the http handlers for service KnowledgePointService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "KnowledgePointServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "KnowledgePointServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "KnowledgePointServiceClient" to call the correct interceptors.

func RegisterKnowledgePointServiceHandlerFromEndpoint added in v0.6.8

func RegisterKnowledgePointServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterKnowledgePointServiceHandlerFromEndpoint is same as RegisterKnowledgePointServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterKnowledgePointServiceHandlerServer added in v0.6.8

func RegisterKnowledgePointServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server KnowledgePointServiceServer) error

RegisterKnowledgePointServiceHandlerServer registers the http handlers for service KnowledgePointService to "mux". UnaryRPC :call KnowledgePointServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterKnowledgePointServiceServer added in v0.6.8

func RegisterKnowledgePointServiceServer(s *grpc.Server, srv KnowledgePointServiceServer)

func RegisterQuestionBankServiceHandler

func RegisterQuestionBankServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQuestionBankServiceHandler registers the http handlers for service QuestionBankService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQuestionBankServiceHandlerClient

func RegisterQuestionBankServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QuestionBankServiceClient) error

RegisterQuestionBankServiceHandlerClient registers the http handlers for service QuestionBankService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QuestionBankServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QuestionBankServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QuestionBankServiceClient" to call the correct interceptors.

func RegisterQuestionBankServiceHandlerFromEndpoint

func RegisterQuestionBankServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQuestionBankServiceHandlerFromEndpoint is same as RegisterQuestionBankServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQuestionBankServiceHandlerServer

func RegisterQuestionBankServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QuestionBankServiceServer) error

RegisterQuestionBankServiceHandlerServer registers the http handlers for service QuestionBankService to "mux". UnaryRPC :call QuestionBankServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterQuestionBankServiceServer

func RegisterQuestionBankServiceServer(s *grpc.Server, srv QuestionBankServiceServer)

func RegisterQuestionServiceHandler

func RegisterQuestionServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQuestionServiceHandler registers the http handlers for service QuestionService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQuestionServiceHandlerClient

func RegisterQuestionServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QuestionServiceClient) error

RegisterQuestionServiceHandlerClient registers the http handlers for service QuestionService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QuestionServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QuestionServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QuestionServiceClient" to call the correct interceptors.

func RegisterQuestionServiceHandlerFromEndpoint

func RegisterQuestionServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQuestionServiceHandlerFromEndpoint is same as RegisterQuestionServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQuestionServiceHandlerServer

func RegisterQuestionServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QuestionServiceServer) error

RegisterQuestionServiceHandlerServer registers the http handlers for service QuestionService to "mux". UnaryRPC :call QuestionServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterQuestionServiceServer

func RegisterQuestionServiceServer(s *grpc.Server, srv QuestionServiceServer)

func RegisterUserInfoServiceHandler

func RegisterUserInfoServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterUserInfoServiceHandler registers the http handlers for service UserInfoService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterUserInfoServiceHandlerClient

func RegisterUserInfoServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client UserInfoServiceClient) error

RegisterUserInfoServiceHandlerClient registers the http handlers for service UserInfoService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "UserInfoServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "UserInfoServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "UserInfoServiceClient" to call the correct interceptors.

func RegisterUserInfoServiceHandlerFromEndpoint

func RegisterUserInfoServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterUserInfoServiceHandlerFromEndpoint is same as RegisterUserInfoServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterUserInfoServiceHandlerServer

func RegisterUserInfoServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server UserInfoServiceServer) error

RegisterUserInfoServiceHandlerServer registers the http handlers for service UserInfoService to "mux". UnaryRPC :call UserInfoServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.

func RegisterUserInfoServiceServer

func RegisterUserInfoServiceServer(s *grpc.Server, srv UserInfoServiceServer)

Types

type Answer added in v0.6.8

type Answer struct {

	// 开始时间戳
	StartTime uint32 `protobuf:"fixed32,1,opt,name=StartTime,proto3" json:"StartTime,omitempty"`
	// 结束时间戳
	EndTime uint32 `protobuf:"fixed32,2,opt,name=EndTime,proto3" json:"EndTime,omitempty"`
	// 题目 UUID
	QuestionUUID string `protobuf:"bytes,3,opt,name=QuestionUUID,proto3" json:"QuestionUUID,omitempty"`
	// 所写答案是否选中A
	IsA bool `protobuf:"varint,4,opt,name=IsA,proto3" json:"IsA,omitempty"`
	// 所写答案是否选中B
	IsB bool `protobuf:"varint,5,opt,name=IsB,proto3" json:"IsB,omitempty"`
	// 所写答案是否选中C
	IsC bool `protobuf:"varint,6,opt,name=IsC,proto3" json:"IsC,omitempty"`
	// 所写答案是否选中D
	IsD bool `protobuf:"varint,7,opt,name=IsD,proto3" json:"IsD,omitempty"`
	// 所写答案是否为正确
	IsTrue bool `protobuf:"varint,8,opt,name=IsTrue,proto3" json:"IsTrue,omitempty"`
	// contains filtered or unexported fields
}

func (*Answer) Descriptor deprecated added in v0.6.8

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

Deprecated: Use Answer.ProtoReflect.Descriptor instead.

func (*Answer) GetEndTime added in v0.6.8

func (x *Answer) GetEndTime() uint32

func (*Answer) GetIsA added in v0.6.8

func (x *Answer) GetIsA() bool

func (*Answer) GetIsB added in v0.6.8

func (x *Answer) GetIsB() bool

func (*Answer) GetIsC added in v0.6.8

func (x *Answer) GetIsC() bool

func (*Answer) GetIsD added in v0.6.8

func (x *Answer) GetIsD() bool

func (*Answer) GetIsTrue added in v0.6.8

func (x *Answer) GetIsTrue() bool

func (*Answer) GetQuestionUUID added in v0.6.8

func (x *Answer) GetQuestionUUID() string

func (*Answer) GetStartTime added in v0.6.8

func (x *Answer) GetStartTime() uint32

func (*Answer) ProtoMessage added in v0.6.8

func (*Answer) ProtoMessage()

func (*Answer) ProtoReflect added in v0.6.8

func (x *Answer) ProtoReflect() protoreflect.Message

func (*Answer) Reset added in v0.6.8

func (x *Answer) Reset()

func (*Answer) String added in v0.6.8

func (x *Answer) String() string

type Answers added in v0.6.8

type Answers struct {
	Answers   []*Answer `protobuf:"bytes,1,rep,name=Answers,proto3" json:"Answers,omitempty"`
	AuthToken string    `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

答题情况

func (*Answers) Descriptor deprecated added in v0.6.8

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

Deprecated: Use Answers.ProtoReflect.Descriptor instead.

func (*Answers) GetAnswers added in v0.6.8

func (x *Answers) GetAnswers() []*Answer

func (*Answers) GetAuthToken added in v0.6.8

func (x *Answers) GetAuthToken() string

func (*Answers) ProtoMessage added in v0.6.8

func (*Answers) ProtoMessage()

func (*Answers) ProtoReflect added in v0.6.8

func (x *Answers) ProtoReflect() protoreflect.Message

func (*Answers) Reset added in v0.6.8

func (x *Answers) Reset()

func (*Answers) String added in v0.6.8

func (x *Answers) String() string

type ChangeUserRoleRequest

type ChangeUserRoleRequest struct {
	WillChangeAccountID int32            `protobuf:"varint,1,opt,name=WillChangeAccountID,proto3" json:"WillChangeAccountID,omitempty"`
	NewRoleCode         UserRoleTypeCode `protobuf:"varint,2,opt,name=NewRoleCode,proto3,enum=pb.UserRoleTypeCode" json:"NewRoleCode,omitempty"`
	AuthToken           string           `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeUserRoleRequest) Descriptor deprecated

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

Deprecated: Use ChangeUserRoleRequest.ProtoReflect.Descriptor instead.

func (*ChangeUserRoleRequest) GetAuthToken

func (x *ChangeUserRoleRequest) GetAuthToken() string

func (*ChangeUserRoleRequest) GetNewRoleCode

func (x *ChangeUserRoleRequest) GetNewRoleCode() UserRoleTypeCode

func (*ChangeUserRoleRequest) GetWillChangeAccountID added in v0.6.5

func (x *ChangeUserRoleRequest) GetWillChangeAccountID() int32

func (*ChangeUserRoleRequest) ProtoMessage

func (*ChangeUserRoleRequest) ProtoMessage()

func (*ChangeUserRoleRequest) ProtoReflect added in v0.6.8

func (x *ChangeUserRoleRequest) ProtoReflect() protoreflect.Message

func (*ChangeUserRoleRequest) Reset

func (x *ChangeUserRoleRequest) Reset()

func (*ChangeUserRoleRequest) String

func (x *ChangeUserRoleRequest) String() string

type ChangeUserRoleResponse

type ChangeUserRoleResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeUserRoleResponse) Descriptor deprecated

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

Deprecated: Use ChangeUserRoleResponse.ProtoReflect.Descriptor instead.

func (*ChangeUserRoleResponse) GetStatus

func (x *ChangeUserRoleResponse) GetStatus() *ResponseStatus

func (*ChangeUserRoleResponse) ProtoMessage

func (*ChangeUserRoleResponse) ProtoMessage()

func (*ChangeUserRoleResponse) ProtoReflect added in v0.6.8

func (x *ChangeUserRoleResponse) ProtoReflect() protoreflect.Message

func (*ChangeUserRoleResponse) Reset

func (x *ChangeUserRoleResponse) Reset()

func (*ChangeUserRoleResponse) String

func (x *ChangeUserRoleResponse) String() string

type ChapterServiceClient

ChapterServiceClient is the client API for ChapterService service.

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

type ClassStructServiceClient

ClassStructServiceClient is the client API for ClassStructService service.

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

type CollectingDataServiceClient added in v0.6.8

type CollectingDataServiceClient interface {
	UploadContentReadings(ctx context.Context, in *ContentReadings, opts ...grpc.CallOption) (*ResponseStatus, error)
	UploadAnswers(ctx context.Context, in *Answers, opts ...grpc.CallOption) (*ResponseStatus, error)
}

CollectingDataServiceClient is the client API for CollectingDataService service.

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

func NewCollectingDataServiceClient added in v0.6.8

func NewCollectingDataServiceClient(cc grpc.ClientConnInterface) CollectingDataServiceClient

type CollectingDataServiceServer added in v0.6.8

type CollectingDataServiceServer interface {
	UploadContentReadings(context.Context, *ContentReadings) (*ResponseStatus, error)
	UploadAnswers(context.Context, *Answers) (*ResponseStatus, error)
}

CollectingDataServiceServer is the server API for CollectingDataService service.

type CollegeStructServiceClient

type CollegeStructServiceClient interface {
	GetCollege(ctx context.Context, in *GetCollegeRequest, opts ...grpc.CallOption) (*GetCollegeResponse, error)
	ListCollege(ctx context.Context, in *ListCollegeRequest, opts ...grpc.CallOption) (*ListCollegeResponse, error)
	CreateCollege(ctx context.Context, in *CreateCollegeRequest, opts ...grpc.CallOption) (*CreateCollegeResponse, error)
	DeleteCollege(ctx context.Context, in *DeleteCollegeRequest, opts ...grpc.CallOption) (*DeleteCollegeResponse, error)
	SetCollegeManager(ctx context.Context, in *SetCollegeManagerRequest, opts ...grpc.CallOption) (*SetCollegeManagerResponse, error)
	UnSetCollegeManager(ctx context.Context, in *UnSetCollegeManagerRequest, opts ...grpc.CallOption) (*UnSetCollegeManagerResponse, error)
	UpdateCollege(ctx context.Context, in *UpdateCollegeRequest, opts ...grpc.CallOption) (*UpdateCollegeResponse, error)
}

CollegeStructServiceClient is the client API for CollegeStructService service.

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

type CollegeStructServiceServer

CollegeStructServiceServer is the server API for CollegeStructService service.

type ContentReading added in v0.6.8

type ContentReading struct {

	// 开始时间戳
	StartTime uint32 `protobuf:"fixed32,1,opt,name=StartTime,proto3" json:"StartTime,omitempty"`
	// 结束时间戳
	EndTime uint32 `protobuf:"fixed32,2,opt,name=EndTime,proto3" json:"EndTime,omitempty"`
	// 章节 UUID
	ChapterUUID string `protobuf:"bytes,3,opt,name=ChapterUUID,proto3" json:"ChapterUUID,omitempty"`
	// contains filtered or unexported fields
}

func (*ContentReading) Descriptor deprecated added in v0.6.8

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

Deprecated: Use ContentReading.ProtoReflect.Descriptor instead.

func (*ContentReading) GetChapterUUID added in v0.6.8

func (x *ContentReading) GetChapterUUID() string

func (*ContentReading) GetEndTime added in v0.6.8

func (x *ContentReading) GetEndTime() uint32

func (*ContentReading) GetStartTime added in v0.6.8

func (x *ContentReading) GetStartTime() uint32

func (*ContentReading) ProtoMessage added in v0.6.8

func (*ContentReading) ProtoMessage()

func (*ContentReading) ProtoReflect added in v0.6.8

func (x *ContentReading) ProtoReflect() protoreflect.Message

func (*ContentReading) Reset added in v0.6.8

func (x *ContentReading) Reset()

func (*ContentReading) String added in v0.6.8

func (x *ContentReading) String() string

type ContentReadings added in v0.6.8

type ContentReadings struct {
	ContentReadings []*ContentReading `protobuf:"bytes,1,rep,name=ContentReadings,proto3" json:"ContentReadings,omitempty"`
	AuthToken       string            `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

资料阅读情况

func (*ContentReadings) Descriptor deprecated added in v0.6.8

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

Deprecated: Use ContentReadings.ProtoReflect.Descriptor instead.

func (*ContentReadings) GetAuthToken added in v0.6.8

func (x *ContentReadings) GetAuthToken() string

func (*ContentReadings) GetContentReadings added in v0.6.8

func (x *ContentReadings) GetContentReadings() []*ContentReading

func (*ContentReadings) ProtoMessage added in v0.6.8

func (*ContentReadings) ProtoMessage()

func (*ContentReadings) ProtoReflect added in v0.6.8

func (x *ContentReadings) ProtoReflect() protoreflect.Message

func (*ContentReadings) Reset added in v0.6.8

func (x *ContentReadings) Reset()

func (*ContentReadings) String added in v0.6.8

func (x *ContentReadings) String() string

type CourseServiceClient

CourseServiceClient is the client API for CourseService service.

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

type CreateChapterRequest

type CreateChapterRequest struct {
	Name        string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID string `protobuf:"bytes,3,opt,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	CourseUUID  string `protobuf:"bytes,4,opt,name=CourseUUID,proto3" json:"CourseUUID,omitempty"`
	Index       int32  `protobuf:"varint,5,opt,name=Index,proto3" json:"Index,omitempty"`
	AuthToken   string `protobuf:"bytes,6,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateChapterRequest) Descriptor deprecated

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

Deprecated: Use CreateChapterRequest.ProtoReflect.Descriptor instead.

func (*CreateChapterRequest) GetAuthToken

func (x *CreateChapterRequest) GetAuthToken() string

func (*CreateChapterRequest) GetCourseUUID

func (x *CreateChapterRequest) GetCourseUUID() string

func (*CreateChapterRequest) GetDescription

func (x *CreateChapterRequest) GetDescription() string

func (*CreateChapterRequest) GetIndex added in v0.4.5

func (x *CreateChapterRequest) GetIndex() int32

func (*CreateChapterRequest) GetManagerUUID

func (x *CreateChapterRequest) GetManagerUUID() string

func (*CreateChapterRequest) GetName

func (x *CreateChapterRequest) GetName() string

func (*CreateChapterRequest) ProtoMessage

func (*CreateChapterRequest) ProtoMessage()

func (*CreateChapterRequest) ProtoReflect added in v0.6.8

func (x *CreateChapterRequest) ProtoReflect() protoreflect.Message

func (*CreateChapterRequest) Reset

func (x *CreateChapterRequest) Reset()

func (*CreateChapterRequest) String

func (x *CreateChapterRequest) String() string

type CreateChapterResponse

type CreateChapterResponse struct {
	UUID   string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateChapterResponse) Descriptor deprecated

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

Deprecated: Use CreateChapterResponse.ProtoReflect.Descriptor instead.

func (*CreateChapterResponse) GetStatus

func (x *CreateChapterResponse) GetStatus() *ResponseStatus

func (*CreateChapterResponse) GetUUID

func (x *CreateChapterResponse) GetUUID() string

func (*CreateChapterResponse) ProtoMessage

func (*CreateChapterResponse) ProtoMessage()

func (*CreateChapterResponse) ProtoReflect added in v0.6.8

func (x *CreateChapterResponse) ProtoReflect() protoreflect.Message

func (*CreateChapterResponse) Reset

func (x *CreateChapterResponse) Reset()

func (*CreateChapterResponse) String

func (x *CreateChapterResponse) String() string

type CreateClassRequest

type CreateClassRequest struct {
	Name           string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description    string `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID    string `protobuf:"bytes,3,opt,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	DisciplineUUID string `protobuf:"bytes,4,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,5,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateClassRequest) Descriptor deprecated

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

Deprecated: Use CreateClassRequest.ProtoReflect.Descriptor instead.

func (*CreateClassRequest) GetAuthToken

func (x *CreateClassRequest) GetAuthToken() string

func (*CreateClassRequest) GetDescription

func (x *CreateClassRequest) GetDescription() string

func (*CreateClassRequest) GetDisciplineUUID

func (x *CreateClassRequest) GetDisciplineUUID() string

func (*CreateClassRequest) GetManagerUUID

func (x *CreateClassRequest) GetManagerUUID() string

func (*CreateClassRequest) GetName

func (x *CreateClassRequest) GetName() string

func (*CreateClassRequest) ProtoMessage

func (*CreateClassRequest) ProtoMessage()

func (*CreateClassRequest) ProtoReflect added in v0.6.8

func (x *CreateClassRequest) ProtoReflect() protoreflect.Message

func (*CreateClassRequest) Reset

func (x *CreateClassRequest) Reset()

func (*CreateClassRequest) String

func (x *CreateClassRequest) String() string

type CreateClassResponse

type CreateClassResponse struct {
	UUID   string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateClassResponse) Descriptor deprecated

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

Deprecated: Use CreateClassResponse.ProtoReflect.Descriptor instead.

func (*CreateClassResponse) GetStatus

func (x *CreateClassResponse) GetStatus() *ResponseStatus

func (*CreateClassResponse) GetUUID

func (x *CreateClassResponse) GetUUID() string

func (*CreateClassResponse) ProtoMessage

func (*CreateClassResponse) ProtoMessage()

func (*CreateClassResponse) ProtoReflect added in v0.6.8

func (x *CreateClassResponse) ProtoReflect() protoreflect.Message

func (*CreateClassResponse) Reset

func (x *CreateClassResponse) Reset()

func (*CreateClassResponse) String

func (x *CreateClassResponse) String() string

type CreateCollegeRequest

type CreateCollegeRequest struct {
	Name        string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID string `protobuf:"bytes,3,opt,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	AuthToken   string `protobuf:"bytes,4,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCollegeRequest) Descriptor deprecated

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

Deprecated: Use CreateCollegeRequest.ProtoReflect.Descriptor instead.

func (*CreateCollegeRequest) GetAuthToken

func (x *CreateCollegeRequest) GetAuthToken() string

func (*CreateCollegeRequest) GetDescription

func (x *CreateCollegeRequest) GetDescription() string

func (*CreateCollegeRequest) GetManagerUUID

func (x *CreateCollegeRequest) GetManagerUUID() string

func (*CreateCollegeRequest) GetName

func (x *CreateCollegeRequest) GetName() string

func (*CreateCollegeRequest) ProtoMessage

func (*CreateCollegeRequest) ProtoMessage()

func (*CreateCollegeRequest) ProtoReflect added in v0.6.8

func (x *CreateCollegeRequest) ProtoReflect() protoreflect.Message

func (*CreateCollegeRequest) Reset

func (x *CreateCollegeRequest) Reset()

func (*CreateCollegeRequest) String

func (x *CreateCollegeRequest) String() string

type CreateCollegeResponse

type CreateCollegeResponse struct {
	UUID   string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCollegeResponse) Descriptor deprecated

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

Deprecated: Use CreateCollegeResponse.ProtoReflect.Descriptor instead.

func (*CreateCollegeResponse) GetStatus

func (x *CreateCollegeResponse) GetStatus() *ResponseStatus

func (*CreateCollegeResponse) GetUUID

func (x *CreateCollegeResponse) GetUUID() string

func (*CreateCollegeResponse) ProtoMessage

func (*CreateCollegeResponse) ProtoMessage()

func (*CreateCollegeResponse) ProtoReflect added in v0.6.8

func (x *CreateCollegeResponse) ProtoReflect() protoreflect.Message

func (*CreateCollegeResponse) Reset

func (x *CreateCollegeResponse) Reset()

func (*CreateCollegeResponse) String

func (x *CreateCollegeResponse) String() string

type CreateCourseRequest

type CreateCourseRequest struct {
	Name           string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description    string `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID    string `protobuf:"bytes,3,opt,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	DisciplineUUID string `protobuf:"bytes,4,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,5,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCourseRequest) Descriptor deprecated

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

Deprecated: Use CreateCourseRequest.ProtoReflect.Descriptor instead.

func (*CreateCourseRequest) GetAuthToken

func (x *CreateCourseRequest) GetAuthToken() string

func (*CreateCourseRequest) GetDescription

func (x *CreateCourseRequest) GetDescription() string

func (*CreateCourseRequest) GetDisciplineUUID

func (x *CreateCourseRequest) GetDisciplineUUID() string

func (*CreateCourseRequest) GetManagerUUID

func (x *CreateCourseRequest) GetManagerUUID() string

func (*CreateCourseRequest) GetName

func (x *CreateCourseRequest) GetName() string

func (*CreateCourseRequest) ProtoMessage

func (*CreateCourseRequest) ProtoMessage()

func (*CreateCourseRequest) ProtoReflect added in v0.6.8

func (x *CreateCourseRequest) ProtoReflect() protoreflect.Message

func (*CreateCourseRequest) Reset

func (x *CreateCourseRequest) Reset()

func (*CreateCourseRequest) String

func (x *CreateCourseRequest) String() string

type CreateCourseResponse

type CreateCourseResponse struct {
	UUID   string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateCourseResponse) Descriptor deprecated

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

Deprecated: Use CreateCourseResponse.ProtoReflect.Descriptor instead.

func (*CreateCourseResponse) GetStatus

func (x *CreateCourseResponse) GetStatus() *ResponseStatus

func (*CreateCourseResponse) GetUUID

func (x *CreateCourseResponse) GetUUID() string

func (*CreateCourseResponse) ProtoMessage

func (*CreateCourseResponse) ProtoMessage()

func (*CreateCourseResponse) ProtoReflect added in v0.6.8

func (x *CreateCourseResponse) ProtoReflect() protoreflect.Message

func (*CreateCourseResponse) Reset

func (x *CreateCourseResponse) Reset()

func (*CreateCourseResponse) String

func (x *CreateCourseResponse) String() string

type CreateDisciplineRequest

type CreateDisciplineRequest struct {
	Name        string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID string `protobuf:"bytes,3,opt,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	CollegeUUID string `protobuf:"bytes,4,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	AuthToken   string `protobuf:"bytes,5,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateDisciplineRequest) Descriptor deprecated

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

Deprecated: Use CreateDisciplineRequest.ProtoReflect.Descriptor instead.

func (*CreateDisciplineRequest) GetAuthToken

func (x *CreateDisciplineRequest) GetAuthToken() string

func (*CreateDisciplineRequest) GetCollegeUUID

func (x *CreateDisciplineRequest) GetCollegeUUID() string

func (*CreateDisciplineRequest) GetDescription

func (x *CreateDisciplineRequest) GetDescription() string

func (*CreateDisciplineRequest) GetManagerUUID

func (x *CreateDisciplineRequest) GetManagerUUID() string

func (*CreateDisciplineRequest) GetName

func (x *CreateDisciplineRequest) GetName() string

func (*CreateDisciplineRequest) ProtoMessage

func (*CreateDisciplineRequest) ProtoMessage()

func (*CreateDisciplineRequest) ProtoReflect added in v0.6.8

func (x *CreateDisciplineRequest) ProtoReflect() protoreflect.Message

func (*CreateDisciplineRequest) Reset

func (x *CreateDisciplineRequest) Reset()

func (*CreateDisciplineRequest) String

func (x *CreateDisciplineRequest) String() string

type CreateDisciplineResponse

type CreateDisciplineResponse struct {
	UUID   string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateDisciplineResponse) Descriptor deprecated

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

Deprecated: Use CreateDisciplineResponse.ProtoReflect.Descriptor instead.

func (*CreateDisciplineResponse) GetStatus

func (x *CreateDisciplineResponse) GetStatus() *ResponseStatus

func (*CreateDisciplineResponse) GetUUID

func (x *CreateDisciplineResponse) GetUUID() string

func (*CreateDisciplineResponse) ProtoMessage

func (*CreateDisciplineResponse) ProtoMessage()

func (*CreateDisciplineResponse) ProtoReflect added in v0.6.8

func (x *CreateDisciplineResponse) ProtoReflect() protoreflect.Message

func (*CreateDisciplineResponse) Reset

func (x *CreateDisciplineResponse) Reset()

func (*CreateDisciplineResponse) String

func (x *CreateDisciplineResponse) String() string

type CreateKnowledgePointRequest added in v0.6.8

type CreateKnowledgePointRequest struct {
	CourseUUID string `protobuf:"bytes,1,opt,name=CourseUUID,proto3" json:"CourseUUID,omitempty"`
	Name       string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	ParentUUID string `protobuf:"bytes,3,opt,name=ParentUUID,proto3" json:"ParentUUID,omitempty"`
	AuthToken  string `protobuf:"bytes,4,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateKnowledgePointRequest) Descriptor deprecated added in v0.6.8

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

Deprecated: Use CreateKnowledgePointRequest.ProtoReflect.Descriptor instead.

func (*CreateKnowledgePointRequest) GetAuthToken added in v0.6.8

func (x *CreateKnowledgePointRequest) GetAuthToken() string

func (*CreateKnowledgePointRequest) GetCourseUUID added in v0.6.8

func (x *CreateKnowledgePointRequest) GetCourseUUID() string

func (*CreateKnowledgePointRequest) GetName added in v0.6.8

func (x *CreateKnowledgePointRequest) GetName() string

func (*CreateKnowledgePointRequest) GetParentUUID added in v0.6.8

func (x *CreateKnowledgePointRequest) GetParentUUID() string

func (*CreateKnowledgePointRequest) ProtoMessage added in v0.6.8

func (*CreateKnowledgePointRequest) ProtoMessage()

func (*CreateKnowledgePointRequest) ProtoReflect added in v0.6.8

func (*CreateKnowledgePointRequest) Reset added in v0.6.8

func (x *CreateKnowledgePointRequest) Reset()

func (*CreateKnowledgePointRequest) String added in v0.6.8

func (x *CreateKnowledgePointRequest) String() string

type CreateKnowledgePointResponse added in v0.6.8

type CreateKnowledgePointResponse struct {
	UUID   string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateKnowledgePointResponse) Descriptor deprecated added in v0.6.8

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

Deprecated: Use CreateKnowledgePointResponse.ProtoReflect.Descriptor instead.

func (*CreateKnowledgePointResponse) GetStatus added in v0.6.8

func (*CreateKnowledgePointResponse) GetUUID added in v0.6.8

func (x *CreateKnowledgePointResponse) GetUUID() string

func (*CreateKnowledgePointResponse) ProtoMessage added in v0.6.8

func (*CreateKnowledgePointResponse) ProtoMessage()

func (*CreateKnowledgePointResponse) ProtoReflect added in v0.6.8

func (*CreateKnowledgePointResponse) Reset added in v0.6.8

func (x *CreateKnowledgePointResponse) Reset()

func (*CreateKnowledgePointResponse) String added in v0.6.8

type CreateQuestionBankRequest

type CreateQuestionBankRequest struct {
	Name        string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID string `protobuf:"bytes,3,opt,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	CourseUUID  string `protobuf:"bytes,4,opt,name=CourseUUID,proto3" json:"CourseUUID,omitempty"`
	AuthToken   string `protobuf:"bytes,5,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateQuestionBankRequest) Descriptor deprecated

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

Deprecated: Use CreateQuestionBankRequest.ProtoReflect.Descriptor instead.

func (*CreateQuestionBankRequest) GetAuthToken

func (x *CreateQuestionBankRequest) GetAuthToken() string

func (*CreateQuestionBankRequest) GetCourseUUID

func (x *CreateQuestionBankRequest) GetCourseUUID() string

func (*CreateQuestionBankRequest) GetDescription

func (x *CreateQuestionBankRequest) GetDescription() string

func (*CreateQuestionBankRequest) GetManagerUUID

func (x *CreateQuestionBankRequest) GetManagerUUID() string

func (*CreateQuestionBankRequest) GetName

func (x *CreateQuestionBankRequest) GetName() string

func (*CreateQuestionBankRequest) ProtoMessage

func (*CreateQuestionBankRequest) ProtoMessage()

func (*CreateQuestionBankRequest) ProtoReflect added in v0.6.8

func (*CreateQuestionBankRequest) Reset

func (x *CreateQuestionBankRequest) Reset()

func (*CreateQuestionBankRequest) String

func (x *CreateQuestionBankRequest) String() string

type CreateQuestionBankResponse

type CreateQuestionBankResponse struct {
	UUID   string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateQuestionBankResponse) Descriptor deprecated

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

Deprecated: Use CreateQuestionBankResponse.ProtoReflect.Descriptor instead.

func (*CreateQuestionBankResponse) GetStatus

func (*CreateQuestionBankResponse) GetUUID

func (x *CreateQuestionBankResponse) GetUUID() string

func (*CreateQuestionBankResponse) ProtoMessage

func (*CreateQuestionBankResponse) ProtoMessage()

func (*CreateQuestionBankResponse) ProtoReflect added in v0.6.8

func (*CreateQuestionBankResponse) Reset

func (x *CreateQuestionBankResponse) Reset()

func (*CreateQuestionBankResponse) String

func (x *CreateQuestionBankResponse) String() string

type CreateQuestionRequest

type CreateQuestionRequest struct {
	Question  *QuestionInfoUnit `protobuf:"bytes,1,opt,name=Question,proto3" json:"Question,omitempty"`
	BankUUID  string            `protobuf:"bytes,2,opt,name=BankUUID,proto3" json:"BankUUID,omitempty"`
	AuthToken string            `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateQuestionRequest) Descriptor deprecated

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

Deprecated: Use CreateQuestionRequest.ProtoReflect.Descriptor instead.

func (*CreateQuestionRequest) GetAuthToken

func (x *CreateQuestionRequest) GetAuthToken() string

func (*CreateQuestionRequest) GetBankUUID added in v0.6.4

func (x *CreateQuestionRequest) GetBankUUID() string

func (*CreateQuestionRequest) GetQuestion

func (x *CreateQuestionRequest) GetQuestion() *QuestionInfoUnit

func (*CreateQuestionRequest) ProtoMessage

func (*CreateQuestionRequest) ProtoMessage()

func (*CreateQuestionRequest) ProtoReflect added in v0.6.8

func (x *CreateQuestionRequest) ProtoReflect() protoreflect.Message

func (*CreateQuestionRequest) Reset

func (x *CreateQuestionRequest) Reset()

func (*CreateQuestionRequest) String

func (x *CreateQuestionRequest) String() string

type CreateQuestionResponse

type CreateQuestionResponse struct {
	UUID   string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateQuestionResponse) Descriptor deprecated

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

Deprecated: Use CreateQuestionResponse.ProtoReflect.Descriptor instead.

func (*CreateQuestionResponse) GetStatus

func (x *CreateQuestionResponse) GetStatus() *ResponseStatus

func (*CreateQuestionResponse) GetUUID

func (x *CreateQuestionResponse) GetUUID() string

func (*CreateQuestionResponse) ProtoMessage

func (*CreateQuestionResponse) ProtoMessage()

func (*CreateQuestionResponse) ProtoReflect added in v0.6.8

func (x *CreateQuestionResponse) ProtoReflect() protoreflect.Message

func (*CreateQuestionResponse) Reset

func (x *CreateQuestionResponse) Reset()

func (*CreateQuestionResponse) String

func (x *CreateQuestionResponse) String() string

type DeleteChapterRequest

type DeleteChapterRequest struct {
	WillDeleteUUID string `protobuf:"bytes,1,opt,name=WillDeleteUUID,proto3" json:"WillDeleteUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteChapterRequest) Descriptor deprecated

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

Deprecated: Use DeleteChapterRequest.ProtoReflect.Descriptor instead.

func (*DeleteChapterRequest) GetAuthToken

func (x *DeleteChapterRequest) GetAuthToken() string

func (*DeleteChapterRequest) GetWillDeleteUUID

func (x *DeleteChapterRequest) GetWillDeleteUUID() string

func (*DeleteChapterRequest) ProtoMessage

func (*DeleteChapterRequest) ProtoMessage()

func (*DeleteChapterRequest) ProtoReflect added in v0.6.8

func (x *DeleteChapterRequest) ProtoReflect() protoreflect.Message

func (*DeleteChapterRequest) Reset

func (x *DeleteChapterRequest) Reset()

func (*DeleteChapterRequest) String

func (x *DeleteChapterRequest) String() string

type DeleteChapterResponse

type DeleteChapterResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteChapterResponse) Descriptor deprecated

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

Deprecated: Use DeleteChapterResponse.ProtoReflect.Descriptor instead.

func (*DeleteChapterResponse) GetStatus

func (x *DeleteChapterResponse) GetStatus() *ResponseStatus

func (*DeleteChapterResponse) ProtoMessage

func (*DeleteChapterResponse) ProtoMessage()

func (*DeleteChapterResponse) ProtoReflect added in v0.6.8

func (x *DeleteChapterResponse) ProtoReflect() protoreflect.Message

func (*DeleteChapterResponse) Reset

func (x *DeleteChapterResponse) Reset()

func (*DeleteChapterResponse) String

func (x *DeleteChapterResponse) String() string

type DeleteClassRequest

type DeleteClassRequest struct {
	WillDeleteUUID string `protobuf:"bytes,1,opt,name=WillDeleteUUID,proto3" json:"WillDeleteUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteClassRequest) Descriptor deprecated

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

Deprecated: Use DeleteClassRequest.ProtoReflect.Descriptor instead.

func (*DeleteClassRequest) GetAuthToken

func (x *DeleteClassRequest) GetAuthToken() string

func (*DeleteClassRequest) GetWillDeleteUUID

func (x *DeleteClassRequest) GetWillDeleteUUID() string

func (*DeleteClassRequest) ProtoMessage

func (*DeleteClassRequest) ProtoMessage()

func (*DeleteClassRequest) ProtoReflect added in v0.6.8

func (x *DeleteClassRequest) ProtoReflect() protoreflect.Message

func (*DeleteClassRequest) Reset

func (x *DeleteClassRequest) Reset()

func (*DeleteClassRequest) String

func (x *DeleteClassRequest) String() string

type DeleteClassResponse

type DeleteClassResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteClassResponse) Descriptor deprecated

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

Deprecated: Use DeleteClassResponse.ProtoReflect.Descriptor instead.

func (*DeleteClassResponse) GetStatus

func (x *DeleteClassResponse) GetStatus() *ResponseStatus

func (*DeleteClassResponse) ProtoMessage

func (*DeleteClassResponse) ProtoMessage()

func (*DeleteClassResponse) ProtoReflect added in v0.6.8

func (x *DeleteClassResponse) ProtoReflect() protoreflect.Message

func (*DeleteClassResponse) Reset

func (x *DeleteClassResponse) Reset()

func (*DeleteClassResponse) String

func (x *DeleteClassResponse) String() string

type DeleteCollegeRequest

type DeleteCollegeRequest struct {
	WillDeleteUUID string `protobuf:"bytes,1,opt,name=WillDeleteUUID,proto3" json:"WillDeleteUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteCollegeRequest) Descriptor deprecated

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

Deprecated: Use DeleteCollegeRequest.ProtoReflect.Descriptor instead.

func (*DeleteCollegeRequest) GetAuthToken

func (x *DeleteCollegeRequest) GetAuthToken() string

func (*DeleteCollegeRequest) GetWillDeleteUUID

func (x *DeleteCollegeRequest) GetWillDeleteUUID() string

func (*DeleteCollegeRequest) ProtoMessage

func (*DeleteCollegeRequest) ProtoMessage()

func (*DeleteCollegeRequest) ProtoReflect added in v0.6.8

func (x *DeleteCollegeRequest) ProtoReflect() protoreflect.Message

func (*DeleteCollegeRequest) Reset

func (x *DeleteCollegeRequest) Reset()

func (*DeleteCollegeRequest) String

func (x *DeleteCollegeRequest) String() string

type DeleteCollegeResponse

type DeleteCollegeResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteCollegeResponse) Descriptor deprecated

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

Deprecated: Use DeleteCollegeResponse.ProtoReflect.Descriptor instead.

func (*DeleteCollegeResponse) GetStatus

func (x *DeleteCollegeResponse) GetStatus() *ResponseStatus

func (*DeleteCollegeResponse) ProtoMessage

func (*DeleteCollegeResponse) ProtoMessage()

func (*DeleteCollegeResponse) ProtoReflect added in v0.6.8

func (x *DeleteCollegeResponse) ProtoReflect() protoreflect.Message

func (*DeleteCollegeResponse) Reset

func (x *DeleteCollegeResponse) Reset()

func (*DeleteCollegeResponse) String

func (x *DeleteCollegeResponse) String() string

type DeleteCourseRequest

type DeleteCourseRequest struct {
	WillDeleteUUID string `protobuf:"bytes,1,opt,name=WillDeleteUUID,proto3" json:"WillDeleteUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteCourseRequest) Descriptor deprecated

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

Deprecated: Use DeleteCourseRequest.ProtoReflect.Descriptor instead.

func (*DeleteCourseRequest) GetAuthToken

func (x *DeleteCourseRequest) GetAuthToken() string

func (*DeleteCourseRequest) GetWillDeleteUUID

func (x *DeleteCourseRequest) GetWillDeleteUUID() string

func (*DeleteCourseRequest) ProtoMessage

func (*DeleteCourseRequest) ProtoMessage()

func (*DeleteCourseRequest) ProtoReflect added in v0.6.8

func (x *DeleteCourseRequest) ProtoReflect() protoreflect.Message

func (*DeleteCourseRequest) Reset

func (x *DeleteCourseRequest) Reset()

func (*DeleteCourseRequest) String

func (x *DeleteCourseRequest) String() string

type DeleteCourseResponse

type DeleteCourseResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteCourseResponse) Descriptor deprecated

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

Deprecated: Use DeleteCourseResponse.ProtoReflect.Descriptor instead.

func (*DeleteCourseResponse) GetStatus

func (x *DeleteCourseResponse) GetStatus() *ResponseStatus

func (*DeleteCourseResponse) ProtoMessage

func (*DeleteCourseResponse) ProtoMessage()

func (*DeleteCourseResponse) ProtoReflect added in v0.6.8

func (x *DeleteCourseResponse) ProtoReflect() protoreflect.Message

func (*DeleteCourseResponse) Reset

func (x *DeleteCourseResponse) Reset()

func (*DeleteCourseResponse) String

func (x *DeleteCourseResponse) String() string

type DeleteDisciplineRequest

type DeleteDisciplineRequest struct {
	WillDeleteUUID string `protobuf:"bytes,1,opt,name=WillDeleteUUID,proto3" json:"WillDeleteUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteDisciplineRequest) Descriptor deprecated

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

Deprecated: Use DeleteDisciplineRequest.ProtoReflect.Descriptor instead.

func (*DeleteDisciplineRequest) GetAuthToken

func (x *DeleteDisciplineRequest) GetAuthToken() string

func (*DeleteDisciplineRequest) GetWillDeleteUUID

func (x *DeleteDisciplineRequest) GetWillDeleteUUID() string

func (*DeleteDisciplineRequest) ProtoMessage

func (*DeleteDisciplineRequest) ProtoMessage()

func (*DeleteDisciplineRequest) ProtoReflect added in v0.6.8

func (x *DeleteDisciplineRequest) ProtoReflect() protoreflect.Message

func (*DeleteDisciplineRequest) Reset

func (x *DeleteDisciplineRequest) Reset()

func (*DeleteDisciplineRequest) String

func (x *DeleteDisciplineRequest) String() string

type DeleteDisciplineResponse

type DeleteDisciplineResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteDisciplineResponse) Descriptor deprecated

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

Deprecated: Use DeleteDisciplineResponse.ProtoReflect.Descriptor instead.

func (*DeleteDisciplineResponse) GetStatus

func (x *DeleteDisciplineResponse) GetStatus() *ResponseStatus

func (*DeleteDisciplineResponse) ProtoMessage

func (*DeleteDisciplineResponse) ProtoMessage()

func (*DeleteDisciplineResponse) ProtoReflect added in v0.6.8

func (x *DeleteDisciplineResponse) ProtoReflect() protoreflect.Message

func (*DeleteDisciplineResponse) Reset

func (x *DeleteDisciplineResponse) Reset()

func (*DeleteDisciplineResponse) String

func (x *DeleteDisciplineResponse) String() string

type DeleteKnowledgePointRequest added in v0.6.8

type DeleteKnowledgePointRequest struct {
	UUID      string `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	AuthToken string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteKnowledgePointRequest) Descriptor deprecated added in v0.6.8

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

Deprecated: Use DeleteKnowledgePointRequest.ProtoReflect.Descriptor instead.

func (*DeleteKnowledgePointRequest) GetAuthToken added in v0.6.8

func (x *DeleteKnowledgePointRequest) GetAuthToken() string

func (*DeleteKnowledgePointRequest) GetUUID added in v0.6.8

func (x *DeleteKnowledgePointRequest) GetUUID() string

func (*DeleteKnowledgePointRequest) ProtoMessage added in v0.6.8

func (*DeleteKnowledgePointRequest) ProtoMessage()

func (*DeleteKnowledgePointRequest) ProtoReflect added in v0.6.8

func (*DeleteKnowledgePointRequest) Reset added in v0.6.8

func (x *DeleteKnowledgePointRequest) Reset()

func (*DeleteKnowledgePointRequest) String added in v0.6.8

func (x *DeleteKnowledgePointRequest) String() string

type DeleteKnowledgePointResponse added in v0.6.8

type DeleteKnowledgePointResponse struct {
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteKnowledgePointResponse) Descriptor deprecated added in v0.6.8

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

Deprecated: Use DeleteKnowledgePointResponse.ProtoReflect.Descriptor instead.

func (*DeleteKnowledgePointResponse) GetStatus added in v0.6.8

func (*DeleteKnowledgePointResponse) ProtoMessage added in v0.6.8

func (*DeleteKnowledgePointResponse) ProtoMessage()

func (*DeleteKnowledgePointResponse) ProtoReflect added in v0.6.8

func (*DeleteKnowledgePointResponse) Reset added in v0.6.8

func (x *DeleteKnowledgePointResponse) Reset()

func (*DeleteKnowledgePointResponse) String added in v0.6.8

type DeleteQuestionBankRequest

type DeleteQuestionBankRequest struct {
	WillDeleteUUID string `protobuf:"bytes,1,opt,name=WillDeleteUUID,proto3" json:"WillDeleteUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteQuestionBankRequest) Descriptor deprecated

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

Deprecated: Use DeleteQuestionBankRequest.ProtoReflect.Descriptor instead.

func (*DeleteQuestionBankRequest) GetAuthToken

func (x *DeleteQuestionBankRequest) GetAuthToken() string

func (*DeleteQuestionBankRequest) GetWillDeleteUUID

func (x *DeleteQuestionBankRequest) GetWillDeleteUUID() string

func (*DeleteQuestionBankRequest) ProtoMessage

func (*DeleteQuestionBankRequest) ProtoMessage()

func (*DeleteQuestionBankRequest) ProtoReflect added in v0.6.8

func (*DeleteQuestionBankRequest) Reset

func (x *DeleteQuestionBankRequest) Reset()

func (*DeleteQuestionBankRequest) String

func (x *DeleteQuestionBankRequest) String() string

type DeleteQuestionBankResponse

type DeleteQuestionBankResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteQuestionBankResponse) Descriptor deprecated

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

Deprecated: Use DeleteQuestionBankResponse.ProtoReflect.Descriptor instead.

func (*DeleteQuestionBankResponse) GetStatus

func (*DeleteQuestionBankResponse) ProtoMessage

func (*DeleteQuestionBankResponse) ProtoMessage()

func (*DeleteQuestionBankResponse) ProtoReflect added in v0.6.8

func (*DeleteQuestionBankResponse) Reset

func (x *DeleteQuestionBankResponse) Reset()

func (*DeleteQuestionBankResponse) String

func (x *DeleteQuestionBankResponse) String() string

type DeleteQuestionRequest

type DeleteQuestionRequest struct {
	WillDeleteUUID string `protobuf:"bytes,1,opt,name=WillDeleteUUID,proto3" json:"WillDeleteUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteQuestionRequest) Descriptor deprecated

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

Deprecated: Use DeleteQuestionRequest.ProtoReflect.Descriptor instead.

func (*DeleteQuestionRequest) GetAuthToken

func (x *DeleteQuestionRequest) GetAuthToken() string

func (*DeleteQuestionRequest) GetWillDeleteUUID

func (x *DeleteQuestionRequest) GetWillDeleteUUID() string

func (*DeleteQuestionRequest) ProtoMessage

func (*DeleteQuestionRequest) ProtoMessage()

func (*DeleteQuestionRequest) ProtoReflect added in v0.6.8

func (x *DeleteQuestionRequest) ProtoReflect() protoreflect.Message

func (*DeleteQuestionRequest) Reset

func (x *DeleteQuestionRequest) Reset()

func (*DeleteQuestionRequest) String

func (x *DeleteQuestionRequest) String() string

type DeleteQuestionResponse

type DeleteQuestionResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteQuestionResponse) Descriptor deprecated

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

Deprecated: Use DeleteQuestionResponse.ProtoReflect.Descriptor instead.

func (*DeleteQuestionResponse) GetStatus

func (x *DeleteQuestionResponse) GetStatus() *ResponseStatus

func (*DeleteQuestionResponse) ProtoMessage

func (*DeleteQuestionResponse) ProtoMessage()

func (*DeleteQuestionResponse) ProtoReflect added in v0.6.8

func (x *DeleteQuestionResponse) ProtoReflect() protoreflect.Message

func (*DeleteQuestionResponse) Reset

func (x *DeleteQuestionResponse) Reset()

func (*DeleteQuestionResponse) String

func (x *DeleteQuestionResponse) String() string

type DeleteUserRequest

type DeleteUserRequest struct {
	WillChangeAccountID int32  `protobuf:"varint,1,opt,name=WillChangeAccountID,proto3" json:"WillChangeAccountID,omitempty"`
	AuthToken           string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteUserRequest) Descriptor deprecated

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

Deprecated: Use DeleteUserRequest.ProtoReflect.Descriptor instead.

func (*DeleteUserRequest) GetAuthToken

func (x *DeleteUserRequest) GetAuthToken() string

func (*DeleteUserRequest) GetWillChangeAccountID added in v0.6.5

func (x *DeleteUserRequest) GetWillChangeAccountID() int32

func (*DeleteUserRequest) ProtoMessage

func (*DeleteUserRequest) ProtoMessage()

func (*DeleteUserRequest) ProtoReflect added in v0.6.8

func (x *DeleteUserRequest) ProtoReflect() protoreflect.Message

func (*DeleteUserRequest) Reset

func (x *DeleteUserRequest) Reset()

func (*DeleteUserRequest) String

func (x *DeleteUserRequest) String() string

type DeleteUserResponse

type DeleteUserResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteUserResponse) Descriptor deprecated

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

Deprecated: Use DeleteUserResponse.ProtoReflect.Descriptor instead.

func (*DeleteUserResponse) GetStatus

func (x *DeleteUserResponse) GetStatus() *ResponseStatus

func (*DeleteUserResponse) ProtoMessage

func (*DeleteUserResponse) ProtoMessage()

func (*DeleteUserResponse) ProtoReflect added in v0.6.8

func (x *DeleteUserResponse) ProtoReflect() protoreflect.Message

func (*DeleteUserResponse) Reset

func (x *DeleteUserResponse) Reset()

func (*DeleteUserResponse) String

func (x *DeleteUserResponse) String() string

type DisciplineStructServiceClient

DisciplineStructServiceClient is the client API for DisciplineStructService service.

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

type GetChapterRequest

type GetChapterRequest struct {
	ChapterUUID string `protobuf:"bytes,1,opt,name=ChapterUUID,proto3" json:"ChapterUUID,omitempty"`
	AuthToken   string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetChapterRequest) Descriptor deprecated

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

Deprecated: Use GetChapterRequest.ProtoReflect.Descriptor instead.

func (*GetChapterRequest) GetAuthToken

func (x *GetChapterRequest) GetAuthToken() string

func (*GetChapterRequest) GetChapterUUID

func (x *GetChapterRequest) GetChapterUUID() string

func (*GetChapterRequest) ProtoMessage

func (*GetChapterRequest) ProtoMessage()

func (*GetChapterRequest) ProtoReflect added in v0.6.8

func (x *GetChapterRequest) ProtoReflect() protoreflect.Message

func (*GetChapterRequest) Reset

func (x *GetChapterRequest) Reset()

func (*GetChapterRequest) String

func (x *GetChapterRequest) String() string

type GetChapterResponse

type GetChapterResponse struct {
	Name        string          `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string          `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID []string        `protobuf:"bytes,3,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	Index       int32           `protobuf:"varint,4,opt,name=Index,proto3" json:"Index,omitempty"`
	Status      *ResponseStatus `protobuf:"bytes,5,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetChapterResponse) Descriptor deprecated

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

Deprecated: Use GetChapterResponse.ProtoReflect.Descriptor instead.

func (*GetChapterResponse) GetDescription

func (x *GetChapterResponse) GetDescription() string

func (*GetChapterResponse) GetIndex added in v0.4.5

func (x *GetChapterResponse) GetIndex() int32

func (*GetChapterResponse) GetManagerUUID

func (x *GetChapterResponse) GetManagerUUID() []string

func (*GetChapterResponse) GetName

func (x *GetChapterResponse) GetName() string

func (*GetChapterResponse) GetStatus

func (x *GetChapterResponse) GetStatus() *ResponseStatus

func (*GetChapterResponse) ProtoMessage

func (*GetChapterResponse) ProtoMessage()

func (*GetChapterResponse) ProtoReflect added in v0.6.8

func (x *GetChapterResponse) ProtoReflect() protoreflect.Message

func (*GetChapterResponse) Reset

func (x *GetChapterResponse) Reset()

func (*GetChapterResponse) String

func (x *GetChapterResponse) String() string

type GetClassRequest

type GetClassRequest struct {
	ClassUUID string `protobuf:"bytes,1,opt,name=ClassUUID,proto3" json:"ClassUUID,omitempty"`
	AuthToken string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetClassRequest) Descriptor deprecated

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

Deprecated: Use GetClassRequest.ProtoReflect.Descriptor instead.

func (*GetClassRequest) GetAuthToken

func (x *GetClassRequest) GetAuthToken() string

func (*GetClassRequest) GetClassUUID

func (x *GetClassRequest) GetClassUUID() string

func (*GetClassRequest) ProtoMessage

func (*GetClassRequest) ProtoMessage()

func (*GetClassRequest) ProtoReflect added in v0.6.8

func (x *GetClassRequest) ProtoReflect() protoreflect.Message

func (*GetClassRequest) Reset

func (x *GetClassRequest) Reset()

func (*GetClassRequest) String

func (x *GetClassRequest) String() string

type GetClassResponse

type GetClassResponse struct {
	Name           string          `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description    string          `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	CollegeUUID    string          `protobuf:"bytes,3,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	DisciplineUUID string          `protobuf:"bytes,4,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	ManagerUUID    []string        `protobuf:"bytes,5,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	Status         *ResponseStatus `protobuf:"bytes,6,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetClassResponse) Descriptor deprecated

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

Deprecated: Use GetClassResponse.ProtoReflect.Descriptor instead.

func (*GetClassResponse) GetCollegeUUID

func (x *GetClassResponse) GetCollegeUUID() string

func (*GetClassResponse) GetDescription

func (x *GetClassResponse) GetDescription() string

func (*GetClassResponse) GetDisciplineUUID

func (x *GetClassResponse) GetDisciplineUUID() string

func (*GetClassResponse) GetManagerUUID

func (x *GetClassResponse) GetManagerUUID() []string

func (*GetClassResponse) GetName

func (x *GetClassResponse) GetName() string

func (*GetClassResponse) GetStatus

func (x *GetClassResponse) GetStatus() *ResponseStatus

func (*GetClassResponse) ProtoMessage

func (*GetClassResponse) ProtoMessage()

func (*GetClassResponse) ProtoReflect added in v0.6.8

func (x *GetClassResponse) ProtoReflect() protoreflect.Message

func (*GetClassResponse) Reset

func (x *GetClassResponse) Reset()

func (*GetClassResponse) String

func (x *GetClassResponse) String() string

type GetCollegeRequest

type GetCollegeRequest struct {
	CollegeUUID string `protobuf:"bytes,1,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	AuthToken   string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCollegeRequest) Descriptor deprecated

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

Deprecated: Use GetCollegeRequest.ProtoReflect.Descriptor instead.

func (*GetCollegeRequest) GetAuthToken

func (x *GetCollegeRequest) GetAuthToken() string

func (*GetCollegeRequest) GetCollegeUUID

func (x *GetCollegeRequest) GetCollegeUUID() string

func (*GetCollegeRequest) ProtoMessage

func (*GetCollegeRequest) ProtoMessage()

func (*GetCollegeRequest) ProtoReflect added in v0.6.8

func (x *GetCollegeRequest) ProtoReflect() protoreflect.Message

func (*GetCollegeRequest) Reset

func (x *GetCollegeRequest) Reset()

func (*GetCollegeRequest) String

func (x *GetCollegeRequest) String() string

type GetCollegeResponse

type GetCollegeResponse struct {
	Name        string          `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string          `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID []string        `protobuf:"bytes,3,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	Status      *ResponseStatus `protobuf:"bytes,4,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCollegeResponse) Descriptor deprecated

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

Deprecated: Use GetCollegeResponse.ProtoReflect.Descriptor instead.

func (*GetCollegeResponse) GetDescription

func (x *GetCollegeResponse) GetDescription() string

func (*GetCollegeResponse) GetManagerUUID

func (x *GetCollegeResponse) GetManagerUUID() []string

func (*GetCollegeResponse) GetName

func (x *GetCollegeResponse) GetName() string

func (*GetCollegeResponse) GetStatus

func (x *GetCollegeResponse) GetStatus() *ResponseStatus

func (*GetCollegeResponse) ProtoMessage

func (*GetCollegeResponse) ProtoMessage()

func (*GetCollegeResponse) ProtoReflect added in v0.6.8

func (x *GetCollegeResponse) ProtoReflect() protoreflect.Message

func (*GetCollegeResponse) Reset

func (x *GetCollegeResponse) Reset()

func (*GetCollegeResponse) String

func (x *GetCollegeResponse) String() string

type GetContentRequest

type GetContentRequest struct {
	ChapterUUID string `protobuf:"bytes,1,opt,name=ChapterUUID,proto3" json:"ChapterUUID,omitempty"`
	AuthToken   string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetContentRequest) Descriptor deprecated

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

Deprecated: Use GetContentRequest.ProtoReflect.Descriptor instead.

func (*GetContentRequest) GetAuthToken

func (x *GetContentRequest) GetAuthToken() string

func (*GetContentRequest) GetChapterUUID

func (x *GetContentRequest) GetChapterUUID() string

func (*GetContentRequest) ProtoMessage

func (*GetContentRequest) ProtoMessage()

func (*GetContentRequest) ProtoReflect added in v0.6.8

func (x *GetContentRequest) ProtoReflect() protoreflect.Message

func (*GetContentRequest) Reset

func (x *GetContentRequest) Reset()

func (*GetContentRequest) String

func (x *GetContentRequest) String() string

type GetContentResponse

type GetContentResponse struct {
	MarkdownBase64 string          `protobuf:"bytes,1,opt,name=MarkdownBase64,proto3" json:"MarkdownBase64,omitempty"`
	LastChange     int64           `protobuf:"varint,2,opt,name=LastChange,proto3" json:"LastChange,omitempty"`
	Status         *ResponseStatus `protobuf:"bytes,3,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetContentResponse) Descriptor deprecated

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

Deprecated: Use GetContentResponse.ProtoReflect.Descriptor instead.

func (*GetContentResponse) GetLastChange

func (x *GetContentResponse) GetLastChange() int64

func (*GetContentResponse) GetMarkdownBase64

func (x *GetContentResponse) GetMarkdownBase64() string

func (*GetContentResponse) GetStatus

func (x *GetContentResponse) GetStatus() *ResponseStatus

func (*GetContentResponse) ProtoMessage

func (*GetContentResponse) ProtoMessage()

func (*GetContentResponse) ProtoReflect added in v0.6.8

func (x *GetContentResponse) ProtoReflect() protoreflect.Message

func (*GetContentResponse) Reset

func (x *GetContentResponse) Reset()

func (*GetContentResponse) String

func (x *GetContentResponse) String() string

type GetCourseRequest

type GetCourseRequest struct {
	CourseUUID string `protobuf:"bytes,1,opt,name=CourseUUID,proto3" json:"CourseUUID,omitempty"`
	AuthToken  string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCourseRequest) Descriptor deprecated

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

Deprecated: Use GetCourseRequest.ProtoReflect.Descriptor instead.

func (*GetCourseRequest) GetAuthToken

func (x *GetCourseRequest) GetAuthToken() string

func (*GetCourseRequest) GetCourseUUID

func (x *GetCourseRequest) GetCourseUUID() string

func (*GetCourseRequest) ProtoMessage

func (*GetCourseRequest) ProtoMessage()

func (*GetCourseRequest) ProtoReflect added in v0.6.8

func (x *GetCourseRequest) ProtoReflect() protoreflect.Message

func (*GetCourseRequest) Reset

func (x *GetCourseRequest) Reset()

func (*GetCourseRequest) String

func (x *GetCourseRequest) String() string

type GetCourseResponse

type GetCourseResponse struct {
	Name           string          `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description    string          `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID    []string        `protobuf:"bytes,3,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	CollegeUUID    string          `protobuf:"bytes,4,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	DisciplineUUID string          `protobuf:"bytes,5,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	Status         *ResponseStatus `protobuf:"bytes,6,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCourseResponse) Descriptor deprecated

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

Deprecated: Use GetCourseResponse.ProtoReflect.Descriptor instead.

func (*GetCourseResponse) GetCollegeUUID

func (x *GetCourseResponse) GetCollegeUUID() string

func (*GetCourseResponse) GetDescription

func (x *GetCourseResponse) GetDescription() string

func (*GetCourseResponse) GetDisciplineUUID

func (x *GetCourseResponse) GetDisciplineUUID() string

func (*GetCourseResponse) GetManagerUUID

func (x *GetCourseResponse) GetManagerUUID() []string

func (*GetCourseResponse) GetName

func (x *GetCourseResponse) GetName() string

func (*GetCourseResponse) GetStatus

func (x *GetCourseResponse) GetStatus() *ResponseStatus

func (*GetCourseResponse) ProtoMessage

func (*GetCourseResponse) ProtoMessage()

func (*GetCourseResponse) ProtoReflect added in v0.6.8

func (x *GetCourseResponse) ProtoReflect() protoreflect.Message

func (*GetCourseResponse) Reset

func (x *GetCourseResponse) Reset()

func (*GetCourseResponse) String

func (x *GetCourseResponse) String() string

type GetDisciplineRequest

type GetDisciplineRequest struct {
	DisciplineUUID string `protobuf:"bytes,1,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDisciplineRequest) Descriptor deprecated

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

Deprecated: Use GetDisciplineRequest.ProtoReflect.Descriptor instead.

func (*GetDisciplineRequest) GetAuthToken

func (x *GetDisciplineRequest) GetAuthToken() string

func (*GetDisciplineRequest) GetDisciplineUUID

func (x *GetDisciplineRequest) GetDisciplineUUID() string

func (*GetDisciplineRequest) ProtoMessage

func (*GetDisciplineRequest) ProtoMessage()

func (*GetDisciplineRequest) ProtoReflect added in v0.6.8

func (x *GetDisciplineRequest) ProtoReflect() protoreflect.Message

func (*GetDisciplineRequest) Reset

func (x *GetDisciplineRequest) Reset()

func (*GetDisciplineRequest) String

func (x *GetDisciplineRequest) String() string

type GetDisciplineResponse

type GetDisciplineResponse struct {
	Name        string          `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string          `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	CollegeUUID string          `protobuf:"bytes,3,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	ManagerUUID []string        `protobuf:"bytes,4,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	Status      *ResponseStatus `protobuf:"bytes,5,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDisciplineResponse) Descriptor deprecated

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

Deprecated: Use GetDisciplineResponse.ProtoReflect.Descriptor instead.

func (*GetDisciplineResponse) GetCollegeUUID

func (x *GetDisciplineResponse) GetCollegeUUID() string

func (*GetDisciplineResponse) GetDescription

func (x *GetDisciplineResponse) GetDescription() string

func (*GetDisciplineResponse) GetManagerUUID

func (x *GetDisciplineResponse) GetManagerUUID() []string

func (*GetDisciplineResponse) GetName

func (x *GetDisciplineResponse) GetName() string

func (*GetDisciplineResponse) GetStatus

func (x *GetDisciplineResponse) GetStatus() *ResponseStatus

func (*GetDisciplineResponse) ProtoMessage

func (*GetDisciplineResponse) ProtoMessage()

func (*GetDisciplineResponse) ProtoReflect added in v0.6.8

func (x *GetDisciplineResponse) ProtoReflect() protoreflect.Message

func (*GetDisciplineResponse) Reset

func (x *GetDisciplineResponse) Reset()

func (*GetDisciplineResponse) String

func (x *GetDisciplineResponse) String() string

type GetQuestionBankRequest

type GetQuestionBankRequest struct {
	QuestionBankUUID string `protobuf:"bytes,1,opt,name=QuestionBankUUID,proto3" json:"QuestionBankUUID,omitempty"`
	AuthToken        string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetQuestionBankRequest) Descriptor deprecated

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

Deprecated: Use GetQuestionBankRequest.ProtoReflect.Descriptor instead.

func (*GetQuestionBankRequest) GetAuthToken

func (x *GetQuestionBankRequest) GetAuthToken() string

func (*GetQuestionBankRequest) GetQuestionBankUUID

func (x *GetQuestionBankRequest) GetQuestionBankUUID() string

func (*GetQuestionBankRequest) ProtoMessage

func (*GetQuestionBankRequest) ProtoMessage()

func (*GetQuestionBankRequest) ProtoReflect added in v0.6.8

func (x *GetQuestionBankRequest) ProtoReflect() protoreflect.Message

func (*GetQuestionBankRequest) Reset

func (x *GetQuestionBankRequest) Reset()

func (*GetQuestionBankRequest) String

func (x *GetQuestionBankRequest) String() string

type GetQuestionBankResponse

type GetQuestionBankResponse struct {
	Name        string          `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string          `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	Managers    []string        `protobuf:"bytes,3,rep,name=Managers,proto3" json:"Managers,omitempty"`
	Status      *ResponseStatus `protobuf:"bytes,4,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetQuestionBankResponse) Descriptor deprecated

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

Deprecated: Use GetQuestionBankResponse.ProtoReflect.Descriptor instead.

func (*GetQuestionBankResponse) GetDescription

func (x *GetQuestionBankResponse) GetDescription() string

func (*GetQuestionBankResponse) GetManagers

func (x *GetQuestionBankResponse) GetManagers() []string

func (*GetQuestionBankResponse) GetName

func (x *GetQuestionBankResponse) GetName() string

func (*GetQuestionBankResponse) GetStatus

func (x *GetQuestionBankResponse) GetStatus() *ResponseStatus

func (*GetQuestionBankResponse) ProtoMessage

func (*GetQuestionBankResponse) ProtoMessage()

func (*GetQuestionBankResponse) ProtoReflect added in v0.6.8

func (x *GetQuestionBankResponse) ProtoReflect() protoreflect.Message

func (*GetQuestionBankResponse) Reset

func (x *GetQuestionBankResponse) Reset()

func (*GetQuestionBankResponse) String

func (x *GetQuestionBankResponse) String() string

type GetQuestionRequest

type GetQuestionRequest struct {
	QuestionUUID string `protobuf:"bytes,1,opt,name=QuestionUUID,proto3" json:"QuestionUUID,omitempty"`
	AuthToken    string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetQuestionRequest) Descriptor deprecated

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

Deprecated: Use GetQuestionRequest.ProtoReflect.Descriptor instead.

func (*GetQuestionRequest) GetAuthToken

func (x *GetQuestionRequest) GetAuthToken() string

func (*GetQuestionRequest) GetQuestionUUID

func (x *GetQuestionRequest) GetQuestionUUID() string

func (*GetQuestionRequest) ProtoMessage

func (*GetQuestionRequest) ProtoMessage()

func (*GetQuestionRequest) ProtoReflect added in v0.6.8

func (x *GetQuestionRequest) ProtoReflect() protoreflect.Message

func (*GetQuestionRequest) Reset

func (x *GetQuestionRequest) Reset()

func (*GetQuestionRequest) String

func (x *GetQuestionRequest) String() string

type GetQuestionResponse

type GetQuestionResponse struct {
	Question *QuestionInfoUnit `protobuf:"bytes,1,opt,name=Question,proto3" json:"Question,omitempty"`
	Status   *ResponseStatus   `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetQuestionResponse) Descriptor deprecated

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

Deprecated: Use GetQuestionResponse.ProtoReflect.Descriptor instead.

func (*GetQuestionResponse) GetQuestion

func (x *GetQuestionResponse) GetQuestion() *QuestionInfoUnit

func (*GetQuestionResponse) GetStatus

func (x *GetQuestionResponse) GetStatus() *ResponseStatus

func (*GetQuestionResponse) ProtoMessage

func (*GetQuestionResponse) ProtoMessage()

func (*GetQuestionResponse) ProtoReflect added in v0.6.8

func (x *GetQuestionResponse) ProtoReflect() protoreflect.Message

func (*GetQuestionResponse) Reset

func (x *GetQuestionResponse) Reset()

func (*GetQuestionResponse) String

func (x *GetQuestionResponse) String() string

type GetUserUUIDRequest added in v0.6.6

type GetUserUUIDRequest struct {
	WillGetAccount int32  `protobuf:"varint,1,opt,name=WillGetAccount,proto3" json:"WillGetAccount,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserUUIDRequest) Descriptor deprecated added in v0.6.6

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

Deprecated: Use GetUserUUIDRequest.ProtoReflect.Descriptor instead.

func (*GetUserUUIDRequest) GetAuthToken added in v0.6.6

func (x *GetUserUUIDRequest) GetAuthToken() string

func (*GetUserUUIDRequest) GetWillGetAccount added in v0.6.6

func (x *GetUserUUIDRequest) GetWillGetAccount() int32

func (*GetUserUUIDRequest) ProtoMessage added in v0.6.6

func (*GetUserUUIDRequest) ProtoMessage()

func (*GetUserUUIDRequest) ProtoReflect added in v0.6.8

func (x *GetUserUUIDRequest) ProtoReflect() protoreflect.Message

func (*GetUserUUIDRequest) Reset added in v0.6.6

func (x *GetUserUUIDRequest) Reset()

func (*GetUserUUIDRequest) String added in v0.6.6

func (x *GetUserUUIDRequest) String() string

type GetUserUUIDResponse added in v0.6.6

type GetUserUUIDResponse struct {
	UUID   string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserUUIDResponse) Descriptor deprecated added in v0.6.6

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

Deprecated: Use GetUserUUIDResponse.ProtoReflect.Descriptor instead.

func (*GetUserUUIDResponse) GetStatus added in v0.6.6

func (x *GetUserUUIDResponse) GetStatus() *ResponseStatus

func (*GetUserUUIDResponse) GetUUID added in v0.6.6

func (x *GetUserUUIDResponse) GetUUID() string

func (*GetUserUUIDResponse) ProtoMessage added in v0.6.6

func (*GetUserUUIDResponse) ProtoMessage()

func (*GetUserUUIDResponse) ProtoReflect added in v0.6.8

func (x *GetUserUUIDResponse) ProtoReflect() protoreflect.Message

func (*GetUserUUIDResponse) Reset added in v0.6.6

func (x *GetUserUUIDResponse) Reset()

func (*GetUserUUIDResponse) String added in v0.6.6

func (x *GetUserUUIDResponse) String() string

type KnowledgePoint added in v0.6.8

type KnowledgePoint struct {
	UUID       string `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Name       string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	ParentUUID string `protobuf:"bytes,3,opt,name=ParentUUID,proto3" json:"ParentUUID,omitempty"`
	// contains filtered or unexported fields
}

func (*KnowledgePoint) Descriptor deprecated added in v0.6.8

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

Deprecated: Use KnowledgePoint.ProtoReflect.Descriptor instead.

func (*KnowledgePoint) GetName added in v0.6.8

func (x *KnowledgePoint) GetName() string

func (*KnowledgePoint) GetParentUUID added in v0.6.8

func (x *KnowledgePoint) GetParentUUID() string

func (*KnowledgePoint) GetUUID added in v0.6.8

func (x *KnowledgePoint) GetUUID() string

func (*KnowledgePoint) ProtoMessage added in v0.6.8

func (*KnowledgePoint) ProtoMessage()

func (*KnowledgePoint) ProtoReflect added in v0.6.8

func (x *KnowledgePoint) ProtoReflect() protoreflect.Message

func (*KnowledgePoint) Reset added in v0.6.8

func (x *KnowledgePoint) Reset()

func (*KnowledgePoint) String added in v0.6.8

func (x *KnowledgePoint) String() string

type KnowledgePointServiceClient added in v0.6.8

type KnowledgePointServiceClient interface {
	ListKnowledgePoint(ctx context.Context, in *ListKnowledgePointRequest, opts ...grpc.CallOption) (*ListKnowledgePointResponse, error)
	CreateKnowledgePoint(ctx context.Context, in *CreateKnowledgePointRequest, opts ...grpc.CallOption) (*CreateKnowledgePointResponse, error)
	DeleteKnowledgePoint(ctx context.Context, in *DeleteKnowledgePointRequest, opts ...grpc.CallOption) (*DeleteKnowledgePointResponse, error)
	UpdateKnowledgePoint(ctx context.Context, in *UpdateKnowledgePointRequest, opts ...grpc.CallOption) (*UpdateKnowledgePointResponse, error)
}

KnowledgePointServiceClient is the client API for KnowledgePointService service.

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

func NewKnowledgePointServiceClient added in v0.6.8

func NewKnowledgePointServiceClient(cc grpc.ClientConnInterface) KnowledgePointServiceClient

type KnowledgePointServiceServer added in v0.6.8

KnowledgePointServiceServer is the server API for KnowledgePointService service.

type ListChapterRequest

type ListChapterRequest struct {
	CourseUUID string `protobuf:"bytes,1,opt,name=CourseUUID,proto3" json:"CourseUUID,omitempty"`
	AuthToken  string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListChapterRequest) Descriptor deprecated

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

Deprecated: Use ListChapterRequest.ProtoReflect.Descriptor instead.

func (*ListChapterRequest) GetAuthToken

func (x *ListChapterRequest) GetAuthToken() string

func (*ListChapterRequest) GetCourseUUID

func (x *ListChapterRequest) GetCourseUUID() string

func (*ListChapterRequest) ProtoMessage

func (*ListChapterRequest) ProtoMessage()

func (*ListChapterRequest) ProtoReflect added in v0.6.8

func (x *ListChapterRequest) ProtoReflect() protoreflect.Message

func (*ListChapterRequest) Reset

func (x *ListChapterRequest) Reset()

func (*ListChapterRequest) String

func (x *ListChapterRequest) String() string

type ListChapterResponse

type ListChapterResponse struct {
	Chapter []*ListChapterResponseUnit `protobuf:"bytes,1,rep,name=Chapter,proto3" json:"Chapter,omitempty"`
	Status  *ResponseStatus            `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListChapterResponse) Descriptor deprecated

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

Deprecated: Use ListChapterResponse.ProtoReflect.Descriptor instead.

func (*ListChapterResponse) GetChapter

func (x *ListChapterResponse) GetChapter() []*ListChapterResponseUnit

func (*ListChapterResponse) GetStatus

func (x *ListChapterResponse) GetStatus() *ResponseStatus

func (*ListChapterResponse) ProtoMessage

func (*ListChapterResponse) ProtoMessage()

func (*ListChapterResponse) ProtoReflect added in v0.6.8

func (x *ListChapterResponse) ProtoReflect() protoreflect.Message

func (*ListChapterResponse) Reset

func (x *ListChapterResponse) Reset()

func (*ListChapterResponse) String

func (x *ListChapterResponse) String() string

type ListChapterResponseUnit

type ListChapterResponseUnit struct {
	UUID        string   `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Name        string   `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string   `protobuf:"bytes,3,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID []string `protobuf:"bytes,4,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	Index       int32    `protobuf:"varint,5,opt,name=Index,proto3" json:"Index,omitempty"`
	// contains filtered or unexported fields
}

func (*ListChapterResponseUnit) Descriptor deprecated

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

Deprecated: Use ListChapterResponseUnit.ProtoReflect.Descriptor instead.

func (*ListChapterResponseUnit) GetDescription

func (x *ListChapterResponseUnit) GetDescription() string

func (*ListChapterResponseUnit) GetIndex added in v0.4.5

func (x *ListChapterResponseUnit) GetIndex() int32

func (*ListChapterResponseUnit) GetManagerUUID

func (x *ListChapterResponseUnit) GetManagerUUID() []string

func (*ListChapterResponseUnit) GetName

func (x *ListChapterResponseUnit) GetName() string

func (*ListChapterResponseUnit) GetUUID

func (x *ListChapterResponseUnit) GetUUID() string

func (*ListChapterResponseUnit) ProtoMessage

func (*ListChapterResponseUnit) ProtoMessage()

func (*ListChapterResponseUnit) ProtoReflect added in v0.6.8

func (x *ListChapterResponseUnit) ProtoReflect() protoreflect.Message

func (*ListChapterResponseUnit) Reset

func (x *ListChapterResponseUnit) Reset()

func (*ListChapterResponseUnit) String

func (x *ListChapterResponseUnit) String() string

type ListClassRequest

type ListClassRequest struct {
	AuthToken string `protobuf:"bytes,1,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListClassRequest) Descriptor deprecated

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

Deprecated: Use ListClassRequest.ProtoReflect.Descriptor instead.

func (*ListClassRequest) GetAuthToken

func (x *ListClassRequest) GetAuthToken() string

func (*ListClassRequest) ProtoMessage

func (*ListClassRequest) ProtoMessage()

func (*ListClassRequest) ProtoReflect added in v0.6.8

func (x *ListClassRequest) ProtoReflect() protoreflect.Message

func (*ListClassRequest) Reset

func (x *ListClassRequest) Reset()

func (*ListClassRequest) String

func (x *ListClassRequest) String() string

type ListClassResponse

type ListClassResponse struct {
	Class  []*ListClassResponseUnit `protobuf:"bytes,1,rep,name=Class,proto3" json:"Class,omitempty"`
	Status *ResponseStatus          `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListClassResponse) Descriptor deprecated

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

Deprecated: Use ListClassResponse.ProtoReflect.Descriptor instead.

func (*ListClassResponse) GetClass

func (x *ListClassResponse) GetClass() []*ListClassResponseUnit

func (*ListClassResponse) GetStatus

func (x *ListClassResponse) GetStatus() *ResponseStatus

func (*ListClassResponse) ProtoMessage

func (*ListClassResponse) ProtoMessage()

func (*ListClassResponse) ProtoReflect added in v0.6.8

func (x *ListClassResponse) ProtoReflect() protoreflect.Message

func (*ListClassResponse) Reset

func (x *ListClassResponse) Reset()

func (*ListClassResponse) String

func (x *ListClassResponse) String() string

type ListClassResponseUnit

type ListClassResponseUnit struct {
	UUID           string   `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Name           string   `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	Description    string   `protobuf:"bytes,3,opt,name=Description,proto3" json:"Description,omitempty"`
	CollegeUUID    string   `protobuf:"bytes,4,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	DisciplineUUID string   `protobuf:"bytes,5,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	ManagerUUID    []string `protobuf:"bytes,6,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	// contains filtered or unexported fields
}

func (*ListClassResponseUnit) Descriptor deprecated

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

Deprecated: Use ListClassResponseUnit.ProtoReflect.Descriptor instead.

func (*ListClassResponseUnit) GetCollegeUUID

func (x *ListClassResponseUnit) GetCollegeUUID() string

func (*ListClassResponseUnit) GetDescription

func (x *ListClassResponseUnit) GetDescription() string

func (*ListClassResponseUnit) GetDisciplineUUID

func (x *ListClassResponseUnit) GetDisciplineUUID() string

func (*ListClassResponseUnit) GetManagerUUID

func (x *ListClassResponseUnit) GetManagerUUID() []string

func (*ListClassResponseUnit) GetName

func (x *ListClassResponseUnit) GetName() string

func (*ListClassResponseUnit) GetUUID

func (x *ListClassResponseUnit) GetUUID() string

func (*ListClassResponseUnit) ProtoMessage

func (*ListClassResponseUnit) ProtoMessage()

func (*ListClassResponseUnit) ProtoReflect added in v0.6.8

func (x *ListClassResponseUnit) ProtoReflect() protoreflect.Message

func (*ListClassResponseUnit) Reset

func (x *ListClassResponseUnit) Reset()

func (*ListClassResponseUnit) String

func (x *ListClassResponseUnit) String() string

type ListCollegeClassRequest

type ListCollegeClassRequest struct {
	CollegeUUID string `protobuf:"bytes,1,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	AuthToken   string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCollegeClassRequest) Descriptor deprecated

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

Deprecated: Use ListCollegeClassRequest.ProtoReflect.Descriptor instead.

func (*ListCollegeClassRequest) GetAuthToken

func (x *ListCollegeClassRequest) GetAuthToken() string

func (*ListCollegeClassRequest) GetCollegeUUID

func (x *ListCollegeClassRequest) GetCollegeUUID() string

func (*ListCollegeClassRequest) ProtoMessage

func (*ListCollegeClassRequest) ProtoMessage()

func (*ListCollegeClassRequest) ProtoReflect added in v0.6.8

func (x *ListCollegeClassRequest) ProtoReflect() protoreflect.Message

func (*ListCollegeClassRequest) Reset

func (x *ListCollegeClassRequest) Reset()

func (*ListCollegeClassRequest) String

func (x *ListCollegeClassRequest) String() string

type ListCollegeClassResponse

type ListCollegeClassResponse struct {
	Class  []*ListClassResponseUnit `protobuf:"bytes,1,rep,name=Class,proto3" json:"Class,omitempty"`
	Status *ResponseStatus          `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCollegeClassResponse) Descriptor deprecated

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

Deprecated: Use ListCollegeClassResponse.ProtoReflect.Descriptor instead.

func (*ListCollegeClassResponse) GetClass

func (*ListCollegeClassResponse) GetStatus

func (x *ListCollegeClassResponse) GetStatus() *ResponseStatus

func (*ListCollegeClassResponse) ProtoMessage

func (*ListCollegeClassResponse) ProtoMessage()

func (*ListCollegeClassResponse) ProtoReflect added in v0.6.8

func (x *ListCollegeClassResponse) ProtoReflect() protoreflect.Message

func (*ListCollegeClassResponse) Reset

func (x *ListCollegeClassResponse) Reset()

func (*ListCollegeClassResponse) String

func (x *ListCollegeClassResponse) String() string

type ListCollegeCourseRequest

type ListCollegeCourseRequest struct {
	CollegeUUID string `protobuf:"bytes,1,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	AuthToken   string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCollegeCourseRequest) Descriptor deprecated

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

Deprecated: Use ListCollegeCourseRequest.ProtoReflect.Descriptor instead.

func (*ListCollegeCourseRequest) GetAuthToken

func (x *ListCollegeCourseRequest) GetAuthToken() string

func (*ListCollegeCourseRequest) GetCollegeUUID

func (x *ListCollegeCourseRequest) GetCollegeUUID() string

func (*ListCollegeCourseRequest) ProtoMessage

func (*ListCollegeCourseRequest) ProtoMessage()

func (*ListCollegeCourseRequest) ProtoReflect added in v0.6.8

func (x *ListCollegeCourseRequest) ProtoReflect() protoreflect.Message

func (*ListCollegeCourseRequest) Reset

func (x *ListCollegeCourseRequest) Reset()

func (*ListCollegeCourseRequest) String

func (x *ListCollegeCourseRequest) String() string

type ListCollegeCourseResponse

type ListCollegeCourseResponse struct {
	Course []*ListCourseResponseUnit `protobuf:"bytes,1,rep,name=Course,proto3" json:"Course,omitempty"`
	Status *ResponseStatus           `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCollegeCourseResponse) Descriptor deprecated

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

Deprecated: Use ListCollegeCourseResponse.ProtoReflect.Descriptor instead.

func (*ListCollegeCourseResponse) GetCourse

func (*ListCollegeCourseResponse) GetStatus

func (x *ListCollegeCourseResponse) GetStatus() *ResponseStatus

func (*ListCollegeCourseResponse) ProtoMessage

func (*ListCollegeCourseResponse) ProtoMessage()

func (*ListCollegeCourseResponse) ProtoReflect added in v0.6.8

func (*ListCollegeCourseResponse) Reset

func (x *ListCollegeCourseResponse) Reset()

func (*ListCollegeCourseResponse) String

func (x *ListCollegeCourseResponse) String() string

type ListCollegeDisciplineRequest

type ListCollegeDisciplineRequest struct {
	CollegeUUID string `protobuf:"bytes,1,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	AuthToken   string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCollegeDisciplineRequest) Descriptor deprecated

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

Deprecated: Use ListCollegeDisciplineRequest.ProtoReflect.Descriptor instead.

func (*ListCollegeDisciplineRequest) GetAuthToken

func (x *ListCollegeDisciplineRequest) GetAuthToken() string

func (*ListCollegeDisciplineRequest) GetCollegeUUID

func (x *ListCollegeDisciplineRequest) GetCollegeUUID() string

func (*ListCollegeDisciplineRequest) ProtoMessage

func (*ListCollegeDisciplineRequest) ProtoMessage()

func (*ListCollegeDisciplineRequest) ProtoReflect added in v0.6.8

func (*ListCollegeDisciplineRequest) Reset

func (x *ListCollegeDisciplineRequest) Reset()

func (*ListCollegeDisciplineRequest) String

type ListCollegeDisciplineResponse

type ListCollegeDisciplineResponse struct {
	Disciplines []*ListDisciplineResponseUnit `protobuf:"bytes,1,rep,name=Disciplines,proto3" json:"Disciplines,omitempty"`
	Status      *ResponseStatus               `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCollegeDisciplineResponse) Descriptor deprecated

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

Deprecated: Use ListCollegeDisciplineResponse.ProtoReflect.Descriptor instead.

func (*ListCollegeDisciplineResponse) GetDisciplines

func (*ListCollegeDisciplineResponse) GetStatus

func (*ListCollegeDisciplineResponse) ProtoMessage

func (*ListCollegeDisciplineResponse) ProtoMessage()

func (*ListCollegeDisciplineResponse) ProtoReflect added in v0.6.8

func (*ListCollegeDisciplineResponse) Reset

func (x *ListCollegeDisciplineResponse) Reset()

func (*ListCollegeDisciplineResponse) String

type ListCollegeRequest

type ListCollegeRequest struct {
	AuthToken string `protobuf:"bytes,1,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCollegeRequest) Descriptor deprecated

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

Deprecated: Use ListCollegeRequest.ProtoReflect.Descriptor instead.

func (*ListCollegeRequest) GetAuthToken

func (x *ListCollegeRequest) GetAuthToken() string

func (*ListCollegeRequest) ProtoMessage

func (*ListCollegeRequest) ProtoMessage()

func (*ListCollegeRequest) ProtoReflect added in v0.6.8

func (x *ListCollegeRequest) ProtoReflect() protoreflect.Message

func (*ListCollegeRequest) Reset

func (x *ListCollegeRequest) Reset()

func (*ListCollegeRequest) String

func (x *ListCollegeRequest) String() string

type ListCollegeResponse

type ListCollegeResponse struct {
	Colleges []*ListCollegeResponseUnit `protobuf:"bytes,1,rep,name=Colleges,proto3" json:"Colleges,omitempty"`
	Status   *ResponseStatus            `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCollegeResponse) Descriptor deprecated

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

Deprecated: Use ListCollegeResponse.ProtoReflect.Descriptor instead.

func (*ListCollegeResponse) GetColleges

func (x *ListCollegeResponse) GetColleges() []*ListCollegeResponseUnit

func (*ListCollegeResponse) GetStatus

func (x *ListCollegeResponse) GetStatus() *ResponseStatus

func (*ListCollegeResponse) ProtoMessage

func (*ListCollegeResponse) ProtoMessage()

func (*ListCollegeResponse) ProtoReflect added in v0.6.8

func (x *ListCollegeResponse) ProtoReflect() protoreflect.Message

func (*ListCollegeResponse) Reset

func (x *ListCollegeResponse) Reset()

func (*ListCollegeResponse) String

func (x *ListCollegeResponse) String() string

type ListCollegeResponseUnit

type ListCollegeResponseUnit struct {
	UUID        string   `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Name        string   `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string   `protobuf:"bytes,3,opt,name=Description,proto3" json:"Description,omitempty"`
	ManagerUUID []string `protobuf:"bytes,4,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCollegeResponseUnit) Descriptor deprecated

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

Deprecated: Use ListCollegeResponseUnit.ProtoReflect.Descriptor instead.

func (*ListCollegeResponseUnit) GetDescription

func (x *ListCollegeResponseUnit) GetDescription() string

func (*ListCollegeResponseUnit) GetManagerUUID

func (x *ListCollegeResponseUnit) GetManagerUUID() []string

func (*ListCollegeResponseUnit) GetName

func (x *ListCollegeResponseUnit) GetName() string

func (*ListCollegeResponseUnit) GetUUID

func (x *ListCollegeResponseUnit) GetUUID() string

func (*ListCollegeResponseUnit) ProtoMessage

func (*ListCollegeResponseUnit) ProtoMessage()

func (*ListCollegeResponseUnit) ProtoReflect added in v0.6.8

func (x *ListCollegeResponseUnit) ProtoReflect() protoreflect.Message

func (*ListCollegeResponseUnit) Reset

func (x *ListCollegeResponseUnit) Reset()

func (*ListCollegeResponseUnit) String

func (x *ListCollegeResponseUnit) String() string

type ListCourseResponseUnit

type ListCourseResponseUnit struct {
	UUID           string   `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Name           string   `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	Description    string   `protobuf:"bytes,3,opt,name=Description,proto3" json:"Description,omitempty"`
	CollegeUUID    string   `protobuf:"bytes,4,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	DisciplineUUID string   `protobuf:"bytes,5,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	ManagerUUID    []string `protobuf:"bytes,6,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	// contains filtered or unexported fields
}

func (*ListCourseResponseUnit) Descriptor deprecated

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

Deprecated: Use ListCourseResponseUnit.ProtoReflect.Descriptor instead.

func (*ListCourseResponseUnit) GetCollegeUUID

func (x *ListCourseResponseUnit) GetCollegeUUID() string

func (*ListCourseResponseUnit) GetDescription

func (x *ListCourseResponseUnit) GetDescription() string

func (*ListCourseResponseUnit) GetDisciplineUUID

func (x *ListCourseResponseUnit) GetDisciplineUUID() string

func (*ListCourseResponseUnit) GetManagerUUID

func (x *ListCourseResponseUnit) GetManagerUUID() []string

func (*ListCourseResponseUnit) GetName

func (x *ListCourseResponseUnit) GetName() string

func (*ListCourseResponseUnit) GetUUID

func (x *ListCourseResponseUnit) GetUUID() string

func (*ListCourseResponseUnit) ProtoMessage

func (*ListCourseResponseUnit) ProtoMessage()

func (*ListCourseResponseUnit) ProtoReflect added in v0.6.8

func (x *ListCourseResponseUnit) ProtoReflect() protoreflect.Message

func (*ListCourseResponseUnit) Reset

func (x *ListCourseResponseUnit) Reset()

func (*ListCourseResponseUnit) String

func (x *ListCourseResponseUnit) String() string

type ListDisciplineClassRequest

type ListDisciplineClassRequest struct {
	DisciplineUUID string `protobuf:"bytes,1,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDisciplineClassRequest) Descriptor deprecated

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

Deprecated: Use ListDisciplineClassRequest.ProtoReflect.Descriptor instead.

func (*ListDisciplineClassRequest) GetAuthToken

func (x *ListDisciplineClassRequest) GetAuthToken() string

func (*ListDisciplineClassRequest) GetDisciplineUUID

func (x *ListDisciplineClassRequest) GetDisciplineUUID() string

func (*ListDisciplineClassRequest) ProtoMessage

func (*ListDisciplineClassRequest) ProtoMessage()

func (*ListDisciplineClassRequest) ProtoReflect added in v0.6.8

func (*ListDisciplineClassRequest) Reset

func (x *ListDisciplineClassRequest) Reset()

func (*ListDisciplineClassRequest) String

func (x *ListDisciplineClassRequest) String() string

type ListDisciplineClassResponse

type ListDisciplineClassResponse struct {
	Class  []*ListClassResponseUnit `protobuf:"bytes,1,rep,name=Class,proto3" json:"Class,omitempty"`
	Status *ResponseStatus          `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDisciplineClassResponse) Descriptor deprecated

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

Deprecated: Use ListDisciplineClassResponse.ProtoReflect.Descriptor instead.

func (*ListDisciplineClassResponse) GetClass

func (*ListDisciplineClassResponse) GetStatus

func (*ListDisciplineClassResponse) ProtoMessage

func (*ListDisciplineClassResponse) ProtoMessage()

func (*ListDisciplineClassResponse) ProtoReflect added in v0.6.8

func (*ListDisciplineClassResponse) Reset

func (x *ListDisciplineClassResponse) Reset()

func (*ListDisciplineClassResponse) String

func (x *ListDisciplineClassResponse) String() string

type ListDisciplineCourseRequest

type ListDisciplineCourseRequest struct {
	DisciplineUUID string `protobuf:"bytes,1,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDisciplineCourseRequest) Descriptor deprecated

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

Deprecated: Use ListDisciplineCourseRequest.ProtoReflect.Descriptor instead.

func (*ListDisciplineCourseRequest) GetAuthToken

func (x *ListDisciplineCourseRequest) GetAuthToken() string

func (*ListDisciplineCourseRequest) GetDisciplineUUID

func (x *ListDisciplineCourseRequest) GetDisciplineUUID() string

func (*ListDisciplineCourseRequest) ProtoMessage

func (*ListDisciplineCourseRequest) ProtoMessage()

func (*ListDisciplineCourseRequest) ProtoReflect added in v0.6.8

func (*ListDisciplineCourseRequest) Reset

func (x *ListDisciplineCourseRequest) Reset()

func (*ListDisciplineCourseRequest) String

func (x *ListDisciplineCourseRequest) String() string

type ListDisciplineCourseResponse

type ListDisciplineCourseResponse struct {
	Course []*ListCourseResponseUnit `protobuf:"bytes,1,rep,name=Course,proto3" json:"Course,omitempty"`
	Status *ResponseStatus           `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDisciplineCourseResponse) Descriptor deprecated

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

Deprecated: Use ListDisciplineCourseResponse.ProtoReflect.Descriptor instead.

func (*ListDisciplineCourseResponse) GetCourse

func (*ListDisciplineCourseResponse) GetStatus

func (*ListDisciplineCourseResponse) ProtoMessage

func (*ListDisciplineCourseResponse) ProtoMessage()

func (*ListDisciplineCourseResponse) ProtoReflect added in v0.6.8

func (*ListDisciplineCourseResponse) Reset

func (x *ListDisciplineCourseResponse) Reset()

func (*ListDisciplineCourseResponse) String

type ListDisciplineRequest

type ListDisciplineRequest struct {
	AuthToken string `protobuf:"bytes,1,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDisciplineRequest) Descriptor deprecated

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

Deprecated: Use ListDisciplineRequest.ProtoReflect.Descriptor instead.

func (*ListDisciplineRequest) GetAuthToken

func (x *ListDisciplineRequest) GetAuthToken() string

func (*ListDisciplineRequest) ProtoMessage

func (*ListDisciplineRequest) ProtoMessage()

func (*ListDisciplineRequest) ProtoReflect added in v0.6.8

func (x *ListDisciplineRequest) ProtoReflect() protoreflect.Message

func (*ListDisciplineRequest) Reset

func (x *ListDisciplineRequest) Reset()

func (*ListDisciplineRequest) String

func (x *ListDisciplineRequest) String() string

type ListDisciplineResponse

type ListDisciplineResponse struct {
	Disciplines []*ListDisciplineResponseUnit `protobuf:"bytes,1,rep,name=Disciplines,proto3" json:"Disciplines,omitempty"`
	Status      *ResponseStatus               `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDisciplineResponse) Descriptor deprecated

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

Deprecated: Use ListDisciplineResponse.ProtoReflect.Descriptor instead.

func (*ListDisciplineResponse) GetDisciplines

func (x *ListDisciplineResponse) GetDisciplines() []*ListDisciplineResponseUnit

func (*ListDisciplineResponse) GetStatus

func (x *ListDisciplineResponse) GetStatus() *ResponseStatus

func (*ListDisciplineResponse) ProtoMessage

func (*ListDisciplineResponse) ProtoMessage()

func (*ListDisciplineResponse) ProtoReflect added in v0.6.8

func (x *ListDisciplineResponse) ProtoReflect() protoreflect.Message

func (*ListDisciplineResponse) Reset

func (x *ListDisciplineResponse) Reset()

func (*ListDisciplineResponse) String

func (x *ListDisciplineResponse) String() string

type ListDisciplineResponseUnit

type ListDisciplineResponseUnit struct {
	UUID        string   `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Name        string   `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string   `protobuf:"bytes,3,opt,name=Description,proto3" json:"Description,omitempty"`
	CollegeUUID string   `protobuf:"bytes,4,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	ManagerUUID []string `protobuf:"bytes,5,rep,name=ManagerUUID,proto3" json:"ManagerUUID,omitempty"`
	// contains filtered or unexported fields
}

func (*ListDisciplineResponseUnit) Descriptor deprecated

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

Deprecated: Use ListDisciplineResponseUnit.ProtoReflect.Descriptor instead.

func (*ListDisciplineResponseUnit) GetCollegeUUID

func (x *ListDisciplineResponseUnit) GetCollegeUUID() string

func (*ListDisciplineResponseUnit) GetDescription

func (x *ListDisciplineResponseUnit) GetDescription() string

func (*ListDisciplineResponseUnit) GetManagerUUID

func (x *ListDisciplineResponseUnit) GetManagerUUID() []string

func (*ListDisciplineResponseUnit) GetName

func (x *ListDisciplineResponseUnit) GetName() string

func (*ListDisciplineResponseUnit) GetUUID

func (x *ListDisciplineResponseUnit) GetUUID() string

func (*ListDisciplineResponseUnit) ProtoMessage

func (*ListDisciplineResponseUnit) ProtoMessage()

func (*ListDisciplineResponseUnit) ProtoReflect added in v0.6.8

func (*ListDisciplineResponseUnit) Reset

func (x *ListDisciplineResponseUnit) Reset()

func (*ListDisciplineResponseUnit) String

func (x *ListDisciplineResponseUnit) String() string

type ListKnowledgePointRequest added in v0.6.8

type ListKnowledgePointRequest struct {
	CourseUUID string `protobuf:"bytes,1,opt,name=CourseUUID,proto3" json:"CourseUUID,omitempty"`
	AuthToken  string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListKnowledgePointRequest) Descriptor deprecated added in v0.6.8

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

Deprecated: Use ListKnowledgePointRequest.ProtoReflect.Descriptor instead.

func (*ListKnowledgePointRequest) GetAuthToken added in v0.6.8

func (x *ListKnowledgePointRequest) GetAuthToken() string

func (*ListKnowledgePointRequest) GetCourseUUID added in v0.6.8

func (x *ListKnowledgePointRequest) GetCourseUUID() string

func (*ListKnowledgePointRequest) ProtoMessage added in v0.6.8

func (*ListKnowledgePointRequest) ProtoMessage()

func (*ListKnowledgePointRequest) ProtoReflect added in v0.6.8

func (*ListKnowledgePointRequest) Reset added in v0.6.8

func (x *ListKnowledgePointRequest) Reset()

func (*ListKnowledgePointRequest) String added in v0.6.8

func (x *ListKnowledgePointRequest) String() string

type ListKnowledgePointResponse added in v0.6.8

type ListKnowledgePointResponse struct {
	CourseUUID      string            `protobuf:"bytes,1,opt,name=CourseUUID,proto3" json:"CourseUUID,omitempty"`
	KnowledgePoints []*KnowledgePoint `protobuf:"bytes,2,rep,name=KnowledgePoints,proto3" json:"KnowledgePoints,omitempty"`
	Status          *ResponseStatus   `protobuf:"bytes,3,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListKnowledgePointResponse) Descriptor deprecated added in v0.6.8

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

Deprecated: Use ListKnowledgePointResponse.ProtoReflect.Descriptor instead.

func (*ListKnowledgePointResponse) GetCourseUUID added in v0.6.8

func (x *ListKnowledgePointResponse) GetCourseUUID() string

func (*ListKnowledgePointResponse) GetKnowledgePoints added in v0.6.8

func (x *ListKnowledgePointResponse) GetKnowledgePoints() []*KnowledgePoint

func (*ListKnowledgePointResponse) GetStatus added in v0.6.8

func (*ListKnowledgePointResponse) ProtoMessage added in v0.6.8

func (*ListKnowledgePointResponse) ProtoMessage()

func (*ListKnowledgePointResponse) ProtoReflect added in v0.6.8

func (*ListKnowledgePointResponse) Reset added in v0.6.8

func (x *ListKnowledgePointResponse) Reset()

func (*ListKnowledgePointResponse) String added in v0.6.8

func (x *ListKnowledgePointResponse) String() string

type ListQuestionBankRequest

type ListQuestionBankRequest struct {
	CourseUUID string `protobuf:"bytes,1,opt,name=CourseUUID,proto3" json:"CourseUUID,omitempty"`
	AuthToken  string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListQuestionBankRequest) Descriptor deprecated

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

Deprecated: Use ListQuestionBankRequest.ProtoReflect.Descriptor instead.

func (*ListQuestionBankRequest) GetAuthToken

func (x *ListQuestionBankRequest) GetAuthToken() string

func (*ListQuestionBankRequest) GetCourseUUID

func (x *ListQuestionBankRequest) GetCourseUUID() string

func (*ListQuestionBankRequest) ProtoMessage

func (*ListQuestionBankRequest) ProtoMessage()

func (*ListQuestionBankRequest) ProtoReflect added in v0.6.8

func (x *ListQuestionBankRequest) ProtoReflect() protoreflect.Message

func (*ListQuestionBankRequest) Reset

func (x *ListQuestionBankRequest) Reset()

func (*ListQuestionBankRequest) String

func (x *ListQuestionBankRequest) String() string

type ListQuestionBankResponse

type ListQuestionBankResponse struct {
	UUID        string          `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Name        string          `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	Description string          `protobuf:"bytes,3,opt,name=Description,proto3" json:"Description,omitempty"`
	Managers    []string        `protobuf:"bytes,4,rep,name=Managers,proto3" json:"Managers,omitempty"`
	Status      *ResponseStatus `protobuf:"bytes,5,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListQuestionBankResponse) Descriptor deprecated

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

Deprecated: Use ListQuestionBankResponse.ProtoReflect.Descriptor instead.

func (*ListQuestionBankResponse) GetDescription

func (x *ListQuestionBankResponse) GetDescription() string

func (*ListQuestionBankResponse) GetManagers

func (x *ListQuestionBankResponse) GetManagers() []string

func (*ListQuestionBankResponse) GetName

func (x *ListQuestionBankResponse) GetName() string

func (*ListQuestionBankResponse) GetStatus

func (x *ListQuestionBankResponse) GetStatus() *ResponseStatus

func (*ListQuestionBankResponse) GetUUID

func (x *ListQuestionBankResponse) GetUUID() string

func (*ListQuestionBankResponse) ProtoMessage

func (*ListQuestionBankResponse) ProtoMessage()

func (*ListQuestionBankResponse) ProtoReflect added in v0.6.8

func (x *ListQuestionBankResponse) ProtoReflect() protoreflect.Message

func (*ListQuestionBankResponse) Reset

func (x *ListQuestionBankResponse) Reset()

func (*ListQuestionBankResponse) String

func (x *ListQuestionBankResponse) String() string

type ListQuestionRequest

type ListQuestionRequest struct {
	QuestionBankUUID string `protobuf:"bytes,1,opt,name=QuestionBankUUID,proto3" json:"QuestionBankUUID,omitempty"`
	AuthToken        string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ListQuestionRequest) Descriptor deprecated

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

Deprecated: Use ListQuestionRequest.ProtoReflect.Descriptor instead.

func (*ListQuestionRequest) GetAuthToken

func (x *ListQuestionRequest) GetAuthToken() string

func (*ListQuestionRequest) GetQuestionBankUUID

func (x *ListQuestionRequest) GetQuestionBankUUID() string

func (*ListQuestionRequest) ProtoMessage

func (*ListQuestionRequest) ProtoMessage()

func (*ListQuestionRequest) ProtoReflect added in v0.6.8

func (x *ListQuestionRequest) ProtoReflect() protoreflect.Message

func (*ListQuestionRequest) Reset

func (x *ListQuestionRequest) Reset()

func (*ListQuestionRequest) String

func (x *ListQuestionRequest) String() string

type ListQuestionResponse

type ListQuestionResponse struct {
	Questions []*QuestionInfoUnit `protobuf:"bytes,1,rep,name=Questions,proto3" json:"Questions,omitempty"`
	Status    *ResponseStatus     `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ListQuestionResponse) Descriptor deprecated

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

Deprecated: Use ListQuestionResponse.ProtoReflect.Descriptor instead.

func (*ListQuestionResponse) GetQuestions

func (x *ListQuestionResponse) GetQuestions() []*QuestionInfoUnit

func (*ListQuestionResponse) GetStatus

func (x *ListQuestionResponse) GetStatus() *ResponseStatus

func (*ListQuestionResponse) ProtoMessage

func (*ListQuestionResponse) ProtoMessage()

func (*ListQuestionResponse) ProtoReflect added in v0.6.8

func (x *ListQuestionResponse) ProtoReflect() protoreflect.Message

func (*ListQuestionResponse) Reset

func (x *ListQuestionResponse) Reset()

func (*ListQuestionResponse) String

func (x *ListQuestionResponse) String() string

type LoginRequest

type LoginRequest struct {
	AccountID   int32  `protobuf:"varint,1,opt,name=AccountID,proto3" json:"AccountID,omitempty"`
	PasswordMD5 string `protobuf:"bytes,2,opt,name=PasswordMD5,proto3" json:"PasswordMD5,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginRequest) Descriptor deprecated

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

Deprecated: Use LoginRequest.ProtoReflect.Descriptor instead.

func (*LoginRequest) GetAccountID

func (x *LoginRequest) GetAccountID() int32

func (*LoginRequest) GetPasswordMD5

func (x *LoginRequest) GetPasswordMD5() string

func (*LoginRequest) ProtoMessage

func (*LoginRequest) ProtoMessage()

func (*LoginRequest) ProtoReflect added in v0.6.8

func (x *LoginRequest) ProtoReflect() protoreflect.Message

func (*LoginRequest) Reset

func (x *LoginRequest) Reset()

func (*LoginRequest) String

func (x *LoginRequest) String() string

type LoginResponse

type LoginResponse struct {
	Token  string          `protobuf:"bytes,1,opt,name=Token,proto3" json:"Token,omitempty"`
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginResponse) Descriptor deprecated

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

Deprecated: Use LoginResponse.ProtoReflect.Descriptor instead.

func (*LoginResponse) GetStatus

func (x *LoginResponse) GetStatus() *ResponseStatus

func (*LoginResponse) GetToken

func (x *LoginResponse) GetToken() string

func (*LoginResponse) ProtoMessage

func (*LoginResponse) ProtoMessage()

func (*LoginResponse) ProtoReflect added in v0.6.8

func (x *LoginResponse) ProtoReflect() protoreflect.Message

func (*LoginResponse) Reset

func (x *LoginResponse) Reset()

func (*LoginResponse) String

func (x *LoginResponse) String() string

type QuestionBankServiceClient

QuestionBankServiceClient is the client API for QuestionBankService service.

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

type QuestionBankServiceServer

QuestionBankServiceServer is the server API for QuestionBankService service.

type QuestionInfoUnit

type QuestionInfoUnit struct {
	QuestionBase64      string            `protobuf:"bytes,1,opt,name=QuestionBase64,proto3" json:"QuestionBase64,omitempty"`
	AnalysisBase64      string            `protobuf:"bytes,2,opt,name=AnalysisBase64,proto3" json:"AnalysisBase64,omitempty"`
	AnswerBase64A       string            `protobuf:"bytes,3,opt,name=AnswerBase64A,proto3" json:"AnswerBase64A,omitempty"`
	AnswerBase64B       string            `protobuf:"bytes,4,opt,name=AnswerBase64B,proto3" json:"AnswerBase64B,omitempty"`
	AnswerBase64C       string            `protobuf:"bytes,5,opt,name=AnswerBase64C,proto3" json:"AnswerBase64C,omitempty"`
	AnswerBase64D       string            `protobuf:"bytes,6,opt,name=AnswerBase64D,proto3" json:"AnswerBase64D,omitempty"`
	IsA                 bool              `protobuf:"varint,7,opt,name=IsA,proto3" json:"IsA,omitempty"`
	IsB                 bool              `protobuf:"varint,8,opt,name=IsB,proto3" json:"IsB,omitempty"`
	IsC                 bool              `protobuf:"varint,9,opt,name=IsC,proto3" json:"IsC,omitempty"`
	IsD                 bool              `protobuf:"varint,10,opt,name=IsD,proto3" json:"IsD,omitempty"`
	IsTrue              bool              `protobuf:"varint,11,opt,name=IsTrue,proto3" json:"IsTrue,omitempty"`
	Type                QuestionTypeCode  `protobuf:"varint,12,opt,name=Type,proto3,enum=pb.QuestionTypeCode" json:"Type,omitempty"`
	Level               QuestionLevelCode `protobuf:"varint,13,opt,name=Level,proto3,enum=pb.QuestionLevelCode" json:"Level,omitempty"`
	UUID                string            `protobuf:"bytes,14,opt,name=UUID,proto3" json:"UUID,omitempty"`
	KnowledgePointUUIDs []string          `protobuf:"bytes,15,rep,name=KnowledgePointUUIDs,proto3" json:"KnowledgePointUUIDs,omitempty"`
	// contains filtered or unexported fields
}

func (*QuestionInfoUnit) Descriptor deprecated

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

Deprecated: Use QuestionInfoUnit.ProtoReflect.Descriptor instead.

func (*QuestionInfoUnit) GetAnalysisBase64 added in v0.4.2

func (x *QuestionInfoUnit) GetAnalysisBase64() string

func (*QuestionInfoUnit) GetAnswerBase64A

func (x *QuestionInfoUnit) GetAnswerBase64A() string

func (*QuestionInfoUnit) GetAnswerBase64B

func (x *QuestionInfoUnit) GetAnswerBase64B() string

func (*QuestionInfoUnit) GetAnswerBase64C

func (x *QuestionInfoUnit) GetAnswerBase64C() string

func (*QuestionInfoUnit) GetAnswerBase64D

func (x *QuestionInfoUnit) GetAnswerBase64D() string

func (*QuestionInfoUnit) GetIsA

func (x *QuestionInfoUnit) GetIsA() bool

func (*QuestionInfoUnit) GetIsB

func (x *QuestionInfoUnit) GetIsB() bool

func (*QuestionInfoUnit) GetIsC

func (x *QuestionInfoUnit) GetIsC() bool

func (*QuestionInfoUnit) GetIsD

func (x *QuestionInfoUnit) GetIsD() bool

func (*QuestionInfoUnit) GetIsTrue added in v0.4.2

func (x *QuestionInfoUnit) GetIsTrue() bool

func (*QuestionInfoUnit) GetKnowledgePointUUIDs added in v0.6.8

func (x *QuestionInfoUnit) GetKnowledgePointUUIDs() []string

func (*QuestionInfoUnit) GetLevel

func (x *QuestionInfoUnit) GetLevel() QuestionLevelCode

func (*QuestionInfoUnit) GetQuestionBase64 added in v0.4.2

func (x *QuestionInfoUnit) GetQuestionBase64() string

func (*QuestionInfoUnit) GetType added in v0.4.3

func (x *QuestionInfoUnit) GetType() QuestionTypeCode

func (*QuestionInfoUnit) GetUUID added in v0.4.4

func (x *QuestionInfoUnit) GetUUID() string

func (*QuestionInfoUnit) ProtoMessage

func (*QuestionInfoUnit) ProtoMessage()

func (*QuestionInfoUnit) ProtoReflect added in v0.6.8

func (x *QuestionInfoUnit) ProtoReflect() protoreflect.Message

func (*QuestionInfoUnit) Reset

func (x *QuestionInfoUnit) Reset()

func (*QuestionInfoUnit) String

func (x *QuestionInfoUnit) String() string

type QuestionLevelCode

type QuestionLevelCode int32
const (
	QuestionLevelCode_Basic       QuestionLevelCode = 0
	QuestionLevelCode_Normal      QuestionLevelCode = 1
	QuestionLevelCode_Difficult   QuestionLevelCode = 2
	QuestionLevelCode_Challenging QuestionLevelCode = 3
)

func (QuestionLevelCode) Descriptor added in v0.6.8

func (QuestionLevelCode) Enum added in v0.6.8

func (QuestionLevelCode) EnumDescriptor deprecated

func (QuestionLevelCode) EnumDescriptor() ([]byte, []int)

Deprecated: Use QuestionLevelCode.Descriptor instead.

func (QuestionLevelCode) Number added in v0.6.8

func (QuestionLevelCode) String

func (x QuestionLevelCode) String() string

func (QuestionLevelCode) Type added in v0.6.8

type QuestionServiceClient

type QuestionServiceClient interface {
	GetQuestion(ctx context.Context, in *GetQuestionRequest, opts ...grpc.CallOption) (*GetQuestionResponse, error)
	ListQuestion(ctx context.Context, in *ListQuestionRequest, opts ...grpc.CallOption) (*ListQuestionResponse, error)
	ShowQuestions(ctx context.Context, in *ShowQuestionsRequest, opts ...grpc.CallOption) (*ShowQuestionsResponse, error)
	CreateQuestion(ctx context.Context, in *CreateQuestionRequest, opts ...grpc.CallOption) (*CreateQuestionResponse, error)
	UpdateQuestion(ctx context.Context, in *UpdateQuestionRequest, opts ...grpc.CallOption) (*UpdateQuestionResponse, error)
	DeleteQuestion(ctx context.Context, in *DeleteQuestionRequest, opts ...grpc.CallOption) (*DeleteQuestionResponse, error)
}

QuestionServiceClient is the client API for QuestionService service.

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

type QuestionServiceServer

QuestionServiceServer is the server API for QuestionService service.

type QuestionTypeCode added in v0.4.3

type QuestionTypeCode int32
const (
	QuestionTypeCode_Single   QuestionTypeCode = 0
	QuestionTypeCode_Multiple QuestionTypeCode = 1
	QuestionTypeCode_Judge    QuestionTypeCode = 2
)

func (QuestionTypeCode) Descriptor added in v0.6.8

func (QuestionTypeCode) Enum added in v0.6.8

func (QuestionTypeCode) EnumDescriptor deprecated added in v0.4.3

func (QuestionTypeCode) EnumDescriptor() ([]byte, []int)

Deprecated: Use QuestionTypeCode.Descriptor instead.

func (QuestionTypeCode) Number added in v0.6.8

func (QuestionTypeCode) String added in v0.4.3

func (x QuestionTypeCode) String() string

func (QuestionTypeCode) Type added in v0.6.8

type ResetPasswordRequest

type ResetPasswordRequest struct {
	WillChangeAccountID int32  `protobuf:"varint,1,opt,name=WillChangeAccountID,proto3" json:"WillChangeAccountID,omitempty"`
	AuthToken           string `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ResetPasswordRequest) Descriptor deprecated

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

Deprecated: Use ResetPasswordRequest.ProtoReflect.Descriptor instead.

func (*ResetPasswordRequest) GetAuthToken

func (x *ResetPasswordRequest) GetAuthToken() string

func (*ResetPasswordRequest) GetWillChangeAccountID added in v0.6.5

func (x *ResetPasswordRequest) GetWillChangeAccountID() int32

func (*ResetPasswordRequest) ProtoMessage

func (*ResetPasswordRequest) ProtoMessage()

func (*ResetPasswordRequest) ProtoReflect added in v0.6.8

func (x *ResetPasswordRequest) ProtoReflect() protoreflect.Message

func (*ResetPasswordRequest) Reset

func (x *ResetPasswordRequest) Reset()

func (*ResetPasswordRequest) String

func (x *ResetPasswordRequest) String() string

type ResetPasswordResponse

type ResetPasswordResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ResetPasswordResponse) Descriptor deprecated

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

Deprecated: Use ResetPasswordResponse.ProtoReflect.Descriptor instead.

func (*ResetPasswordResponse) GetStatus

func (x *ResetPasswordResponse) GetStatus() *ResponseStatus

func (*ResetPasswordResponse) ProtoMessage

func (*ResetPasswordResponse) ProtoMessage()

func (*ResetPasswordResponse) ProtoReflect added in v0.6.8

func (x *ResetPasswordResponse) ProtoReflect() protoreflect.Message

func (*ResetPasswordResponse) Reset

func (x *ResetPasswordResponse) Reset()

func (*ResetPasswordResponse) String

func (x *ResetPasswordResponse) String() string

type ResponseStatus

type ResponseStatus struct {
	Code    ResponseStatusCode `protobuf:"varint,1,opt,name=Code,proto3,enum=pb.ResponseStatusCode" json:"Code,omitempty"`
	Message string             `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	Error   string             `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseStatus) Descriptor deprecated

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

Deprecated: Use ResponseStatus.ProtoReflect.Descriptor instead.

func (*ResponseStatus) GetCode

func (x *ResponseStatus) GetCode() ResponseStatusCode

func (*ResponseStatus) GetError

func (x *ResponseStatus) GetError() string

func (*ResponseStatus) GetMessage

func (x *ResponseStatus) GetMessage() string

func (*ResponseStatus) ProtoMessage

func (*ResponseStatus) ProtoMessage()

func (*ResponseStatus) ProtoReflect added in v0.6.8

func (x *ResponseStatus) ProtoReflect() protoreflect.Message

func (*ResponseStatus) Reset

func (x *ResponseStatus) Reset()

func (*ResponseStatus) String

func (x *ResponseStatus) String() string

type ResponseStatusCode

type ResponseStatusCode int32
const (
	ResponseStatusCode_ServerError    ResponseStatusCode = 0
	ResponseStatusCode_Suc            ResponseStatusCode = 1
	ResponseStatusCode_NotAuth        ResponseStatusCode = 2
	ResponseStatusCode_FieldTypeError ResponseStatusCode = 3
	ResponseStatusCode_OtherError     ResponseStatusCode = 4
)

func (ResponseStatusCode) Descriptor added in v0.6.8

func (ResponseStatusCode) Enum added in v0.6.8

func (ResponseStatusCode) EnumDescriptor deprecated

func (ResponseStatusCode) EnumDescriptor() ([]byte, []int)

Deprecated: Use ResponseStatusCode.Descriptor instead.

func (ResponseStatusCode) Number added in v0.6.8

func (ResponseStatusCode) String

func (x ResponseStatusCode) String() string

func (ResponseStatusCode) Type added in v0.6.8

type SetChapterManagerRequest

type SetChapterManagerRequest struct {
	WillSetChapterUUID string `protobuf:"bytes,1,opt,name=WillSetChapterUUID,proto3" json:"WillSetChapterUUID,omitempty"`
	WillSetManagerUUID string `protobuf:"bytes,2,opt,name=WillSetManagerUUID,proto3" json:"WillSetManagerUUID,omitempty"`
	AuthToken          string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*SetChapterManagerRequest) Descriptor deprecated

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

Deprecated: Use SetChapterManagerRequest.ProtoReflect.Descriptor instead.

func (*SetChapterManagerRequest) GetAuthToken

func (x *SetChapterManagerRequest) GetAuthToken() string

func (*SetChapterManagerRequest) GetWillSetChapterUUID

func (x *SetChapterManagerRequest) GetWillSetChapterUUID() string

func (*SetChapterManagerRequest) GetWillSetManagerUUID

func (x *SetChapterManagerRequest) GetWillSetManagerUUID() string

func (*SetChapterManagerRequest) ProtoMessage

func (*SetChapterManagerRequest) ProtoMessage()

func (*SetChapterManagerRequest) ProtoReflect added in v0.6.8

func (x *SetChapterManagerRequest) ProtoReflect() protoreflect.Message

func (*SetChapterManagerRequest) Reset

func (x *SetChapterManagerRequest) Reset()

func (*SetChapterManagerRequest) String

func (x *SetChapterManagerRequest) String() string

type SetChapterManagerResponse

type SetChapterManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*SetChapterManagerResponse) Descriptor deprecated

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

Deprecated: Use SetChapterManagerResponse.ProtoReflect.Descriptor instead.

func (*SetChapterManagerResponse) GetStatus

func (x *SetChapterManagerResponse) GetStatus() *ResponseStatus

func (*SetChapterManagerResponse) ProtoMessage

func (*SetChapterManagerResponse) ProtoMessage()

func (*SetChapterManagerResponse) ProtoReflect added in v0.6.8

func (*SetChapterManagerResponse) Reset

func (x *SetChapterManagerResponse) Reset()

func (*SetChapterManagerResponse) String

func (x *SetChapterManagerResponse) String() string

type SetClassManagerRequest

type SetClassManagerRequest struct {
	WillSetClassUUID   string `protobuf:"bytes,1,opt,name=WillSetClassUUID,proto3" json:"WillSetClassUUID,omitempty"`
	WillSetManagerUUID string `protobuf:"bytes,2,opt,name=WillSetManagerUUID,proto3" json:"WillSetManagerUUID,omitempty"`
	AuthToken          string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*SetClassManagerRequest) Descriptor deprecated

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

Deprecated: Use SetClassManagerRequest.ProtoReflect.Descriptor instead.

func (*SetClassManagerRequest) GetAuthToken

func (x *SetClassManagerRequest) GetAuthToken() string

func (*SetClassManagerRequest) GetWillSetClassUUID

func (x *SetClassManagerRequest) GetWillSetClassUUID() string

func (*SetClassManagerRequest) GetWillSetManagerUUID

func (x *SetClassManagerRequest) GetWillSetManagerUUID() string

func (*SetClassManagerRequest) ProtoMessage

func (*SetClassManagerRequest) ProtoMessage()

func (*SetClassManagerRequest) ProtoReflect added in v0.6.8

func (x *SetClassManagerRequest) ProtoReflect() protoreflect.Message

func (*SetClassManagerRequest) Reset

func (x *SetClassManagerRequest) Reset()

func (*SetClassManagerRequest) String

func (x *SetClassManagerRequest) String() string

type SetClassManagerResponse

type SetClassManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*SetClassManagerResponse) Descriptor deprecated

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

Deprecated: Use SetClassManagerResponse.ProtoReflect.Descriptor instead.

func (*SetClassManagerResponse) GetStatus

func (x *SetClassManagerResponse) GetStatus() *ResponseStatus

func (*SetClassManagerResponse) ProtoMessage

func (*SetClassManagerResponse) ProtoMessage()

func (*SetClassManagerResponse) ProtoReflect added in v0.6.8

func (x *SetClassManagerResponse) ProtoReflect() protoreflect.Message

func (*SetClassManagerResponse) Reset

func (x *SetClassManagerResponse) Reset()

func (*SetClassManagerResponse) String

func (x *SetClassManagerResponse) String() string

type SetCollegeManagerRequest

type SetCollegeManagerRequest struct {
	WillSetCollegeUUID string `protobuf:"bytes,1,opt,name=WillSetCollegeUUID,proto3" json:"WillSetCollegeUUID,omitempty"`
	WillSetManagerUUID string `protobuf:"bytes,2,opt,name=WillSetManagerUUID,proto3" json:"WillSetManagerUUID,omitempty"`
	AuthToken          string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*SetCollegeManagerRequest) Descriptor deprecated

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

Deprecated: Use SetCollegeManagerRequest.ProtoReflect.Descriptor instead.

func (*SetCollegeManagerRequest) GetAuthToken

func (x *SetCollegeManagerRequest) GetAuthToken() string

func (*SetCollegeManagerRequest) GetWillSetCollegeUUID

func (x *SetCollegeManagerRequest) GetWillSetCollegeUUID() string

func (*SetCollegeManagerRequest) GetWillSetManagerUUID

func (x *SetCollegeManagerRequest) GetWillSetManagerUUID() string

func (*SetCollegeManagerRequest) ProtoMessage

func (*SetCollegeManagerRequest) ProtoMessage()

func (*SetCollegeManagerRequest) ProtoReflect added in v0.6.8

func (x *SetCollegeManagerRequest) ProtoReflect() protoreflect.Message

func (*SetCollegeManagerRequest) Reset

func (x *SetCollegeManagerRequest) Reset()

func (*SetCollegeManagerRequest) String

func (x *SetCollegeManagerRequest) String() string

type SetCollegeManagerResponse

type SetCollegeManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*SetCollegeManagerResponse) Descriptor deprecated

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

Deprecated: Use SetCollegeManagerResponse.ProtoReflect.Descriptor instead.

func (*SetCollegeManagerResponse) GetStatus

func (x *SetCollegeManagerResponse) GetStatus() *ResponseStatus

func (*SetCollegeManagerResponse) ProtoMessage

func (*SetCollegeManagerResponse) ProtoMessage()

func (*SetCollegeManagerResponse) ProtoReflect added in v0.6.8

func (*SetCollegeManagerResponse) Reset

func (x *SetCollegeManagerResponse) Reset()

func (*SetCollegeManagerResponse) String

func (x *SetCollegeManagerResponse) String() string

type SetCourseManagerRequest

type SetCourseManagerRequest struct {
	WillSetCourseUUID  string `protobuf:"bytes,1,opt,name=WillSetCourseUUID,proto3" json:"WillSetCourseUUID,omitempty"`
	WillSetManagerUUID string `protobuf:"bytes,2,opt,name=WillSetManagerUUID,proto3" json:"WillSetManagerUUID,omitempty"`
	AuthToken          string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*SetCourseManagerRequest) Descriptor deprecated

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

Deprecated: Use SetCourseManagerRequest.ProtoReflect.Descriptor instead.

func (*SetCourseManagerRequest) GetAuthToken

func (x *SetCourseManagerRequest) GetAuthToken() string

func (*SetCourseManagerRequest) GetWillSetCourseUUID

func (x *SetCourseManagerRequest) GetWillSetCourseUUID() string

func (*SetCourseManagerRequest) GetWillSetManagerUUID

func (x *SetCourseManagerRequest) GetWillSetManagerUUID() string

func (*SetCourseManagerRequest) ProtoMessage

func (*SetCourseManagerRequest) ProtoMessage()

func (*SetCourseManagerRequest) ProtoReflect added in v0.6.8

func (x *SetCourseManagerRequest) ProtoReflect() protoreflect.Message

func (*SetCourseManagerRequest) Reset

func (x *SetCourseManagerRequest) Reset()

func (*SetCourseManagerRequest) String

func (x *SetCourseManagerRequest) String() string

type SetCourseManagerResponse

type SetCourseManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*SetCourseManagerResponse) Descriptor deprecated

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

Deprecated: Use SetCourseManagerResponse.ProtoReflect.Descriptor instead.

func (*SetCourseManagerResponse) GetStatus

func (x *SetCourseManagerResponse) GetStatus() *ResponseStatus

func (*SetCourseManagerResponse) ProtoMessage

func (*SetCourseManagerResponse) ProtoMessage()

func (*SetCourseManagerResponse) ProtoReflect added in v0.6.8

func (x *SetCourseManagerResponse) ProtoReflect() protoreflect.Message

func (*SetCourseManagerResponse) Reset

func (x *SetCourseManagerResponse) Reset()

func (*SetCourseManagerResponse) String

func (x *SetCourseManagerResponse) String() string

type SetDisciplineManagerRequest

type SetDisciplineManagerRequest struct {
	WillSetDisciplineUUID string `protobuf:"bytes,1,opt,name=WillSetDisciplineUUID,proto3" json:"WillSetDisciplineUUID,omitempty"`
	WillSetManagerUUID    string `protobuf:"bytes,2,opt,name=WillSetManagerUUID,proto3" json:"WillSetManagerUUID,omitempty"`
	AuthToken             string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*SetDisciplineManagerRequest) Descriptor deprecated

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

Deprecated: Use SetDisciplineManagerRequest.ProtoReflect.Descriptor instead.

func (*SetDisciplineManagerRequest) GetAuthToken

func (x *SetDisciplineManagerRequest) GetAuthToken() string

func (*SetDisciplineManagerRequest) GetWillSetDisciplineUUID

func (x *SetDisciplineManagerRequest) GetWillSetDisciplineUUID() string

func (*SetDisciplineManagerRequest) GetWillSetManagerUUID

func (x *SetDisciplineManagerRequest) GetWillSetManagerUUID() string

func (*SetDisciplineManagerRequest) ProtoMessage

func (*SetDisciplineManagerRequest) ProtoMessage()

func (*SetDisciplineManagerRequest) ProtoReflect added in v0.6.8

func (*SetDisciplineManagerRequest) Reset

func (x *SetDisciplineManagerRequest) Reset()

func (*SetDisciplineManagerRequest) String

func (x *SetDisciplineManagerRequest) String() string

type SetDisciplineManagerResponse

type SetDisciplineManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*SetDisciplineManagerResponse) Descriptor deprecated

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

Deprecated: Use SetDisciplineManagerResponse.ProtoReflect.Descriptor instead.

func (*SetDisciplineManagerResponse) GetStatus

func (*SetDisciplineManagerResponse) ProtoMessage

func (*SetDisciplineManagerResponse) ProtoMessage()

func (*SetDisciplineManagerResponse) ProtoReflect added in v0.6.8

func (*SetDisciplineManagerResponse) Reset

func (x *SetDisciplineManagerResponse) Reset()

func (*SetDisciplineManagerResponse) String

type SetQuestionBankManagerRequest

type SetQuestionBankManagerRequest struct {
	WillSetQuestionBankUUID string `protobuf:"bytes,1,opt,name=WillSetQuestionBankUUID,proto3" json:"WillSetQuestionBankUUID,omitempty"`
	WillSetManagerUUID      string `protobuf:"bytes,2,opt,name=WillSetManagerUUID,proto3" json:"WillSetManagerUUID,omitempty"`
	AuthToken               string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*SetQuestionBankManagerRequest) Descriptor deprecated

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

Deprecated: Use SetQuestionBankManagerRequest.ProtoReflect.Descriptor instead.

func (*SetQuestionBankManagerRequest) GetAuthToken

func (x *SetQuestionBankManagerRequest) GetAuthToken() string

func (*SetQuestionBankManagerRequest) GetWillSetManagerUUID

func (x *SetQuestionBankManagerRequest) GetWillSetManagerUUID() string

func (*SetQuestionBankManagerRequest) GetWillSetQuestionBankUUID

func (x *SetQuestionBankManagerRequest) GetWillSetQuestionBankUUID() string

func (*SetQuestionBankManagerRequest) ProtoMessage

func (*SetQuestionBankManagerRequest) ProtoMessage()

func (*SetQuestionBankManagerRequest) ProtoReflect added in v0.6.8

func (*SetQuestionBankManagerRequest) Reset

func (x *SetQuestionBankManagerRequest) Reset()

func (*SetQuestionBankManagerRequest) String

type SetQuestionBankManagerResponse

type SetQuestionBankManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*SetQuestionBankManagerResponse) Descriptor deprecated

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

Deprecated: Use SetQuestionBankManagerResponse.ProtoReflect.Descriptor instead.

func (*SetQuestionBankManagerResponse) GetStatus

func (*SetQuestionBankManagerResponse) ProtoMessage

func (*SetQuestionBankManagerResponse) ProtoMessage()

func (*SetQuestionBankManagerResponse) ProtoReflect added in v0.6.8

func (*SetQuestionBankManagerResponse) Reset

func (x *SetQuestionBankManagerResponse) Reset()

func (*SetQuestionBankManagerResponse) String

type ShowQuestionsRequest

type ShowQuestionsRequest struct {
	QuestionUUIDList []string `protobuf:"bytes,1,rep,name=QuestionUUIDList,proto3" json:"QuestionUUIDList,omitempty"`
	AuthToken        string   `protobuf:"bytes,2,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*ShowQuestionsRequest) Descriptor deprecated

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

Deprecated: Use ShowQuestionsRequest.ProtoReflect.Descriptor instead.

func (*ShowQuestionsRequest) GetAuthToken

func (x *ShowQuestionsRequest) GetAuthToken() string

func (*ShowQuestionsRequest) GetQuestionUUIDList

func (x *ShowQuestionsRequest) GetQuestionUUIDList() []string

func (*ShowQuestionsRequest) ProtoMessage

func (*ShowQuestionsRequest) ProtoMessage()

func (*ShowQuestionsRequest) ProtoReflect added in v0.6.8

func (x *ShowQuestionsRequest) ProtoReflect() protoreflect.Message

func (*ShowQuestionsRequest) Reset

func (x *ShowQuestionsRequest) Reset()

func (*ShowQuestionsRequest) String

func (x *ShowQuestionsRequest) String() string

type ShowQuestionsResponse

type ShowQuestionsResponse struct {
	Questions []*QuestionInfoUnit `protobuf:"bytes,1,rep,name=Questions,proto3" json:"Questions,omitempty"`
	Status    *ResponseStatus     `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*ShowQuestionsResponse) Descriptor deprecated

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

Deprecated: Use ShowQuestionsResponse.ProtoReflect.Descriptor instead.

func (*ShowQuestionsResponse) GetQuestions

func (x *ShowQuestionsResponse) GetQuestions() []*QuestionInfoUnit

func (*ShowQuestionsResponse) GetStatus

func (x *ShowQuestionsResponse) GetStatus() *ResponseStatus

func (*ShowQuestionsResponse) ProtoMessage

func (*ShowQuestionsResponse) ProtoMessage()

func (*ShowQuestionsResponse) ProtoReflect added in v0.6.8

func (x *ShowQuestionsResponse) ProtoReflect() protoreflect.Message

func (*ShowQuestionsResponse) Reset

func (x *ShowQuestionsResponse) Reset()

func (*ShowQuestionsResponse) String

func (x *ShowQuestionsResponse) String() string

type SignUpRequest

type SignUpRequest struct {
	AccountID         int32            `protobuf:"varint,1,opt,name=AccountID,proto3" json:"AccountID,omitempty"`
	PasswordMD5       string           `protobuf:"bytes,2,opt,name=PasswordMD5,proto3" json:"PasswordMD5,omitempty"`
	PasswordVerifyMd5 string           `protobuf:"bytes,3,opt,name=PasswordVerifyMd5,proto3" json:"PasswordVerifyMd5,omitempty"`
	CollegeUUID       string           `protobuf:"bytes,4,opt,name=CollegeUUID,proto3" json:"CollegeUUID,omitempty"`
	DisciplineUUID    string           `protobuf:"bytes,5,opt,name=DisciplineUUID,proto3" json:"DisciplineUUID,omitempty"`
	ClassUUID         string           `protobuf:"bytes,6,opt,name=ClassUUID,proto3" json:"ClassUUID,omitempty"`
	RoleType          UserRoleTypeCode `protobuf:"varint,7,opt,name=RoleType,proto3,enum=pb.UserRoleTypeCode" json:"RoleType,omitempty"`
	AuthToken         string           `protobuf:"bytes,8,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*SignUpRequest) Descriptor deprecated

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

Deprecated: Use SignUpRequest.ProtoReflect.Descriptor instead.

func (*SignUpRequest) GetAccountID

func (x *SignUpRequest) GetAccountID() int32

func (*SignUpRequest) GetAuthToken

func (x *SignUpRequest) GetAuthToken() string

func (*SignUpRequest) GetClassUUID added in v0.4.8

func (x *SignUpRequest) GetClassUUID() string

func (*SignUpRequest) GetCollegeUUID added in v0.4.8

func (x *SignUpRequest) GetCollegeUUID() string

func (*SignUpRequest) GetDisciplineUUID added in v0.4.8

func (x *SignUpRequest) GetDisciplineUUID() string

func (*SignUpRequest) GetPasswordMD5

func (x *SignUpRequest) GetPasswordMD5() string

func (*SignUpRequest) GetPasswordVerifyMd5

func (x *SignUpRequest) GetPasswordVerifyMd5() string

func (*SignUpRequest) GetRoleType added in v0.4.9

func (x *SignUpRequest) GetRoleType() UserRoleTypeCode

func (*SignUpRequest) ProtoMessage

func (*SignUpRequest) ProtoMessage()

func (*SignUpRequest) ProtoReflect added in v0.6.8

func (x *SignUpRequest) ProtoReflect() protoreflect.Message

func (*SignUpRequest) Reset

func (x *SignUpRequest) Reset()

func (*SignUpRequest) String

func (x *SignUpRequest) String() string

type SignUpResponse

type SignUpResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*SignUpResponse) Descriptor deprecated

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

Deprecated: Use SignUpResponse.ProtoReflect.Descriptor instead.

func (*SignUpResponse) GetStatus

func (x *SignUpResponse) GetStatus() *ResponseStatus

func (*SignUpResponse) ProtoMessage

func (*SignUpResponse) ProtoMessage()

func (*SignUpResponse) ProtoReflect added in v0.6.8

func (x *SignUpResponse) ProtoReflect() protoreflect.Message

func (*SignUpResponse) Reset

func (x *SignUpResponse) Reset()

func (*SignUpResponse) String

func (x *SignUpResponse) String() string

type UnSetChapterManagerRequest

type UnSetChapterManagerRequest struct {
	WillUnSetChapterUUID string `protobuf:"bytes,1,opt,name=WillUnSetChapterUUID,proto3" json:"WillUnSetChapterUUID,omitempty"`
	WillUnSetManagerUUID string `protobuf:"bytes,2,opt,name=WillUnSetManagerUUID,proto3" json:"WillUnSetManagerUUID,omitempty"`
	AuthToken            string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetChapterManagerRequest) Descriptor deprecated

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

Deprecated: Use UnSetChapterManagerRequest.ProtoReflect.Descriptor instead.

func (*UnSetChapterManagerRequest) GetAuthToken

func (x *UnSetChapterManagerRequest) GetAuthToken() string

func (*UnSetChapterManagerRequest) GetWillUnSetChapterUUID

func (x *UnSetChapterManagerRequest) GetWillUnSetChapterUUID() string

func (*UnSetChapterManagerRequest) GetWillUnSetManagerUUID

func (x *UnSetChapterManagerRequest) GetWillUnSetManagerUUID() string

func (*UnSetChapterManagerRequest) ProtoMessage

func (*UnSetChapterManagerRequest) ProtoMessage()

func (*UnSetChapterManagerRequest) ProtoReflect added in v0.6.8

func (*UnSetChapterManagerRequest) Reset

func (x *UnSetChapterManagerRequest) Reset()

func (*UnSetChapterManagerRequest) String

func (x *UnSetChapterManagerRequest) String() string

type UnSetChapterManagerResponse

type UnSetChapterManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetChapterManagerResponse) Descriptor deprecated

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

Deprecated: Use UnSetChapterManagerResponse.ProtoReflect.Descriptor instead.

func (*UnSetChapterManagerResponse) GetStatus

func (*UnSetChapterManagerResponse) ProtoMessage

func (*UnSetChapterManagerResponse) ProtoMessage()

func (*UnSetChapterManagerResponse) ProtoReflect added in v0.6.8

func (*UnSetChapterManagerResponse) Reset

func (x *UnSetChapterManagerResponse) Reset()

func (*UnSetChapterManagerResponse) String

func (x *UnSetChapterManagerResponse) String() string

type UnSetClassManagerRequest

type UnSetClassManagerRequest struct {
	WillUnSetClassUUID   string `protobuf:"bytes,1,opt,name=WillUnSetClassUUID,proto3" json:"WillUnSetClassUUID,omitempty"`
	WillUnSetManagerUUID string `protobuf:"bytes,2,opt,name=WillUnSetManagerUUID,proto3" json:"WillUnSetManagerUUID,omitempty"`
	AuthToken            string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetClassManagerRequest) Descriptor deprecated

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

Deprecated: Use UnSetClassManagerRequest.ProtoReflect.Descriptor instead.

func (*UnSetClassManagerRequest) GetAuthToken

func (x *UnSetClassManagerRequest) GetAuthToken() string

func (*UnSetClassManagerRequest) GetWillUnSetClassUUID

func (x *UnSetClassManagerRequest) GetWillUnSetClassUUID() string

func (*UnSetClassManagerRequest) GetWillUnSetManagerUUID

func (x *UnSetClassManagerRequest) GetWillUnSetManagerUUID() string

func (*UnSetClassManagerRequest) ProtoMessage

func (*UnSetClassManagerRequest) ProtoMessage()

func (*UnSetClassManagerRequest) ProtoReflect added in v0.6.8

func (x *UnSetClassManagerRequest) ProtoReflect() protoreflect.Message

func (*UnSetClassManagerRequest) Reset

func (x *UnSetClassManagerRequest) Reset()

func (*UnSetClassManagerRequest) String

func (x *UnSetClassManagerRequest) String() string

type UnSetClassManagerResponse

type UnSetClassManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetClassManagerResponse) Descriptor deprecated

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

Deprecated: Use UnSetClassManagerResponse.ProtoReflect.Descriptor instead.

func (*UnSetClassManagerResponse) GetStatus

func (x *UnSetClassManagerResponse) GetStatus() *ResponseStatus

func (*UnSetClassManagerResponse) ProtoMessage

func (*UnSetClassManagerResponse) ProtoMessage()

func (*UnSetClassManagerResponse) ProtoReflect added in v0.6.8

func (*UnSetClassManagerResponse) Reset

func (x *UnSetClassManagerResponse) Reset()

func (*UnSetClassManagerResponse) String

func (x *UnSetClassManagerResponse) String() string

type UnSetCollegeManagerRequest

type UnSetCollegeManagerRequest struct {
	WillUnSetCollegeUUID string `protobuf:"bytes,1,opt,name=WillUnSetCollegeUUID,proto3" json:"WillUnSetCollegeUUID,omitempty"`
	WillUnSetManagerUUID string `protobuf:"bytes,2,opt,name=WillUnSetManagerUUID,proto3" json:"WillUnSetManagerUUID,omitempty"`
	AuthToken            string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetCollegeManagerRequest) Descriptor deprecated

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

Deprecated: Use UnSetCollegeManagerRequest.ProtoReflect.Descriptor instead.

func (*UnSetCollegeManagerRequest) GetAuthToken

func (x *UnSetCollegeManagerRequest) GetAuthToken() string

func (*UnSetCollegeManagerRequest) GetWillUnSetCollegeUUID

func (x *UnSetCollegeManagerRequest) GetWillUnSetCollegeUUID() string

func (*UnSetCollegeManagerRequest) GetWillUnSetManagerUUID

func (x *UnSetCollegeManagerRequest) GetWillUnSetManagerUUID() string

func (*UnSetCollegeManagerRequest) ProtoMessage

func (*UnSetCollegeManagerRequest) ProtoMessage()

func (*UnSetCollegeManagerRequest) ProtoReflect added in v0.6.8

func (*UnSetCollegeManagerRequest) Reset

func (x *UnSetCollegeManagerRequest) Reset()

func (*UnSetCollegeManagerRequest) String

func (x *UnSetCollegeManagerRequest) String() string

type UnSetCollegeManagerResponse

type UnSetCollegeManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetCollegeManagerResponse) Descriptor deprecated

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

Deprecated: Use UnSetCollegeManagerResponse.ProtoReflect.Descriptor instead.

func (*UnSetCollegeManagerResponse) GetStatus

func (*UnSetCollegeManagerResponse) ProtoMessage

func (*UnSetCollegeManagerResponse) ProtoMessage()

func (*UnSetCollegeManagerResponse) ProtoReflect added in v0.6.8

func (*UnSetCollegeManagerResponse) Reset

func (x *UnSetCollegeManagerResponse) Reset()

func (*UnSetCollegeManagerResponse) String

func (x *UnSetCollegeManagerResponse) String() string

type UnSetCourseManagerRequest

type UnSetCourseManagerRequest struct {
	WillUnSetCourseUUID  string `protobuf:"bytes,1,opt,name=WillUnSetCourseUUID,proto3" json:"WillUnSetCourseUUID,omitempty"`
	WillUnSetManagerUUID string `protobuf:"bytes,2,opt,name=WillUnSetManagerUUID,proto3" json:"WillUnSetManagerUUID,omitempty"`
	AuthToken            string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetCourseManagerRequest) Descriptor deprecated

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

Deprecated: Use UnSetCourseManagerRequest.ProtoReflect.Descriptor instead.

func (*UnSetCourseManagerRequest) GetAuthToken

func (x *UnSetCourseManagerRequest) GetAuthToken() string

func (*UnSetCourseManagerRequest) GetWillUnSetCourseUUID

func (x *UnSetCourseManagerRequest) GetWillUnSetCourseUUID() string

func (*UnSetCourseManagerRequest) GetWillUnSetManagerUUID

func (x *UnSetCourseManagerRequest) GetWillUnSetManagerUUID() string

func (*UnSetCourseManagerRequest) ProtoMessage

func (*UnSetCourseManagerRequest) ProtoMessage()

func (*UnSetCourseManagerRequest) ProtoReflect added in v0.6.8

func (*UnSetCourseManagerRequest) Reset

func (x *UnSetCourseManagerRequest) Reset()

func (*UnSetCourseManagerRequest) String

func (x *UnSetCourseManagerRequest) String() string

type UnSetCourseManagerResponse

type UnSetCourseManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetCourseManagerResponse) Descriptor deprecated

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

Deprecated: Use UnSetCourseManagerResponse.ProtoReflect.Descriptor instead.

func (*UnSetCourseManagerResponse) GetStatus

func (*UnSetCourseManagerResponse) ProtoMessage

func (*UnSetCourseManagerResponse) ProtoMessage()

func (*UnSetCourseManagerResponse) ProtoReflect added in v0.6.8

func (*UnSetCourseManagerResponse) Reset

func (x *UnSetCourseManagerResponse) Reset()

func (*UnSetCourseManagerResponse) String

func (x *UnSetCourseManagerResponse) String() string

type UnSetDisciplineManagerRequest

type UnSetDisciplineManagerRequest struct {
	WillUnSetDisciplineUUID string `protobuf:"bytes,1,opt,name=WillUnSetDisciplineUUID,proto3" json:"WillUnSetDisciplineUUID,omitempty"`
	WillUnSetManagerUUID    string `protobuf:"bytes,2,opt,name=WillUnSetManagerUUID,proto3" json:"WillUnSetManagerUUID,omitempty"`
	AuthToken               string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetDisciplineManagerRequest) Descriptor deprecated

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

Deprecated: Use UnSetDisciplineManagerRequest.ProtoReflect.Descriptor instead.

func (*UnSetDisciplineManagerRequest) GetAuthToken

func (x *UnSetDisciplineManagerRequest) GetAuthToken() string

func (*UnSetDisciplineManagerRequest) GetWillUnSetDisciplineUUID

func (x *UnSetDisciplineManagerRequest) GetWillUnSetDisciplineUUID() string

func (*UnSetDisciplineManagerRequest) GetWillUnSetManagerUUID

func (x *UnSetDisciplineManagerRequest) GetWillUnSetManagerUUID() string

func (*UnSetDisciplineManagerRequest) ProtoMessage

func (*UnSetDisciplineManagerRequest) ProtoMessage()

func (*UnSetDisciplineManagerRequest) ProtoReflect added in v0.6.8

func (*UnSetDisciplineManagerRequest) Reset

func (x *UnSetDisciplineManagerRequest) Reset()

func (*UnSetDisciplineManagerRequest) String

type UnSetDisciplineManagerResponse

type UnSetDisciplineManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetDisciplineManagerResponse) Descriptor deprecated

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

Deprecated: Use UnSetDisciplineManagerResponse.ProtoReflect.Descriptor instead.

func (*UnSetDisciplineManagerResponse) GetStatus

func (*UnSetDisciplineManagerResponse) ProtoMessage

func (*UnSetDisciplineManagerResponse) ProtoMessage()

func (*UnSetDisciplineManagerResponse) ProtoReflect added in v0.6.8

func (*UnSetDisciplineManagerResponse) Reset

func (x *UnSetDisciplineManagerResponse) Reset()

func (*UnSetDisciplineManagerResponse) String

type UnSetQuestionBankManagerRequest

type UnSetQuestionBankManagerRequest struct {
	WillUnSetQuestionBankUUID string `protobuf:"bytes,1,opt,name=WillUnSetQuestionBankUUID,proto3" json:"WillUnSetQuestionBankUUID,omitempty"`
	WillUnSetManagerUUID      string `protobuf:"bytes,2,opt,name=WillUnSetManagerUUID,proto3" json:"WillUnSetManagerUUID,omitempty"`
	AuthToken                 string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetQuestionBankManagerRequest) Descriptor deprecated

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

Deprecated: Use UnSetQuestionBankManagerRequest.ProtoReflect.Descriptor instead.

func (*UnSetQuestionBankManagerRequest) GetAuthToken

func (x *UnSetQuestionBankManagerRequest) GetAuthToken() string

func (*UnSetQuestionBankManagerRequest) GetWillUnSetManagerUUID

func (x *UnSetQuestionBankManagerRequest) GetWillUnSetManagerUUID() string

func (*UnSetQuestionBankManagerRequest) GetWillUnSetQuestionBankUUID

func (x *UnSetQuestionBankManagerRequest) GetWillUnSetQuestionBankUUID() string

func (*UnSetQuestionBankManagerRequest) ProtoMessage

func (*UnSetQuestionBankManagerRequest) ProtoMessage()

func (*UnSetQuestionBankManagerRequest) ProtoReflect added in v0.6.8

func (*UnSetQuestionBankManagerRequest) Reset

func (*UnSetQuestionBankManagerRequest) String

type UnSetQuestionBankManagerResponse

type UnSetQuestionBankManagerResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UnSetQuestionBankManagerResponse) Descriptor deprecated

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

Deprecated: Use UnSetQuestionBankManagerResponse.ProtoReflect.Descriptor instead.

func (*UnSetQuestionBankManagerResponse) GetStatus

func (*UnSetQuestionBankManagerResponse) ProtoMessage

func (*UnSetQuestionBankManagerResponse) ProtoMessage()

func (*UnSetQuestionBankManagerResponse) ProtoReflect added in v0.6.8

func (*UnSetQuestionBankManagerResponse) Reset

func (*UnSetQuestionBankManagerResponse) String

type UnimplementedChapterServiceServer

type UnimplementedChapterServiceServer struct {
}

UnimplementedChapterServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedChapterServiceServer) CreateChapter

func (*UnimplementedChapterServiceServer) DeleteChapter

func (*UnimplementedChapterServiceServer) GetChapter

func (*UnimplementedChapterServiceServer) GetContent

func (*UnimplementedChapterServiceServer) ListChapter

func (*UnimplementedChapterServiceServer) SetChapterManager

func (*UnimplementedChapterServiceServer) UnSetChapterManager

func (*UnimplementedChapterServiceServer) UpdateChapter

func (*UnimplementedChapterServiceServer) UpdateContent

type UnimplementedClassStructServiceServer

type UnimplementedClassStructServiceServer struct {
}

UnimplementedClassStructServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedClassStructServiceServer) CreateClass

func (*UnimplementedClassStructServiceServer) DeleteClass

func (*UnimplementedClassStructServiceServer) GetClass

func (*UnimplementedClassStructServiceServer) ListClass

func (*UnimplementedClassStructServiceServer) ListCollegeClass

func (*UnimplementedClassStructServiceServer) ListDisciplineClass

func (*UnimplementedClassStructServiceServer) SetClassManager

func (*UnimplementedClassStructServiceServer) UnSetClassManager

func (*UnimplementedClassStructServiceServer) UpdateClass

type UnimplementedCollectingDataServiceServer added in v0.6.8

type UnimplementedCollectingDataServiceServer struct {
}

UnimplementedCollectingDataServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedCollectingDataServiceServer) UploadAnswers added in v0.6.8

func (*UnimplementedCollectingDataServiceServer) UploadContentReadings added in v0.6.8

type UnimplementedCollegeStructServiceServer

type UnimplementedCollegeStructServiceServer struct {
}

UnimplementedCollegeStructServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedCollegeStructServiceServer) CreateCollege

func (*UnimplementedCollegeStructServiceServer) DeleteCollege

func (*UnimplementedCollegeStructServiceServer) GetCollege

func (*UnimplementedCollegeStructServiceServer) ListCollege

func (*UnimplementedCollegeStructServiceServer) SetCollegeManager

func (*UnimplementedCollegeStructServiceServer) UnSetCollegeManager

func (*UnimplementedCollegeStructServiceServer) UpdateCollege

type UnimplementedCourseServiceServer

type UnimplementedCourseServiceServer struct {
}

UnimplementedCourseServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedCourseServiceServer) CreateCourse

func (*UnimplementedCourseServiceServer) DeleteCourse

func (*UnimplementedCourseServiceServer) GetCourse

func (*UnimplementedCourseServiceServer) ListCollegeCourse

func (*UnimplementedCourseServiceServer) ListDisciplineCourse

func (*UnimplementedCourseServiceServer) SetCourseManager

func (*UnimplementedCourseServiceServer) UnSetCourseManager

func (*UnimplementedCourseServiceServer) UpdateCourse

type UnimplementedDisciplineStructServiceServer

type UnimplementedDisciplineStructServiceServer struct {
}

UnimplementedDisciplineStructServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedDisciplineStructServiceServer) CreateDiscipline

func (*UnimplementedDisciplineStructServiceServer) DeleteDiscipline

func (*UnimplementedDisciplineStructServiceServer) GetDiscipline

func (*UnimplementedDisciplineStructServiceServer) ListCollegeDiscipline

func (*UnimplementedDisciplineStructServiceServer) ListDiscipline

func (*UnimplementedDisciplineStructServiceServer) SetDisciplineManager

func (*UnimplementedDisciplineStructServiceServer) UnSetDisciplineManager

func (*UnimplementedDisciplineStructServiceServer) UpdateDiscipline

type UnimplementedKnowledgePointServiceServer added in v0.6.8

type UnimplementedKnowledgePointServiceServer struct {
}

UnimplementedKnowledgePointServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedKnowledgePointServiceServer) CreateKnowledgePoint added in v0.6.8

func (*UnimplementedKnowledgePointServiceServer) DeleteKnowledgePoint added in v0.6.8

func (*UnimplementedKnowledgePointServiceServer) ListKnowledgePoint added in v0.6.8

func (*UnimplementedKnowledgePointServiceServer) UpdateKnowledgePoint added in v0.6.8

type UnimplementedQuestionBankServiceServer

type UnimplementedQuestionBankServiceServer struct {
}

UnimplementedQuestionBankServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedQuestionBankServiceServer) CreateQuestionBank

func (*UnimplementedQuestionBankServiceServer) DeleteQuestionBank

func (*UnimplementedQuestionBankServiceServer) GetQuestionBank

func (*UnimplementedQuestionBankServiceServer) ListQuestionBank

func (*UnimplementedQuestionBankServiceServer) SetQuestionBankManager

func (*UnimplementedQuestionBankServiceServer) UpdateQuestionBank

type UnimplementedQuestionServiceServer

type UnimplementedQuestionServiceServer struct {
}

UnimplementedQuestionServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedQuestionServiceServer) CreateQuestion

func (*UnimplementedQuestionServiceServer) DeleteQuestion

func (*UnimplementedQuestionServiceServer) GetQuestion

func (*UnimplementedQuestionServiceServer) ListQuestion

func (*UnimplementedQuestionServiceServer) ShowQuestions

func (*UnimplementedQuestionServiceServer) UpdateQuestion

type UnimplementedUserInfoServiceServer

type UnimplementedUserInfoServiceServer struct {
}

UnimplementedUserInfoServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedUserInfoServiceServer) ChangeUserRole

func (*UnimplementedUserInfoServiceServer) DeleteUser

func (*UnimplementedUserInfoServiceServer) GetUserUUID added in v0.6.6

func (*UnimplementedUserInfoServiceServer) Login

func (*UnimplementedUserInfoServiceServer) ResetPassword

func (*UnimplementedUserInfoServiceServer) SignUp

func (*UnimplementedUserInfoServiceServer) UpdateInfo

func (*UnimplementedUserInfoServiceServer) UpdatePassword

type UpdateChapterRequest

type UpdateChapterRequest struct {
	NewName        string `protobuf:"bytes,1,opt,name=NewName,proto3" json:"NewName,omitempty"`
	NewDescription string `protobuf:"bytes,2,opt,name=NewDescription,proto3" json:"NewDescription,omitempty"`
	WillUpdateUUID string `protobuf:"bytes,3,opt,name=WillUpdateUUID,proto3" json:"WillUpdateUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,4,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateChapterRequest) Descriptor deprecated

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

Deprecated: Use UpdateChapterRequest.ProtoReflect.Descriptor instead.

func (*UpdateChapterRequest) GetAuthToken

func (x *UpdateChapterRequest) GetAuthToken() string

func (*UpdateChapterRequest) GetNewDescription

func (x *UpdateChapterRequest) GetNewDescription() string

func (*UpdateChapterRequest) GetNewName

func (x *UpdateChapterRequest) GetNewName() string

func (*UpdateChapterRequest) GetWillUpdateUUID

func (x *UpdateChapterRequest) GetWillUpdateUUID() string

func (*UpdateChapterRequest) ProtoMessage

func (*UpdateChapterRequest) ProtoMessage()

func (*UpdateChapterRequest) ProtoReflect added in v0.6.8

func (x *UpdateChapterRequest) ProtoReflect() protoreflect.Message

func (*UpdateChapterRequest) Reset

func (x *UpdateChapterRequest) Reset()

func (*UpdateChapterRequest) String

func (x *UpdateChapterRequest) String() string

type UpdateChapterResponse

type UpdateChapterResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateChapterResponse) Descriptor deprecated

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

Deprecated: Use UpdateChapterResponse.ProtoReflect.Descriptor instead.

func (*UpdateChapterResponse) GetStatus

func (x *UpdateChapterResponse) GetStatus() *ResponseStatus

func (*UpdateChapterResponse) ProtoMessage

func (*UpdateChapterResponse) ProtoMessage()

func (*UpdateChapterResponse) ProtoReflect added in v0.6.8

func (x *UpdateChapterResponse) ProtoReflect() protoreflect.Message

func (*UpdateChapterResponse) Reset

func (x *UpdateChapterResponse) Reset()

func (*UpdateChapterResponse) String

func (x *UpdateChapterResponse) String() string

type UpdateClassRequest

type UpdateClassRequest struct {
	NewName        string `protobuf:"bytes,1,opt,name=NewName,proto3" json:"NewName,omitempty"`
	NewDescription string `protobuf:"bytes,2,opt,name=NewDescription,proto3" json:"NewDescription,omitempty"`
	WillUpdateUUID string `protobuf:"bytes,3,opt,name=WillUpdateUUID,proto3" json:"WillUpdateUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,4,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateClassRequest) Descriptor deprecated

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

Deprecated: Use UpdateClassRequest.ProtoReflect.Descriptor instead.

func (*UpdateClassRequest) GetAuthToken

func (x *UpdateClassRequest) GetAuthToken() string

func (*UpdateClassRequest) GetNewDescription

func (x *UpdateClassRequest) GetNewDescription() string

func (*UpdateClassRequest) GetNewName

func (x *UpdateClassRequest) GetNewName() string

func (*UpdateClassRequest) GetWillUpdateUUID

func (x *UpdateClassRequest) GetWillUpdateUUID() string

func (*UpdateClassRequest) ProtoMessage

func (*UpdateClassRequest) ProtoMessage()

func (*UpdateClassRequest) ProtoReflect added in v0.6.8

func (x *UpdateClassRequest) ProtoReflect() protoreflect.Message

func (*UpdateClassRequest) Reset

func (x *UpdateClassRequest) Reset()

func (*UpdateClassRequest) String

func (x *UpdateClassRequest) String() string

type UpdateClassResponse

type UpdateClassResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateClassResponse) Descriptor deprecated

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

Deprecated: Use UpdateClassResponse.ProtoReflect.Descriptor instead.

func (*UpdateClassResponse) GetStatus

func (x *UpdateClassResponse) GetStatus() *ResponseStatus

func (*UpdateClassResponse) ProtoMessage

func (*UpdateClassResponse) ProtoMessage()

func (*UpdateClassResponse) ProtoReflect added in v0.6.8

func (x *UpdateClassResponse) ProtoReflect() protoreflect.Message

func (*UpdateClassResponse) Reset

func (x *UpdateClassResponse) Reset()

func (*UpdateClassResponse) String

func (x *UpdateClassResponse) String() string

type UpdateCollegeRequest

type UpdateCollegeRequest struct {
	NewName        string `protobuf:"bytes,1,opt,name=NewName,proto3" json:"NewName,omitempty"`
	NewDescription string `protobuf:"bytes,2,opt,name=NewDescription,proto3" json:"NewDescription,omitempty"`
	WillUpdateUUID string `protobuf:"bytes,3,opt,name=WillUpdateUUID,proto3" json:"WillUpdateUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,4,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateCollegeRequest) Descriptor deprecated

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

Deprecated: Use UpdateCollegeRequest.ProtoReflect.Descriptor instead.

func (*UpdateCollegeRequest) GetAuthToken

func (x *UpdateCollegeRequest) GetAuthToken() string

func (*UpdateCollegeRequest) GetNewDescription

func (x *UpdateCollegeRequest) GetNewDescription() string

func (*UpdateCollegeRequest) GetNewName

func (x *UpdateCollegeRequest) GetNewName() string

func (*UpdateCollegeRequest) GetWillUpdateUUID

func (x *UpdateCollegeRequest) GetWillUpdateUUID() string

func (*UpdateCollegeRequest) ProtoMessage

func (*UpdateCollegeRequest) ProtoMessage()

func (*UpdateCollegeRequest) ProtoReflect added in v0.6.8

func (x *UpdateCollegeRequest) ProtoReflect() protoreflect.Message

func (*UpdateCollegeRequest) Reset

func (x *UpdateCollegeRequest) Reset()

func (*UpdateCollegeRequest) String

func (x *UpdateCollegeRequest) String() string

type UpdateCollegeResponse

type UpdateCollegeResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateCollegeResponse) Descriptor deprecated

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

Deprecated: Use UpdateCollegeResponse.ProtoReflect.Descriptor instead.

func (*UpdateCollegeResponse) GetStatus

func (x *UpdateCollegeResponse) GetStatus() *ResponseStatus

func (*UpdateCollegeResponse) ProtoMessage

func (*UpdateCollegeResponse) ProtoMessage()

func (*UpdateCollegeResponse) ProtoReflect added in v0.6.8

func (x *UpdateCollegeResponse) ProtoReflect() protoreflect.Message

func (*UpdateCollegeResponse) Reset

func (x *UpdateCollegeResponse) Reset()

func (*UpdateCollegeResponse) String

func (x *UpdateCollegeResponse) String() string

type UpdateContentRequest

type UpdateContentRequest struct {
	WillUpdateUUID string `protobuf:"bytes,1,opt,name=WillUpdateUUID,proto3" json:"WillUpdateUUID,omitempty"`
	MarkdownBase64 string `protobuf:"bytes,2,opt,name=MarkdownBase64,proto3" json:"MarkdownBase64,omitempty"`
	AuthToken      string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateContentRequest) Descriptor deprecated

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

Deprecated: Use UpdateContentRequest.ProtoReflect.Descriptor instead.

func (*UpdateContentRequest) GetAuthToken

func (x *UpdateContentRequest) GetAuthToken() string

func (*UpdateContentRequest) GetMarkdownBase64

func (x *UpdateContentRequest) GetMarkdownBase64() string

func (*UpdateContentRequest) GetWillUpdateUUID

func (x *UpdateContentRequest) GetWillUpdateUUID() string

func (*UpdateContentRequest) ProtoMessage

func (*UpdateContentRequest) ProtoMessage()

func (*UpdateContentRequest) ProtoReflect added in v0.6.8

func (x *UpdateContentRequest) ProtoReflect() protoreflect.Message

func (*UpdateContentRequest) Reset

func (x *UpdateContentRequest) Reset()

func (*UpdateContentRequest) String

func (x *UpdateContentRequest) String() string

type UpdateContentResponse

type UpdateContentResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateContentResponse) Descriptor deprecated

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

Deprecated: Use UpdateContentResponse.ProtoReflect.Descriptor instead.

func (*UpdateContentResponse) GetStatus

func (x *UpdateContentResponse) GetStatus() *ResponseStatus

func (*UpdateContentResponse) ProtoMessage

func (*UpdateContentResponse) ProtoMessage()

func (*UpdateContentResponse) ProtoReflect added in v0.6.8

func (x *UpdateContentResponse) ProtoReflect() protoreflect.Message

func (*UpdateContentResponse) Reset

func (x *UpdateContentResponse) Reset()

func (*UpdateContentResponse) String

func (x *UpdateContentResponse) String() string

type UpdateCourseRequest

type UpdateCourseRequest struct {
	NewName        string `protobuf:"bytes,1,opt,name=NewName,proto3" json:"NewName,omitempty"`
	NewDescription string `protobuf:"bytes,2,opt,name=NewDescription,proto3" json:"NewDescription,omitempty"`
	WillUpdateUUID string `protobuf:"bytes,3,opt,name=WillUpdateUUID,proto3" json:"WillUpdateUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,4,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateCourseRequest) Descriptor deprecated

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

Deprecated: Use UpdateCourseRequest.ProtoReflect.Descriptor instead.

func (*UpdateCourseRequest) GetAuthToken

func (x *UpdateCourseRequest) GetAuthToken() string

func (*UpdateCourseRequest) GetNewDescription

func (x *UpdateCourseRequest) GetNewDescription() string

func (*UpdateCourseRequest) GetNewName

func (x *UpdateCourseRequest) GetNewName() string

func (*UpdateCourseRequest) GetWillUpdateUUID

func (x *UpdateCourseRequest) GetWillUpdateUUID() string

func (*UpdateCourseRequest) ProtoMessage

func (*UpdateCourseRequest) ProtoMessage()

func (*UpdateCourseRequest) ProtoReflect added in v0.6.8

func (x *UpdateCourseRequest) ProtoReflect() protoreflect.Message

func (*UpdateCourseRequest) Reset

func (x *UpdateCourseRequest) Reset()

func (*UpdateCourseRequest) String

func (x *UpdateCourseRequest) String() string

type UpdateCourseResponse

type UpdateCourseResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateCourseResponse) Descriptor deprecated

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

Deprecated: Use UpdateCourseResponse.ProtoReflect.Descriptor instead.

func (*UpdateCourseResponse) GetStatus

func (x *UpdateCourseResponse) GetStatus() *ResponseStatus

func (*UpdateCourseResponse) ProtoMessage

func (*UpdateCourseResponse) ProtoMessage()

func (*UpdateCourseResponse) ProtoReflect added in v0.6.8

func (x *UpdateCourseResponse) ProtoReflect() protoreflect.Message

func (*UpdateCourseResponse) Reset

func (x *UpdateCourseResponse) Reset()

func (*UpdateCourseResponse) String

func (x *UpdateCourseResponse) String() string

type UpdateDisciplineRequest

type UpdateDisciplineRequest struct {
	NewName        string `protobuf:"bytes,1,opt,name=NewName,proto3" json:"NewName,omitempty"`
	NewDescription string `protobuf:"bytes,2,opt,name=NewDescription,proto3" json:"NewDescription,omitempty"`
	WillUpdateUUID string `protobuf:"bytes,3,opt,name=WillUpdateUUID,proto3" json:"WillUpdateUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,4,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateDisciplineRequest) Descriptor deprecated

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

Deprecated: Use UpdateDisciplineRequest.ProtoReflect.Descriptor instead.

func (*UpdateDisciplineRequest) GetAuthToken

func (x *UpdateDisciplineRequest) GetAuthToken() string

func (*UpdateDisciplineRequest) GetNewDescription

func (x *UpdateDisciplineRequest) GetNewDescription() string

func (*UpdateDisciplineRequest) GetNewName

func (x *UpdateDisciplineRequest) GetNewName() string

func (*UpdateDisciplineRequest) GetWillUpdateUUID

func (x *UpdateDisciplineRequest) GetWillUpdateUUID() string

func (*UpdateDisciplineRequest) ProtoMessage

func (*UpdateDisciplineRequest) ProtoMessage()

func (*UpdateDisciplineRequest) ProtoReflect added in v0.6.8

func (x *UpdateDisciplineRequest) ProtoReflect() protoreflect.Message

func (*UpdateDisciplineRequest) Reset

func (x *UpdateDisciplineRequest) Reset()

func (*UpdateDisciplineRequest) String

func (x *UpdateDisciplineRequest) String() string

type UpdateDisciplineResponse

type UpdateDisciplineResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateDisciplineResponse) Descriptor deprecated

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

Deprecated: Use UpdateDisciplineResponse.ProtoReflect.Descriptor instead.

func (*UpdateDisciplineResponse) GetStatus

func (x *UpdateDisciplineResponse) GetStatus() *ResponseStatus

func (*UpdateDisciplineResponse) ProtoMessage

func (*UpdateDisciplineResponse) ProtoMessage()

func (*UpdateDisciplineResponse) ProtoReflect added in v0.6.8

func (x *UpdateDisciplineResponse) ProtoReflect() protoreflect.Message

func (*UpdateDisciplineResponse) Reset

func (x *UpdateDisciplineResponse) Reset()

func (*UpdateDisciplineResponse) String

func (x *UpdateDisciplineResponse) String() string

type UpdateInfoRequest

type UpdateInfoRequest struct {
	NewName           string             `protobuf:"bytes,1,opt,name=NewName,proto3" json:"NewName,omitempty"`
	NewGender         UserGenderTypeCode `protobuf:"varint,2,opt,name=NewGender,proto3,enum=pb.UserGenderTypeCode" json:"NewGender,omitempty"`
	NewCollegeUUID    string             `protobuf:"bytes,3,opt,name=NewCollegeUUID,proto3" json:"NewCollegeUUID,omitempty"`
	NewDisciplineUUID string             `protobuf:"bytes,4,opt,name=NewDisciplineUUID,proto3" json:"NewDisciplineUUID,omitempty"`
	NewClassUUID      string             `protobuf:"bytes,5,opt,name=NewClassUUID,proto3" json:"NewClassUUID,omitempty"`
	AuthToken         string             `protobuf:"bytes,6,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateInfoRequest) Descriptor deprecated

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

Deprecated: Use UpdateInfoRequest.ProtoReflect.Descriptor instead.

func (*UpdateInfoRequest) GetAuthToken

func (x *UpdateInfoRequest) GetAuthToken() string

func (*UpdateInfoRequest) GetNewClassUUID

func (x *UpdateInfoRequest) GetNewClassUUID() string

func (*UpdateInfoRequest) GetNewCollegeUUID

func (x *UpdateInfoRequest) GetNewCollegeUUID() string

func (*UpdateInfoRequest) GetNewDisciplineUUID

func (x *UpdateInfoRequest) GetNewDisciplineUUID() string

func (*UpdateInfoRequest) GetNewGender

func (x *UpdateInfoRequest) GetNewGender() UserGenderTypeCode

func (*UpdateInfoRequest) GetNewName

func (x *UpdateInfoRequest) GetNewName() string

func (*UpdateInfoRequest) ProtoMessage

func (*UpdateInfoRequest) ProtoMessage()

func (*UpdateInfoRequest) ProtoReflect added in v0.6.8

func (x *UpdateInfoRequest) ProtoReflect() protoreflect.Message

func (*UpdateInfoRequest) Reset

func (x *UpdateInfoRequest) Reset()

func (*UpdateInfoRequest) String

func (x *UpdateInfoRequest) String() string

type UpdateInfoResponse

type UpdateInfoResponse struct {
	NewToken string          `protobuf:"bytes,1,opt,name=NewToken,proto3" json:"NewToken,omitempty"`
	Status   *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateInfoResponse) Descriptor deprecated

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

Deprecated: Use UpdateInfoResponse.ProtoReflect.Descriptor instead.

func (*UpdateInfoResponse) GetNewToken

func (x *UpdateInfoResponse) GetNewToken() string

func (*UpdateInfoResponse) GetStatus

func (x *UpdateInfoResponse) GetStatus() *ResponseStatus

func (*UpdateInfoResponse) ProtoMessage

func (*UpdateInfoResponse) ProtoMessage()

func (*UpdateInfoResponse) ProtoReflect added in v0.6.8

func (x *UpdateInfoResponse) ProtoReflect() protoreflect.Message

func (*UpdateInfoResponse) Reset

func (x *UpdateInfoResponse) Reset()

func (*UpdateInfoResponse) String

func (x *UpdateInfoResponse) String() string

type UpdateKnowledgePointRequest added in v0.6.8

type UpdateKnowledgePointRequest struct {
	UUID       string `protobuf:"bytes,1,opt,name=UUID,proto3" json:"UUID,omitempty"`
	Name       string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
	ParentUUID string `protobuf:"bytes,3,opt,name=ParentUUID,proto3" json:"ParentUUID,omitempty"`
	AuthToken  string `protobuf:"bytes,4,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateKnowledgePointRequest) Descriptor deprecated added in v0.6.8

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

Deprecated: Use UpdateKnowledgePointRequest.ProtoReflect.Descriptor instead.

func (*UpdateKnowledgePointRequest) GetAuthToken added in v0.6.8

func (x *UpdateKnowledgePointRequest) GetAuthToken() string

func (*UpdateKnowledgePointRequest) GetName added in v0.6.8

func (x *UpdateKnowledgePointRequest) GetName() string

func (*UpdateKnowledgePointRequest) GetParentUUID added in v0.6.8

func (x *UpdateKnowledgePointRequest) GetParentUUID() string

func (*UpdateKnowledgePointRequest) GetUUID added in v0.6.8

func (x *UpdateKnowledgePointRequest) GetUUID() string

func (*UpdateKnowledgePointRequest) ProtoMessage added in v0.6.8

func (*UpdateKnowledgePointRequest) ProtoMessage()

func (*UpdateKnowledgePointRequest) ProtoReflect added in v0.6.8

func (*UpdateKnowledgePointRequest) Reset added in v0.6.8

func (x *UpdateKnowledgePointRequest) Reset()

func (*UpdateKnowledgePointRequest) String added in v0.6.8

func (x *UpdateKnowledgePointRequest) String() string

type UpdateKnowledgePointResponse added in v0.6.8

type UpdateKnowledgePointResponse struct {
	Status *ResponseStatus `protobuf:"bytes,2,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateKnowledgePointResponse) Descriptor deprecated added in v0.6.8

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

Deprecated: Use UpdateKnowledgePointResponse.ProtoReflect.Descriptor instead.

func (*UpdateKnowledgePointResponse) GetStatus added in v0.6.8

func (*UpdateKnowledgePointResponse) ProtoMessage added in v0.6.8

func (*UpdateKnowledgePointResponse) ProtoMessage()

func (*UpdateKnowledgePointResponse) ProtoReflect added in v0.6.8

func (*UpdateKnowledgePointResponse) Reset added in v0.6.8

func (x *UpdateKnowledgePointResponse) Reset()

func (*UpdateKnowledgePointResponse) String added in v0.6.8

type UpdatePasswordRequest

type UpdatePasswordRequest struct {
	NewPasswordMD5       string `protobuf:"bytes,1,opt,name=NewPasswordMD5,proto3" json:"NewPasswordMD5,omitempty"`
	VerifyNewPasswordMD5 string `protobuf:"bytes,2,opt,name=VerifyNewPasswordMD5,proto3" json:"VerifyNewPasswordMD5,omitempty"`
	AuthToken            string `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdatePasswordRequest) Descriptor deprecated

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

Deprecated: Use UpdatePasswordRequest.ProtoReflect.Descriptor instead.

func (*UpdatePasswordRequest) GetAuthToken

func (x *UpdatePasswordRequest) GetAuthToken() string

func (*UpdatePasswordRequest) GetNewPasswordMD5

func (x *UpdatePasswordRequest) GetNewPasswordMD5() string

func (*UpdatePasswordRequest) GetVerifyNewPasswordMD5

func (x *UpdatePasswordRequest) GetVerifyNewPasswordMD5() string

func (*UpdatePasswordRequest) ProtoMessage

func (*UpdatePasswordRequest) ProtoMessage()

func (*UpdatePasswordRequest) ProtoReflect added in v0.6.8

func (x *UpdatePasswordRequest) ProtoReflect() protoreflect.Message

func (*UpdatePasswordRequest) Reset

func (x *UpdatePasswordRequest) Reset()

func (*UpdatePasswordRequest) String

func (x *UpdatePasswordRequest) String() string

type UpdatePasswordResponse

type UpdatePasswordResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdatePasswordResponse) Descriptor deprecated

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

Deprecated: Use UpdatePasswordResponse.ProtoReflect.Descriptor instead.

func (*UpdatePasswordResponse) GetStatus

func (x *UpdatePasswordResponse) GetStatus() *ResponseStatus

func (*UpdatePasswordResponse) ProtoMessage

func (*UpdatePasswordResponse) ProtoMessage()

func (*UpdatePasswordResponse) ProtoReflect added in v0.6.8

func (x *UpdatePasswordResponse) ProtoReflect() protoreflect.Message

func (*UpdatePasswordResponse) Reset

func (x *UpdatePasswordResponse) Reset()

func (*UpdatePasswordResponse) String

func (x *UpdatePasswordResponse) String() string

type UpdateQuestionBankRequest

type UpdateQuestionBankRequest struct {
	Name           string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Description    string `protobuf:"bytes,2,opt,name=Description,proto3" json:"Description,omitempty"`
	WillUpdateUUID string `protobuf:"bytes,3,opt,name=WillUpdateUUID,proto3" json:"WillUpdateUUID,omitempty"`
	AuthToken      string `protobuf:"bytes,4,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateQuestionBankRequest) Descriptor deprecated

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

Deprecated: Use UpdateQuestionBankRequest.ProtoReflect.Descriptor instead.

func (*UpdateQuestionBankRequest) GetAuthToken

func (x *UpdateQuestionBankRequest) GetAuthToken() string

func (*UpdateQuestionBankRequest) GetDescription

func (x *UpdateQuestionBankRequest) GetDescription() string

func (*UpdateQuestionBankRequest) GetName

func (x *UpdateQuestionBankRequest) GetName() string

func (*UpdateQuestionBankRequest) GetWillUpdateUUID

func (x *UpdateQuestionBankRequest) GetWillUpdateUUID() string

func (*UpdateQuestionBankRequest) ProtoMessage

func (*UpdateQuestionBankRequest) ProtoMessage()

func (*UpdateQuestionBankRequest) ProtoReflect added in v0.6.8

func (*UpdateQuestionBankRequest) Reset

func (x *UpdateQuestionBankRequest) Reset()

func (*UpdateQuestionBankRequest) String

func (x *UpdateQuestionBankRequest) String() string

type UpdateQuestionBankResponse

type UpdateQuestionBankResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateQuestionBankResponse) Descriptor deprecated

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

Deprecated: Use UpdateQuestionBankResponse.ProtoReflect.Descriptor instead.

func (*UpdateQuestionBankResponse) GetStatus

func (*UpdateQuestionBankResponse) ProtoMessage

func (*UpdateQuestionBankResponse) ProtoMessage()

func (*UpdateQuestionBankResponse) ProtoReflect added in v0.6.8

func (*UpdateQuestionBankResponse) Reset

func (x *UpdateQuestionBankResponse) Reset()

func (*UpdateQuestionBankResponse) String

func (x *UpdateQuestionBankResponse) String() string

type UpdateQuestionRequest

type UpdateQuestionRequest struct {
	Question       *QuestionInfoUnit `protobuf:"bytes,1,opt,name=Question,proto3" json:"Question,omitempty"`
	WillUpdateUUID string            `protobuf:"bytes,2,opt,name=WillUpdateUUID,proto3" json:"WillUpdateUUID,omitempty"`
	AuthToken      string            `protobuf:"bytes,3,opt,name=AuthToken,proto3" json:"AuthToken,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateQuestionRequest) Descriptor deprecated

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

Deprecated: Use UpdateQuestionRequest.ProtoReflect.Descriptor instead.

func (*UpdateQuestionRequest) GetAuthToken

func (x *UpdateQuestionRequest) GetAuthToken() string

func (*UpdateQuestionRequest) GetQuestion

func (x *UpdateQuestionRequest) GetQuestion() *QuestionInfoUnit

func (*UpdateQuestionRequest) GetWillUpdateUUID

func (x *UpdateQuestionRequest) GetWillUpdateUUID() string

func (*UpdateQuestionRequest) ProtoMessage

func (*UpdateQuestionRequest) ProtoMessage()

func (*UpdateQuestionRequest) ProtoReflect added in v0.6.8

func (x *UpdateQuestionRequest) ProtoReflect() protoreflect.Message

func (*UpdateQuestionRequest) Reset

func (x *UpdateQuestionRequest) Reset()

func (*UpdateQuestionRequest) String

func (x *UpdateQuestionRequest) String() string

type UpdateQuestionResponse

type UpdateQuestionResponse struct {
	Status *ResponseStatus `protobuf:"bytes,1,opt,name=Status,proto3" json:"Status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateQuestionResponse) Descriptor deprecated

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

Deprecated: Use UpdateQuestionResponse.ProtoReflect.Descriptor instead.

func (*UpdateQuestionResponse) GetStatus

func (x *UpdateQuestionResponse) GetStatus() *ResponseStatus

func (*UpdateQuestionResponse) ProtoMessage

func (*UpdateQuestionResponse) ProtoMessage()

func (*UpdateQuestionResponse) ProtoReflect added in v0.6.8

func (x *UpdateQuestionResponse) ProtoReflect() protoreflect.Message

func (*UpdateQuestionResponse) Reset

func (x *UpdateQuestionResponse) Reset()

func (*UpdateQuestionResponse) String

func (x *UpdateQuestionResponse) String() string

type UserGenderTypeCode

type UserGenderTypeCode int32
const (
	UserGenderTypeCode_Other UserGenderTypeCode = 0
	UserGenderTypeCode_Man   UserGenderTypeCode = 1
	UserGenderTypeCode_WoMan UserGenderTypeCode = 2
)

func (UserGenderTypeCode) Descriptor added in v0.6.8

func (UserGenderTypeCode) Enum added in v0.6.8

func (UserGenderTypeCode) EnumDescriptor deprecated

func (UserGenderTypeCode) EnumDescriptor() ([]byte, []int)

Deprecated: Use UserGenderTypeCode.Descriptor instead.

func (UserGenderTypeCode) Number added in v0.6.8

func (UserGenderTypeCode) String

func (x UserGenderTypeCode) String() string

func (UserGenderTypeCode) Type added in v0.6.8

type UserInfoServiceClient

type UserInfoServiceClient interface {
	Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error)
	SignUp(ctx context.Context, in *SignUpRequest, opts ...grpc.CallOption) (*SignUpResponse, error)
	UpdateInfo(ctx context.Context, in *UpdateInfoRequest, opts ...grpc.CallOption) (*UpdateInfoResponse, error)
	UpdatePassword(ctx context.Context, in *UpdatePasswordRequest, opts ...grpc.CallOption) (*UpdatePasswordResponse, error)
	ResetPassword(ctx context.Context, in *ResetPasswordRequest, opts ...grpc.CallOption) (*ResetPasswordResponse, error)
	DeleteUser(ctx context.Context, in *DeleteUserRequest, opts ...grpc.CallOption) (*DeleteUserResponse, error)
	ChangeUserRole(ctx context.Context, in *ChangeUserRoleRequest, opts ...grpc.CallOption) (*ChangeUserRoleResponse, error)
	GetUserUUID(ctx context.Context, in *GetUserUUIDRequest, opts ...grpc.CallOption) (*GetUserUUIDResponse, error)
}

UserInfoServiceClient is the client API for UserInfoService service.

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

type UserRoleTypeCode

type UserRoleTypeCode int32
const (
	UserRoleTypeCode_Undefine        UserRoleTypeCode = 0
	UserRoleTypeCode_Root            UserRoleTypeCode = 1
	UserRoleTypeCode_Maintainer      UserRoleTypeCode = 2
	UserRoleTypeCode_Manager         UserRoleTypeCode = 3
	UserRoleTypeCode_Leader          UserRoleTypeCode = 4
	UserRoleTypeCode_Teacher         UserRoleTypeCode = 5
	UserRoleTypeCode_Undergraduate   UserRoleTypeCode = 6
	UserRoleTypeCode_GraduateStudent UserRoleTypeCode = 7
	UserRoleTypeCode_DoctoralStudent UserRoleTypeCode = 8
)

func (UserRoleTypeCode) Descriptor added in v0.6.8

func (UserRoleTypeCode) Enum added in v0.6.8

func (UserRoleTypeCode) EnumDescriptor deprecated

func (UserRoleTypeCode) EnumDescriptor() ([]byte, []int)

Deprecated: Use UserRoleTypeCode.Descriptor instead.

func (UserRoleTypeCode) Number added in v0.6.8

func (UserRoleTypeCode) String

func (x UserRoleTypeCode) String() string

func (UserRoleTypeCode) Type added in v0.6.8

Directories

Path Synopsis
github.com
ppp
Package pb is a reverse proxy.
Package pb is a reverse proxy.

Jump to

Keyboard shortcuts

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