123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363 |
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- package query
- import (
- "context"
- "gorm.io/gorm"
- "gorm.io/gorm/clause"
- "gorm.io/gorm/schema"
- "gorm.io/gen"
- "gorm.io/gen/field"
- "gorm.io/plugin/dbresolver"
- "gadmin/internal/gorm/model"
- )
- func newRole(db *gorm.DB, opts ...gen.DOOption) role {
- _role := role{}
- _role.roleDo.UseDB(db, opts...)
- _role.roleDo.UseModel(&model.Role{})
- tableName := _role.roleDo.TableName()
- _role.ALL = field.NewAsterisk(tableName)
- _role.ID = field.NewInt64(tableName, "id")
- _role.Name = field.NewString(tableName, "name")
- _role.Key = field.NewString(tableName, "key")
- _role.DataScope = field.NewBool(tableName, "data_scope")
- _role.MenuCheckStrictly = field.NewBool(tableName, "menu_check_strictly")
- _role.DeptCheckStrictly = field.NewBool(tableName, "dept_check_strictly")
- _role.Remark = field.NewString(tableName, "remark")
- _role.Sort = field.NewInt32(tableName, "sort")
- _role.Status = field.NewString(tableName, "status")
- _role.CreatedAt = field.NewTime(tableName, "created_at")
- _role.UpdatedAt = field.NewTime(tableName, "updated_at")
- _role.fillFieldMap()
- return _role
- }
- type role struct {
- roleDo
- ALL field.Asterisk
- ID field.Int64 // 角色ID
- Name field.String // 角色名称
- Key field.String // 角色权限字符串
- DataScope field.Bool // 数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)
- MenuCheckStrictly field.Bool // 菜单树选择项是否关联显示
- DeptCheckStrictly field.Bool // 部门树选择项是否关联显示
- Remark field.String // 备注
- Sort field.Int32 // 排序
- Status field.String // 角色状态
- CreatedAt field.Time // 创建时间
- UpdatedAt field.Time // 更新时间
- fieldMap map[string]field.Expr
- }
- func (r role) Table(newTableName string) *role {
- r.roleDo.UseTable(newTableName)
- return r.updateTableName(newTableName)
- }
- func (r role) As(alias string) *role {
- r.roleDo.DO = *(r.roleDo.As(alias).(*gen.DO))
- return r.updateTableName(alias)
- }
- func (r *role) updateTableName(table string) *role {
- r.ALL = field.NewAsterisk(table)
- r.ID = field.NewInt64(table, "id")
- r.Name = field.NewString(table, "name")
- r.Key = field.NewString(table, "key")
- r.DataScope = field.NewBool(table, "data_scope")
- r.MenuCheckStrictly = field.NewBool(table, "menu_check_strictly")
- r.DeptCheckStrictly = field.NewBool(table, "dept_check_strictly")
- r.Remark = field.NewString(table, "remark")
- r.Sort = field.NewInt32(table, "sort")
- r.Status = field.NewString(table, "status")
- r.CreatedAt = field.NewTime(table, "created_at")
- r.UpdatedAt = field.NewTime(table, "updated_at")
- r.fillFieldMap()
- return r
- }
- func (r *role) GetFieldByName(fieldName string) (field.OrderExpr, bool) {
- _f, ok := r.fieldMap[fieldName]
- if !ok || _f == nil {
- return nil, false
- }
- _oe, ok := _f.(field.OrderExpr)
- return _oe, ok
- }
- func (r *role) fillFieldMap() {
- r.fieldMap = make(map[string]field.Expr, 11)
- r.fieldMap["id"] = r.ID
- r.fieldMap["name"] = r.Name
- r.fieldMap["key"] = r.Key
- r.fieldMap["data_scope"] = r.DataScope
- r.fieldMap["menu_check_strictly"] = r.MenuCheckStrictly
- r.fieldMap["dept_check_strictly"] = r.DeptCheckStrictly
- r.fieldMap["remark"] = r.Remark
- r.fieldMap["sort"] = r.Sort
- r.fieldMap["status"] = r.Status
- r.fieldMap["created_at"] = r.CreatedAt
- r.fieldMap["updated_at"] = r.UpdatedAt
- }
- func (r role) clone(db *gorm.DB) role {
- r.roleDo.ReplaceConnPool(db.Statement.ConnPool)
- return r
- }
- func (r role) replaceDB(db *gorm.DB) role {
- r.roleDo.ReplaceDB(db)
- return r
- }
- type roleDo struct{ gen.DO }
- func (r roleDo) Debug() *roleDo {
- return r.withDO(r.DO.Debug())
- }
- func (r roleDo) WithContext(ctx context.Context) *roleDo {
- return r.withDO(r.DO.WithContext(ctx))
- }
- func (r roleDo) ReadDB() *roleDo {
- return r.Clauses(dbresolver.Read)
- }
- func (r roleDo) WriteDB() *roleDo {
- return r.Clauses(dbresolver.Write)
- }
- func (r roleDo) Session(config *gorm.Session) *roleDo {
- return r.withDO(r.DO.Session(config))
- }
- func (r roleDo) Clauses(conds ...clause.Expression) *roleDo {
- return r.withDO(r.DO.Clauses(conds...))
- }
- func (r roleDo) Returning(value interface{}, columns ...string) *roleDo {
- return r.withDO(r.DO.Returning(value, columns...))
- }
- func (r roleDo) Not(conds ...gen.Condition) *roleDo {
- return r.withDO(r.DO.Not(conds...))
- }
- func (r roleDo) Or(conds ...gen.Condition) *roleDo {
- return r.withDO(r.DO.Or(conds...))
- }
- func (r roleDo) Select(conds ...field.Expr) *roleDo {
- return r.withDO(r.DO.Select(conds...))
- }
- func (r roleDo) Where(conds ...gen.Condition) *roleDo {
- return r.withDO(r.DO.Where(conds...))
- }
- func (r roleDo) Exists(subquery interface{ UnderlyingDB() *gorm.DB }) *roleDo {
- return r.Where(field.CompareSubQuery(field.ExistsOp, nil, subquery.UnderlyingDB()))
- }
- func (r roleDo) Order(conds ...field.Expr) *roleDo {
- return r.withDO(r.DO.Order(conds...))
- }
- func (r roleDo) Distinct(cols ...field.Expr) *roleDo {
- return r.withDO(r.DO.Distinct(cols...))
- }
- func (r roleDo) Omit(cols ...field.Expr) *roleDo {
- return r.withDO(r.DO.Omit(cols...))
- }
- func (r roleDo) Join(table schema.Tabler, on ...field.Expr) *roleDo {
- return r.withDO(r.DO.Join(table, on...))
- }
- func (r roleDo) LeftJoin(table schema.Tabler, on ...field.Expr) *roleDo {
- return r.withDO(r.DO.LeftJoin(table, on...))
- }
- func (r roleDo) RightJoin(table schema.Tabler, on ...field.Expr) *roleDo {
- return r.withDO(r.DO.RightJoin(table, on...))
- }
- func (r roleDo) Group(cols ...field.Expr) *roleDo {
- return r.withDO(r.DO.Group(cols...))
- }
- func (r roleDo) Having(conds ...gen.Condition) *roleDo {
- return r.withDO(r.DO.Having(conds...))
- }
- func (r roleDo) Limit(limit int) *roleDo {
- return r.withDO(r.DO.Limit(limit))
- }
- func (r roleDo) Offset(offset int) *roleDo {
- return r.withDO(r.DO.Offset(offset))
- }
- func (r roleDo) Scopes(funcs ...func(gen.Dao) gen.Dao) *roleDo {
- return r.withDO(r.DO.Scopes(funcs...))
- }
- func (r roleDo) Unscoped() *roleDo {
- return r.withDO(r.DO.Unscoped())
- }
- func (r roleDo) Create(values ...*model.Role) error {
- if len(values) == 0 {
- return nil
- }
- return r.DO.Create(values)
- }
- func (r roleDo) CreateInBatches(values []*model.Role, batchSize int) error {
- return r.DO.CreateInBatches(values, batchSize)
- }
- // Save : !!! underlying implementation is different with GORM
- // The method is equivalent to executing the statement: db.Clauses(clause.OnConflict{UpdateAll: true}).Create(values)
- func (r roleDo) Save(values ...*model.Role) error {
- if len(values) == 0 {
- return nil
- }
- return r.DO.Save(values)
- }
- func (r roleDo) First() (*model.Role, error) {
- if result, err := r.DO.First(); err != nil {
- return nil, err
- } else {
- return result.(*model.Role), nil
- }
- }
- func (r roleDo) Take() (*model.Role, error) {
- if result, err := r.DO.Take(); err != nil {
- return nil, err
- } else {
- return result.(*model.Role), nil
- }
- }
- func (r roleDo) Last() (*model.Role, error) {
- if result, err := r.DO.Last(); err != nil {
- return nil, err
- } else {
- return result.(*model.Role), nil
- }
- }
- func (r roleDo) Find() ([]*model.Role, error) {
- result, err := r.DO.Find()
- return result.([]*model.Role), err
- }
- func (r roleDo) FindInBatch(batchSize int, fc func(tx gen.Dao, batch int) error) (results []*model.Role, err error) {
- buf := make([]*model.Role, 0, batchSize)
- err = r.DO.FindInBatches(&buf, batchSize, func(tx gen.Dao, batch int) error {
- defer func() { results = append(results, buf...) }()
- return fc(tx, batch)
- })
- return results, err
- }
- func (r roleDo) FindInBatches(result *[]*model.Role, batchSize int, fc func(tx gen.Dao, batch int) error) error {
- return r.DO.FindInBatches(result, batchSize, fc)
- }
- func (r roleDo) Attrs(attrs ...field.AssignExpr) *roleDo {
- return r.withDO(r.DO.Attrs(attrs...))
- }
- func (r roleDo) Assign(attrs ...field.AssignExpr) *roleDo {
- return r.withDO(r.DO.Assign(attrs...))
- }
- func (r roleDo) Joins(fields ...field.RelationField) *roleDo {
- for _, _f := range fields {
- r = *r.withDO(r.DO.Joins(_f))
- }
- return &r
- }
- func (r roleDo) Preload(fields ...field.RelationField) *roleDo {
- for _, _f := range fields {
- r = *r.withDO(r.DO.Preload(_f))
- }
- return &r
- }
- func (r roleDo) FirstOrInit() (*model.Role, error) {
- if result, err := r.DO.FirstOrInit(); err != nil {
- return nil, err
- } else {
- return result.(*model.Role), nil
- }
- }
- func (r roleDo) FirstOrCreate() (*model.Role, error) {
- if result, err := r.DO.FirstOrCreate(); err != nil {
- return nil, err
- } else {
- return result.(*model.Role), nil
- }
- }
- func (r roleDo) FindByPage(offset int, limit int) (result []*model.Role, count int64, err error) {
- result, err = r.Offset(offset).Limit(limit).Find()
- if err != nil {
- return
- }
- if size := len(result); 0 < limit && 0 < size && size < limit {
- count = int64(size + offset)
- return
- }
- count, err = r.Offset(-1).Limit(-1).Count()
- return
- }
- func (r roleDo) ScanByPage(result interface{}, offset int, limit int) (count int64, err error) {
- count, err = r.Count()
- if err != nil {
- return
- }
- err = r.Offset(offset).Limit(limit).Scan(result)
- return
- }
- func (r roleDo) Scan(result interface{}) (err error) {
- return r.DO.Scan(result)
- }
- func (r roleDo) Delete(models ...*model.Role) (result gen.ResultInfo, err error) {
- return r.DO.Delete(models)
- }
- func (r *roleDo) withDO(do gen.Dao) *roleDo {
- r.DO = *do.(*gen.DO)
- return r
- }
|