time_value

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 (
	EntityName = "timeValue"
	TableName  = "time_value"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Repository

type Repository interface {
	BatchSaveChangesTx(ctx context.Context, entityID uint, values []TimeValue, langID uint, tx *gorm.DB) error
	BatchDeleteTx(ctx context.Context, cond *selection_condition.SelectionCondition, tx *gorm.DB) error
}

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

type TimeValue

type TimeValue struct {
	ID         uint      `gorm:"type:bigserial;primaryKey" json:"id"`
	EntityID   uint      `gorm:"type:bigint not null REFERENCES \"entity\"(id);index:idx_time_value,priority:1" json:"entityID"`
	PropertyID uint      `gorm:"type:bigint not null;index:idx_time_value,priority:2" json:"propertyID"`
	Value      time.Time `gorm:"type:timestamptz not null;index" json:"value"`
}

TimeValue ...

func New

func New() *TimeValue

New func is a constructor for the EntityType

func (*TimeValue) TableName

func (e *TimeValue) TableName() string

Jump to

Keyboard shortcuts

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