int_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: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	EntityName = "intValue"
	TableName  = "int_value"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type IntValue

type IntValue struct {
	ID         uint `gorm:"type:bigserial;primaryKey" json:"id"`
	EntityID   uint `gorm:"type:bigint not null REFERENCES \"entity\"(id);index:idx_int_value,priority:1" json:"entityID"`
	PropertyID uint `gorm:"type:bigint not null;index:idx_int_value,priority:2" json:"propertyID"`
	Value      int  `gorm:"type:bigint not null;index" json:"value"`
}

IntValue ...

func New

func New() *IntValue

New func is a constructor for the EntityType

func (*IntValue) TableName

func (e *IntValue) TableName() string

type Repository

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