Documentation ¶
Index ¶
- Variables
- type PingService
- type RowsService
- func (s *RowsService) CheckIsAppCollaborator(ctx context.Context, req *pb.CheckIsAppCollaboratorRequest) (*pb.CheckIsAppCollaboratorReply, error)
- func (s *RowsService) Delete(ctx context.Context, req *pb.DeleteRequest) (*pb.DeleteReply, error)
- func (s *RowsService) DeleteValues(ctx context.Context, req *pb.DeleteValuesRequest) (*pb.DeleteValuesReply, error)
- func (s *RowsService) ExchangeSummaryCondition(ctx context.Context, req *pb.ExchangeSummaryConditionRequest) (*pb.ExchangeSummaryConditionReply, error)
- func (s *RowsService) GetAppCollaboratorRoles(ctx context.Context, req *pb.GetAppCollaboratorRolesRequest) (*pb.GetAppCollaboratorRolesReply, error)
- func (s *RowsService) GetDataCollaborators(ctx context.Context, req *pb.GetDataCollaboratorsRequest) (*pb.GetDataCollaboratorsReply, error)
- func (s *RowsService) GetUserAppCollaboratorRoles(ctx context.Context, req *pb.GetUserAppCollaboratorRolesRequest) (*pb.GetUserAppCollaboratorRolesReply, error)
- func (s *RowsService) List(ctx context.Context, req *pb.ListRequest) (*pb.ListReply, error)
- func (s *RowsService) ListRaw(ctx context.Context, req *pb.ListRawRequest) (*pb.ListRawReply, error)
- func (s *RowsService) RecoverAttachment(ctx context.Context, req *pb.RecoverAttachmentRequest) (*pb.RecoverAttachmentReply, error)
- func (s *RowsService) RecycleAttachment(ctx context.Context, req *pb.RecycleAttachmentRequest) (*pb.RecycleAttachmentReply, error)
- type TableService
- func (s *TableService) CopyColumn(ctx context.Context, req *pb.CopyColumnRequest) (*pb.CopyColumnReply, error)
- func (s *TableService) CopyRow(ctx context.Context, req *pb.CopyRowRequest) (*pb.CopyRowReply, error)
- func (s *TableService) CopyTables(ctx context.Context, req *pb.CopyTablesRequest) (*pb.CopyTablesReply, error)
- func (s *TableService) CreateColumn(ctx context.Context, req *pb.CreateColumnRequest) (*pb.CreateColumnReply, error)
- func (s *TableService) CreateOrgColumn(ctx context.Context, req *pb.CreateOrgColumnRequest) (*pb.CreateOrgColumnReply, error)
- func (s *TableService) CreateRows(ctx context.Context, req *pb.CreateRowsRequest) (*pb.CreateRowsReply, error)
- func (s *TableService) CreateSummeryTable(ctx context.Context, req *pb.CreateSummeryTableRequest) (*pb.CreateSummeryTableReply, error)
- func (s *TableService) CreateTable(ctx context.Context, req *pb.CreateTableRequest) (*pb.CreateTableReply, error)
- func (s *TableService) DeleteColumn(ctx context.Context, req *pb.DeleteColumnRequest) (*pb.DeleteColumnReply, error)
- func (s *TableService) DeleteOrgColumn(ctx context.Context, req *pb.DeleteOrgColumnRequest) (*pb.DeleteOrgColumnReply, error)
- func (s *TableService) DeleteRow(ctx context.Context, req *pb.DeleteRowRequest) (*pb.DeleteRowReply, error)
- func (s *TableService) DeleteTable(ctx context.Context, req *pb.DeleteTableRequest) (*pb.DeleteTableReply, error)
- func (s *TableService) InitOrgColumns(ctx context.Context, req *pb.InitOrgColumnsRequest) (*pb.InitOrgColumnsReply, error)
- func (s *TableService) MoveRow(ctx context.Context, req *pb.MoveRowRequest) (*pb.MoveRowReply, error)
- func (s *TableService) ReadOrgColumns(ctx context.Context, req *pb.ReadOrgColumnsRequest) (*pb.ReadOrgColumnsReply, error)
- func (s *TableService) ReadOrgTableSchemas(ctx context.Context, req *pb.ReadOrgTableSchemasRequest) (*pb.ReadOrgTableSchemasReply, error)
- func (s *TableService) ReadOrgTables(ctx context.Context, req *pb.ReadOrgTablesRequest) (*pb.ReadOrgTablesReply, error)
- func (s *TableService) ReadSummeryTableId(ctx context.Context, req *pb.ReadSummeryTableIdRequest) (*pb.ReadSummeryTableIdReply, error)
- func (s *TableService) ReadTable(ctx context.Context, req *pb.ReadTableRequest) (*pb.ReadTableReply, error)
- func (s *TableService) ReadTableSchemas(ctx context.Context, req *pb.ReadTableSchemasRequest) (*pb.ReadTableSchemasReply, error)
- func (s *TableService) ReadTableSchemasByAppId(ctx context.Context, req *pb.ReadTableSchemasByAppIdRequest) (*pb.ReadTableSchemasByAppIdReply, error)
- func (s *TableService) ReadTables(ctx context.Context, req *pb.ReadTablesRequest) (*pb.ReadTablesReply, error)
- func (s *TableService) ReadTablesByApps(ctx context.Context, req *pb.ReadTablesByAppsRequest) (*pb.ReadTablesByAppsReply, error)
- func (s *TableService) RenameTable(ctx context.Context, req *pb.RenameTableRequest) (*pb.RenameTableReply, error)
- func (s *TableService) SetAutoSchedule(ctx context.Context, req *pb.SetAutoScheduleRequest) (*pb.SetAutoScheduleReply, error)
- func (s *TableService) UpdateColumn(ctx context.Context, req *pb.UpdateColumnRequest) (*pb.UpdateColumnReply, error)
- func (s *TableService) UpdateColumnDescription(ctx context.Context, req *pb.UpdateColumnDescriptionRequest) (*pb.UpdateColumnDescriptionReply, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var ProviderSet = wire.NewSet(NewTableService, NewRowsService, NewPingService)
ProviderSet is service providers.
Functions ¶
This section is empty.
Types ¶
type PingService ¶
type PingService struct { pb.UnimplementedPingServer // contains filtered or unexported fields }
func NewPingService ¶
func NewPingService(logger log.Logger) *PingService
func (*PingService) Ping ¶
func (s *PingService) Ping(ctx context.Context, req *pb.PingRequest) (*pb.PingReply, error)
type RowsService ¶
type RowsService struct { pb.UnimplementedRowsServer // contains filtered or unexported fields }
func NewRowsService ¶
func NewRowsService(row *biz.RowUseCase, logger log.Logger) *RowsService
func (*RowsService) CheckIsAppCollaborator ¶
func (s *RowsService) CheckIsAppCollaborator(ctx context.Context, req *pb.CheckIsAppCollaboratorRequest) (*pb.CheckIsAppCollaboratorReply, error)
func (*RowsService) Delete ¶
func (s *RowsService) Delete(ctx context.Context, req *pb.DeleteRequest) (*pb.DeleteReply, error)
func (*RowsService) DeleteValues ¶
func (s *RowsService) DeleteValues(ctx context.Context, req *pb.DeleteValuesRequest) (*pb.DeleteValuesReply, error)
func (*RowsService) ExchangeSummaryCondition ¶
func (s *RowsService) ExchangeSummaryCondition(ctx context.Context, req *pb.ExchangeSummaryConditionRequest) (*pb.ExchangeSummaryConditionReply, error)
func (*RowsService) GetAppCollaboratorRoles ¶
func (s *RowsService) GetAppCollaboratorRoles(ctx context.Context, req *pb.GetAppCollaboratorRolesRequest) (*pb.GetAppCollaboratorRolesReply, error)
func (*RowsService) GetDataCollaborators ¶
func (s *RowsService) GetDataCollaborators(ctx context.Context, req *pb.GetDataCollaboratorsRequest) (*pb.GetDataCollaboratorsReply, error)
func (*RowsService) GetUserAppCollaboratorRoles ¶
func (s *RowsService) GetUserAppCollaboratorRoles(ctx context.Context, req *pb.GetUserAppCollaboratorRolesRequest) (*pb.GetUserAppCollaboratorRolesReply, error)
func (*RowsService) List ¶
func (s *RowsService) List(ctx context.Context, req *pb.ListRequest) (*pb.ListReply, error)
func (*RowsService) ListRaw ¶
func (s *RowsService) ListRaw(ctx context.Context, req *pb.ListRawRequest) (*pb.ListRawReply, error)
func (*RowsService) RecoverAttachment ¶
func (s *RowsService) RecoverAttachment(ctx context.Context, req *pb.RecoverAttachmentRequest) (*pb.RecoverAttachmentReply, error)
func (*RowsService) RecycleAttachment ¶
func (s *RowsService) RecycleAttachment(ctx context.Context, req *pb.RecycleAttachmentRequest) (*pb.RecycleAttachmentReply, error)
type TableService ¶
type TableService struct { pb.UnimplementedTableServer // contains filtered or unexported fields }
func NewTableService ¶
func NewTableService(tuc *biz.TableUseCase, ruc *biz.RowUseCase, org *biz.OrgColumnsUseCase, logger log.Logger) *TableService
func (*TableService) CopyColumn ¶
func (s *TableService) CopyColumn(ctx context.Context, req *pb.CopyColumnRequest) (*pb.CopyColumnReply, error)
func (*TableService) CopyRow ¶
func (s *TableService) CopyRow(ctx context.Context, req *pb.CopyRowRequest) (*pb.CopyRowReply, error)
func (*TableService) CopyTables ¶
func (s *TableService) CopyTables(ctx context.Context, req *pb.CopyTablesRequest) (*pb.CopyTablesReply, error)
func (*TableService) CreateColumn ¶
func (s *TableService) CreateColumn(ctx context.Context, req *pb.CreateColumnRequest) (*pb.CreateColumnReply, error)
func (*TableService) CreateOrgColumn ¶
func (s *TableService) CreateOrgColumn(ctx context.Context, req *pb.CreateOrgColumnRequest) (*pb.CreateOrgColumnReply, error)
func (*TableService) CreateRows ¶
func (s *TableService) CreateRows(ctx context.Context, req *pb.CreateRowsRequest) (*pb.CreateRowsReply, error)
func (*TableService) CreateSummeryTable ¶
func (s *TableService) CreateSummeryTable(ctx context.Context, req *pb.CreateSummeryTableRequest) (*pb.CreateSummeryTableReply, error)
func (*TableService) CreateTable ¶
func (s *TableService) CreateTable(ctx context.Context, req *pb.CreateTableRequest) (*pb.CreateTableReply, error)
func (*TableService) DeleteColumn ¶
func (s *TableService) DeleteColumn(ctx context.Context, req *pb.DeleteColumnRequest) (*pb.DeleteColumnReply, error)
func (*TableService) DeleteOrgColumn ¶
func (s *TableService) DeleteOrgColumn(ctx context.Context, req *pb.DeleteOrgColumnRequest) (*pb.DeleteOrgColumnReply, error)
func (*TableService) DeleteRow ¶
func (s *TableService) DeleteRow(ctx context.Context, req *pb.DeleteRowRequest) (*pb.DeleteRowReply, error)
func (*TableService) DeleteTable ¶
func (s *TableService) DeleteTable(ctx context.Context, req *pb.DeleteTableRequest) (*pb.DeleteTableReply, error)
func (*TableService) InitOrgColumns ¶
func (s *TableService) InitOrgColumns(ctx context.Context, req *pb.InitOrgColumnsRequest) (*pb.InitOrgColumnsReply, error)
func (*TableService) MoveRow ¶
func (s *TableService) MoveRow(ctx context.Context, req *pb.MoveRowRequest) (*pb.MoveRowReply, error)
func (*TableService) ReadOrgColumns ¶
func (s *TableService) ReadOrgColumns(ctx context.Context, req *pb.ReadOrgColumnsRequest) (*pb.ReadOrgColumnsReply, error)
func (*TableService) ReadOrgTableSchemas ¶
func (s *TableService) ReadOrgTableSchemas(ctx context.Context, req *pb.ReadOrgTableSchemasRequest) (*pb.ReadOrgTableSchemasReply, error)
func (*TableService) ReadOrgTables ¶
func (s *TableService) ReadOrgTables(ctx context.Context, req *pb.ReadOrgTablesRequest) (*pb.ReadOrgTablesReply, error)
func (*TableService) ReadSummeryTableId ¶
func (s *TableService) ReadSummeryTableId(ctx context.Context, req *pb.ReadSummeryTableIdRequest) (*pb.ReadSummeryTableIdReply, error)
func (*TableService) ReadTable ¶
func (s *TableService) ReadTable(ctx context.Context, req *pb.ReadTableRequest) (*pb.ReadTableReply, error)
func (*TableService) ReadTableSchemas ¶
func (s *TableService) ReadTableSchemas(ctx context.Context, req *pb.ReadTableSchemasRequest) (*pb.ReadTableSchemasReply, error)
func (*TableService) ReadTableSchemasByAppId ¶
func (s *TableService) ReadTableSchemasByAppId(ctx context.Context, req *pb.ReadTableSchemasByAppIdRequest) (*pb.ReadTableSchemasByAppIdReply, error)
func (*TableService) ReadTables ¶
func (s *TableService) ReadTables(ctx context.Context, req *pb.ReadTablesRequest) (*pb.ReadTablesReply, error)
func (*TableService) ReadTablesByApps ¶
func (s *TableService) ReadTablesByApps(ctx context.Context, req *pb.ReadTablesByAppsRequest) (*pb.ReadTablesByAppsReply, error)
func (*TableService) RenameTable ¶
func (s *TableService) RenameTable(ctx context.Context, req *pb.RenameTableRequest) (*pb.RenameTableReply, error)
func (*TableService) SetAutoSchedule ¶
func (s *TableService) SetAutoSchedule(ctx context.Context, req *pb.SetAutoScheduleRequest) (*pb.SetAutoScheduleReply, error)
func (*TableService) UpdateColumn ¶
func (s *TableService) UpdateColumn(ctx context.Context, req *pb.UpdateColumnRequest) (*pb.UpdateColumnReply, error)
func (*TableService) UpdateColumnDescription ¶
func (s *TableService) UpdateColumnDescription(ctx context.Context, req *pb.UpdateColumnDescriptionRequest) (*pb.UpdateColumnDescriptionReply, error)
Click to show internal directories.
Click to hide internal directories.