category

package
v0.0.0-...-f27ef36 Latest Latest
Warning

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

Go to latest
Published: May 21, 2020 License: LGPL-3.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// Table is the table name of gf_category.
	Table = "gf_category"
	// Model is the model object of gf_category.
	Model = &arModel{g.DB("default").Table(Table).Safe()}
	// Columns defines and stores column names for table gf_category.
	Columns = struct {
		Id       string // 分类ID,主键
		Key      string // 栏目唯一键名,用于程序部分场景硬编码
		Pid      string // 父级ID
		Uid      string // 添加用户
		Name     string // 名称
		Sort     string // 排序,数值越低越靠前,默认为添加时的时间戳,可用于置顶
		Thumb    string // 缩略图
		Brief    string // 简述
		Content  string // 详细介绍
		CreateAt string // 创建时间
		UpdateAt string // 修改时间
	}{
		Id:       "id",
		Key:      "key",
		Pid:      "pid",
		Uid:      "uid",
		Name:     "name",
		Sort:     "sort",
		Thumb:    "thumb",
		Brief:    "brief",
		Content:  "content",
		CreateAt: "create_at",
		UpdateAt: "update_at",
	}
)

Functions

func Delete

func Delete(where ...interface{}) (result sql.Result, err error)

Delete is a convenience method for Model.Delete.

func FindArray

func FindArray(fieldsAndWhere ...interface{}) ([]gdb.Value, error)

FindArray is a convenience method for Model.FindArray. See Model.FindArray.

func FindCount

func FindCount(where ...interface{}) (int, error)

FindCount is a convenience method for Model.FindCount. See Model.FindCount.

func FindValue

func FindValue(fieldsAndWhere ...interface{}) (gdb.Value, error)

FindValue is a convenience method for Model.FindValue. See Model.FindValue.

func Insert

func Insert(data ...interface{}) (result sql.Result, err error)

Insert is a convenience method for Model.Insert.

func InsertIgnore

func InsertIgnore(data ...interface{}) (result sql.Result, err error)

InsertIgnore is a convenience method for Model.InsertIgnore.

func Replace

func Replace(data ...interface{}) (result sql.Result, err error)

Replace is a convenience method for Model.Replace.

func Save

func Save(data ...interface{}) (result sql.Result, err error)

Save is a convenience method for Model.Save.

func Update

func Update(dataAndWhere ...interface{}) (result sql.Result, err error)

Update is a convenience method for Model.Update.

Types

type Entity

type Entity struct {
	Id       uint        `orm:"id,primary" json:"id"`        // 分类ID,主键
	Key      string      `orm:"key"        json:"key"`       // 栏目唯一键名,用于程序部分场景硬编码
	Pid      uint        `orm:"pid"        json:"pid"`       // 父级ID
	Uid      uint        `orm:"uid"        json:"uid"`       // 添加用户
	Name     string      `orm:"name"       json:"name"`      // 名称
	Sort     uint        `orm:"sort"       json:"sort"`      // 排序,数值越低越靠前,默认为添加时的时间戳,可用于置顶
	Thumb    string      `orm:"thumb"      json:"thumb"`     // 缩略图
	Brief    string      `orm:"brief"      json:"brief"`     // 简述
	Content  string      `orm:"content"    json:"content"`   // 详细介绍
	CreateAt *gtime.Time `orm:"create_at"  json:"create_at"` // 创建时间
	UpdateAt *gtime.Time `orm:"update_at"  json:"update_at"` // 修改时间
}

Entity is the golang structure for table gf_category.

func FindAll

func FindAll(where ...interface{}) ([]*Entity, error)

FindAll is a convenience method for Model.FindAll. See Model.FindAll.

func FindOne

func FindOne(where ...interface{}) (*Entity, error)

FindOne is a convenience method for Model.FindOne. See Model.FindOne.

func (*Entity) Delete

func (r *Entity) Delete() (result sql.Result, err error)

Delete does "DELETE FROM...WHERE..." statement for deleting current object from table.

func (*Entity) Insert

func (r *Entity) Insert() (result sql.Result, err error)

Inserts does "INSERT...INTO..." statement for inserting current object into table.

func (*Entity) InsertIgnore

func (r *Entity) InsertIgnore() (result sql.Result, err error)

InsertIgnore does "INSERT IGNORE INTO ..." statement for inserting current object into table.

func (*Entity) OmitEmpty

func (r *Entity) OmitEmpty() *arModel

OmitEmpty sets OPTION_OMITEMPTY option for the model, which automatically filers the data and where attributes for empty values.

func (*Entity) Replace

func (r *Entity) Replace() (result sql.Result, err error)

Replace does "REPLACE...INTO..." statement for inserting current object into table. If there's already another same record in the table (it checks using primary key or unique index), it deletes it and insert this one.

func (*Entity) Save

func (r *Entity) Save() (result sql.Result, err error)

Save does "INSERT...INTO..." statement for inserting/updating current object into table. It updates the record if there's already another same record in the table (it checks using primary key or unique index).

func (*Entity) Update

func (r *Entity) Update() (result sql.Result, err error)

Update does "UPDATE...WHERE..." statement for updating current object from table. It updates the record if there's already another same record in the table (it checks using primary key or unique index).

Jump to

Keyboard shortcuts

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