dao

package
v0.0.0-...-c47cd45 Latest Latest
Warning

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

Go to latest
Published: Sep 6, 2024 License: MulanPSL-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type EmployeeDAO

type EmployeeDAO struct {
	basedao.BaseDao
}
var InstEmployeeDAO EmployeeDAO

func (*EmployeeDAO) Count

func (this *EmployeeDAO) Count(param *page.PageRequest) (int, error)

@title 函数名称: Count @description : 计算符合条件的记录总数!IchubPageRequest通用条件

@auth 作者: leijianming@163.com 时间: 2024-03-26 19:34:46 @param 输入参数名: param *page.PageRequest @return 返回参数名: int, error

func (*EmployeeDAO) DeleteById

func (this *EmployeeDAO) DeleteById(Id int32) error

@title 函数名称: DeleteById @description : 根据主键Id 删除记录

@auth 作者: leijianming@163.com 时间: 2024-03-26 19:34:46 @param 输入参数名: Id int32 @return 返回参数名: error

func (*EmployeeDAO) FindById

func (this *EmployeeDAO) FindById(Id int32) (entity *model.Employee, found bool, err error)

@title 函数名称: FindById @description : 根据主键Id 查询记录

@auth 作者: leijianming@163.com 时间: 2024-03-26 19:34:46 @param 输入参数名: Id int32 @return 返回参数名: entity *model.Employee, found bool, err error

func (*EmployeeDAO) FindByIds

func (this *EmployeeDAO) FindByIds(pks string) (*[]model.Employee, error)

@title 函数名称: FindByIds @description : 根据主键Id 查询多条记录; FindByIds("1,36,39")

@auth 作者: leijianming@163.com 时间: 2024-03-26 19:34:46 @param 输入参数名: pks string @return 返回参数名: *[]model.Employee,error

func (*EmployeeDAO) FindData

func (this *EmployeeDAO) FindData(result *basedto.IchubResult) *model.Employee

func (*EmployeeDAO) FindDataList

func (this *EmployeeDAO) FindDataList(result *page.PageResult) *[]model.Employee

func (*EmployeeDAO) Insert

func (this *EmployeeDAO) Insert(entity *model.Employee) (int32, error)

@title 函数名称: Insert @description : 新增记录 @auth 作者: leijianming@163.com 时间: 2024-03-26 19:34:46 @param 输入参数名: entity *model.Employee @return 返回参数名: int32,error

func (*EmployeeDAO) Query

func (this *EmployeeDAO) Query(param *page.PageRequest) *page.PageResult

@title 函数名称: Query @description : 查询符合条件的记录!queryParam通用条件分页

@auth 作者: leijianming@163.com 时间: 2024-03-26 19:34:46 @param 输入参数名: param *page.PageRequest @return 返回参数名: *page.PageResult

func (*EmployeeDAO) Save

func (this *EmployeeDAO) Save(entity *model.Employee) (int32, error)

@title 函数名称: Save @description : 保存记录

@auth 作者: leijianming@163.com 时间: 2024-03-26 19:34:46 @param 输入参数名: entity *model.Employee @return 返回参数名: int32,error

func (*EmployeeDAO) Update

func (this *EmployeeDAO) Update(entity *model.Employee) (int32, error)

@title 函数名称: Update @description : 修改记录

@auth 作者: leijianming@163.com 时间: 2024-03-26 19:34:46 @param 输入参数名: entity *model.Employee @return 返回参数名: int32,error

func (*EmployeeDAO) UpdateMap

func (this *EmployeeDAO) UpdateMap(Id int32, maps map[string]interface{}) (int32, error)

@title 函数名称: UpdateMap @description : 根据主键Id,map修改指定字段

@auth 作者: leijianming@163.com 时间: 2024-03-26 19:34:46 @param 输入参数名: Id int64,entity map[string]interface{} @return 返回参数名: int64,error

func (*EmployeeDAO) UpdateNotNull

func (this *EmployeeDAO) UpdateNotNull(Id int32, maps map[string]interface{}) (int32, error)

type ParamsDAO

type ParamsDAO struct {
}

const PAGE_SIZE_DEFAULT = 500 const PAGE_SIZE_MAX = 1000

var InstParamsDAO ParamsDAO

func (*ParamsDAO) CountByQueryParam

func (daoInst *ParamsDAO) CountByQueryParam(param *dto.ParamsQueryParam) (int, error)

@title 函数名称: CountByQueryParam @description : 计算符合条件的记录总数!queryParam通用条件

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: param *dto.ParamsQueryParam @return 返回参数名: int32, error

func (*ParamsDAO) DeleteById

func (daoInst *ParamsDAO) DeleteById(Id int64) error

@title 函数名称: DeleteById @description : 根据主键Id 删除记录

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: Id int64 @return 返回参数名: error

func (*ParamsDAO) Demo

func (daoInst *ParamsDAO) Demo()

@title 函数名称: Demo @description : 代码调用示例

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: 无 @return 返回参数名: 无

func (*ParamsDAO) FindById

func (daoInst *ParamsDAO) FindById(Id int64) (entity *model.Params, found bool, err error)

@title 函数名称: FindById @description : 根据主键Id 查询记录

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: Id int64 @return 返回参数名: entity *model.Params, found bool, err error

func (*ParamsDAO) FindByIds

func (daoInst *ParamsDAO) FindByIds(pks string) (*[]model.Params, error)

