task

package
v0.0.0-...-4f702ff Latest Latest
Warning

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

Go to latest
Published: May 31, 2023 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	EntityType = "task"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type IService

type IService interface {
	NewEntity() *Task
	Get(ctx context.Context, id uint) (*Task, error)
	Query(ctx context.Context, query *selection_condition.SelectionCondition) ([]Task, error)
	Count(ctx context.Context, cond *selection_condition.SelectionCondition) (int64, error)
	Create(ctx context.Context, entity *Task) error
	Update(ctx context.Context, entity *Task) error
	Save(ctx context.Context, entity *Task) error
	Delete(ctx context.Context, id uint) error
}

IService encapsulates usecase logic.

func NewService

func NewService(logger log.Logger, repo Repository) IService

NewService creates a new service.

type Repository

type Repository interface {
	SetDefaultConditions(conditions *selection_condition.SelectionCondition)
	// Get returns the album with the specified album ID.
	Get(ctx context.Context, id uint) (*Task, error)
	First(ctx context.Context, entity *Task) (*Task, error)
	// Query returns the list of albums with the given offset and limit.
	Query(ctx context.Context, cond *selection_condition.SelectionCondition) ([]Task, error)
	Count(ctx context.Context, cond *selection_condition.SelectionCondition) (int64, error)
	Create(ctx context.Context, entity *Task) error
	Update(ctx context.Context, entity *Task) error
	Save(ctx context.Context, entity *Task) error
	Delete(ctx context.Context, id uint) error
}

Repository encapsulates the logic to access albums from the data source.

type Task

type Task struct {
	ID   uint   `json:"id"`
	Name string `json:"name"`
}

Task ...

func New

func New() *Task

New func is a constructor for the Task

func (*Task) GetMapNameSysname

func (e *Task) GetMapNameSysname() map[string]string

func (*Task) GetValidPropertySysnames

func (e *Task) GetValidPropertySysnames() []string

Jump to

Keyboard shortcuts

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