date_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 = "dateValue"
	TableName  = "date_value"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type DateValue

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

DateValue ...

func New

func New() *DateValue

New func is a constructor for the EntityType

func (*DateValue) TableName

func (e *DateValue) TableName() string

type Repository

type Repository interface {
	BatchSaveChangesTx(ctx context.Context, entityID uint, values []DateValue, 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.

Jump to

Keyboard shortcuts

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