@title 函数名称: FindByIds @description : 根据主键Id 查询多条记录; FindByIds("1,36,39")

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: pks string @return 返回参数名: *[]model.Params,error

func (*ParamsDAO) FindByQueryParam

func (daoInst *ParamsDAO) FindByQueryParam(param *dto.ParamsQueryParam) (*[]model.Params, error)

@title 函数名称: FindByQueryParam @description : 查询符合条件的记录!queryParam通用条件分页

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: param *dto.ParamsQueryParam @return 返回参数名: *[]model.Params,error

func (*ParamsDAO) Insert

func (daoInst *ParamsDAO) Insert(entity *model.Params) (int64, error)

@title 函数名称: Insert @description : 新增记录 @auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: entity *model.Params @return 返回参数名: int64,error

func (*ParamsDAO) Save

func (daoInst *ParamsDAO) Save(entity *model.Params) (int64, error)

@title 函数名称: Save @description : 保存记录

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: entity *model.Params @return 返回参数名: int64,error

func (*ParamsDAO) Update

func (daoInst *ParamsDAO) Update(entity *model.Params) (int64, error)

@title 函数名称: Update @description : 修改记录

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: entity *model.Params @return 返回参数名: int64,error

func (*ParamsDAO) UpdateMap

func (daoInst *ParamsDAO) UpdateMap(Id int64, maps map[string]interface{}) (int64, error)

@title 函数名称: UpdateMap @description : 根据主键Id,map修改指定字段

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: Id int64,entity map[string]interface{} @return 返回参数名: int64,error

func (*ParamsDAO) UpdateNotNullProps

func (daoInst *ParamsDAO) UpdateNotNullProps(Id int64, maps map[string]interface{}) (int64, error)

@title 函数名称: UpdateNotNullProps @description : 根据主键Id修改非nil字段

@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: Id int64,entity map[string]interface{} @return 返回参数名: int64,error

type SysDeptDAO

type SysDeptDAO struct {
}

const PAGE_SIZE_DEFAULT = 500 const PAGE_SIZE_MAX = 1000

var InstSysDeptDAO SysDeptDAO

func (*SysDeptDAO) CountByQueryParam

func (daoInst *SysDeptDAO) CountByQueryParam(param *dto.SysDeptQueryParam) (int, error)

@title 函数名称: CountByQueryParam @description : 计算符合条件的记录总数!queryParam通用条件

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: param *basedto.SysDeptQueryParam @return 返回参数名: int32, error

func (*SysDeptDAO) DeleteById

func (daoInst *SysDeptDAO) DeleteById(DeptId int64) error

@title 函数名称: DeleteById @description : 根据主键DeptId 删除记录

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: DeptId int64 @return 返回参数名: error

func (*SysDeptDAO) Demo

func (daoInst *SysDeptDAO) Demo()

@title 函数名称: Demo @description : 代码调用示例

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: 无 @return 返回参数名: 无

func (*SysDeptDAO) FindById

func (daoInst *SysDeptDAO) FindById(DeptId int64) (entity *model.SysDept, found bool, err error)

@title 函数名称: FindById @description : 根据主键DeptId 查询记录

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: DeptId int64 @return 返回参数名: entity *basemodel.SysDept, found bool, err error

func (*SysDeptDAO) FindByIds

func (daoInst *SysDeptDAO) FindByIds(pks string) (*[]model.SysDept, error)

@title 函数名称: FindByIds @description : 根据主键DeptId 查询多条记录; FindByIds("1,36,39")

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: pks string @return 返回参数名: *[]basemodel.SysDept,error

func (*SysDeptDAO) FindByQueryParam

func (daoInst *SysDeptDAO) FindByQueryParam(param *dto.SysDeptQueryParam) (*[]model.SysDept, error)

@title 函数名称: FindByQueryParam @description : 查询符合条件的记录!queryParam通用条件分页

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: param *basedto.SysDeptQueryParam @return 返回参数名: *[]basemodel.SysDept,error

func (*SysDeptDAO) Insert

func (daoInst *SysDeptDAO) Insert(entity *model.SysDept) (int64, error)

@title 函数名称: Insert @description : 新增记录 @auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: entity *basemodel.SysDept @return 返回参数名: int64,error

func (*SysDeptDAO) Save

func (daoInst *SysDeptDAO) Save(entity *model.SysDept) (int64, error)

@title 函数名称: Save @description : 保存记录

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: entity *basemodel.SysDept @return 返回参数名: int64,error

func (*SysDeptDAO) Update

func (daoInst *SysDeptDAO) Update(entity *model.SysDept) (int64, error)

@title 函数名称: Update @description : 修改记录

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: entity *basemodel.SysDept @return 返回参数名: int64,error

func (*SysDeptDAO) UpdateMap

func (daoInst *SysDeptDAO) UpdateMap(DeptId int64, maps map[string]interface{}) (int64, error)

@title 函数名称: UpdateMap @description : 根据主键DeptId,map修改指定字段

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: Id int64,entity map[string]interface{} @return 返回参数名: int64,error

func (*SysDeptDAO) UpdateNotNullProps

func (daoInst *SysDeptDAO) UpdateNotNullProps(DeptId int64, maps map[string]interface{}) (int64, error)

@title 函数名称: UpdateNotNullProps @description : 根据主键DeptId修改非nil字段

@auth 作者: leijianming@163.com 时间: 2024-01-24 17:15:32 @param 输入参数名: Id int64,entity map[string]interface{} @return 返回参数名: int64,error

Jump to

Keyboard shortcuts

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