// ========================================================================== // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ========================================================================== package internal import ( "context" "github.com/gogf/gf/v2/database/gdb" "github.com/gogf/gf/v2/frame/g" ) // HotClassDao is the data access object for table cms_hot_class. type HotClassDao struct { table string // table is the underlying table name of the DAO. group string // group is the database configuration group name of current DAO. columns HotClassColumns // columns contains all the column names of Table for convenient usage. } // HotClassColumns defines and stores column names for table cms_hot_class. type HotClassColumns struct { Id string // TypeName string // 名字 Code string // 代码 Url string // 地址 Param string // 参数 Status string // 状态 } // hotClassColumns holds the columns for table cms_hot_class. var hotClassColumns = HotClassColumns{ Id: "id", TypeName: "type_name", Code: "code", Url: "url", Param: "param", Status: "status", } // NewHotClassDao creates and returns a new DAO object for table data access. func NewHotClassDao() *HotClassDao { return &HotClassDao{ group: "cms", table: "cms_hot_class", columns: hotClassColumns, } } // DB retrieves and returns the underlying raw database management object of current DAO. func (dao *HotClassDao) DB() gdb.DB { return g.DB(dao.group) } // Table returns the table name of current dao. func (dao *HotClassDao) Table() string { return dao.table } // Columns returns all column names of current dao. func (dao *HotClassDao) Columns() HotClassColumns { return dao.columns } // Group returns the configuration group name of database of current dao. func (dao *HotClassDao) Group() string { return dao.group } // Ctx creates and returns the Model for current DAO, It automatically sets the context for current operation. func (dao *HotClassDao) Ctx(ctx context.Context) *gdb.Model { return dao.DB().Model(dao.table).Safe().Ctx(ctx) } // Transaction wraps the transaction logic using function f. // It rollbacks the transaction and returns the error from function f if it returns non-nil error. // It commits the transaction and returns nil if function f returns nil. // // Note that, you should not Commit or Rollback the transaction in function f // as it is automatically handled by this function. func (dao *HotClassDao) Transaction(ctx context.Context, f func(ctx context.Context, tx gdb.TX) error) (err error) { return dao.Ctx(ctx).Transaction(ctx, f) }