Documentation ¶
Index ¶
- type EmployeeDAO
- func (this *EmployeeDAO) Count(param *page.PageRequest) (int, error)
- func (this *EmployeeDAO) DeleteById(Id int32) error
- func (this *EmployeeDAO) FindById(Id int32) (entity *model.Employee, found bool, err error)
- func (this *EmployeeDAO) FindByIds(pks string) (*[]model.Employee, error)
- func (this *EmployeeDAO) FindData(result *basedto.IchubResult) *model.Employee
- func (this *EmployeeDAO) FindDataList(result *page.PageResult) *[]model.Employee
- func (this *EmployeeDAO) Insert(entity *model.Employee) (int32, error)
- func (this *EmployeeDAO) Query(param *page.PageRequest) *page.PageResult
- func (this *EmployeeDAO) Save(entity *model.Employee) (int32, error)
- func (this *EmployeeDAO) Update(entity *model.Employee) (int32, error)
- func (this *EmployeeDAO) UpdateMap(Id int32, maps map[string]interface{}) (int32, error)
- func (this *EmployeeDAO) UpdateNotNull(Id int32, maps map[string]interface{}) (int32, error)
- type ParamsDAO
- func (daoInst *ParamsDAO) CountByQueryParam(param *dto.ParamsQueryParam) (int, error)
- func (daoInst *ParamsDAO) DeleteById(Id int64) error
- func (daoInst *ParamsDAO) Demo()
- func (daoInst *ParamsDAO) FindById(Id int64) (entity *model.Params, found bool, err error)
- func (daoInst *ParamsDAO) FindByIds(pks string) (*[]model.Params, error)
- func (daoInst *ParamsDAO) FindByQueryParam(param *dto.ParamsQueryParam) (*[]model.Params, error)
- func (daoInst *ParamsDAO) Insert(entity *model.Params) (int64, error)
- func (daoInst *ParamsDAO) Save(entity *model.Params) (int64, error)
- func (daoInst *ParamsDAO) Update(entity *model.Params) (int64, error)
- func (daoInst *ParamsDAO) UpdateMap(Id int64, maps map[string]interface{}) (int64, error)
- func (daoInst *ParamsDAO) UpdateNotNullProps(Id int64, maps map[string]interface{}) (int64, error)
- type SysDeptDAO
- func (daoInst *SysDeptDAO) CountByQueryParam(param *dto.SysDeptQueryParam) (int, error)
- func (daoInst *SysDeptDAO) DeleteById(DeptId int64) error
- func (daoInst *SysDeptDAO) Demo()
- func (daoInst *SysDeptDAO) FindById(DeptId int64) (entity *model.SysDept, found bool, err error)
- func (daoInst *SysDeptDAO) FindByIds(pks string) (*[]model.SysDept, error)
- func (daoInst *SysDeptDAO) FindByQueryParam(param *dto.SysDeptQueryParam) (*[]model.SysDept, error)
- func (daoInst *SysDeptDAO) Insert(entity *model.SysDept) (int64, error)
- func (daoInst *SysDeptDAO) Save(entity *model.SysDept) (int64, error)
- func (daoInst *SysDeptDAO) Update(entity *model.SysDept) (int64, error)
- func (daoInst *SysDeptDAO) UpdateMap(DeptId int64, maps map[string]interface{}) (int64, error)
- func (daoInst *SysDeptDAO) UpdateNotNullProps(DeptId int64, maps map[string]interface{}) (int64, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EmployeeDAO ¶
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 ¶
@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 ¶
@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 ¶
@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 ¶
@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 ¶
@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 ¶
@title 函数名称: Insert @description : 新增记录 @auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: entity *model.Params @return 返回参数名: int64,error
func (*ParamsDAO) Save ¶
@title 函数名称: Save @description : 保存记录
@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: entity *model.Params @return 返回参数名: int64,error
func (*ParamsDAO) Update ¶
@title 函数名称: Update @description : 修改记录
@auth 作者: leijianming@163.com 时间: 2024-02-08 18:19:47 @param 输入参数名: entity *model.Params @return 返回参数名: int64,error
func (*ParamsDAO) UpdateMap ¶
@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 ¶
@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 ¶
@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