Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CmsColumnInterface ¶
type CmsColumnInterface interface { /* @title 函数名称: Query @description : 通用查询 @auth 作者 : 时间: 2021-09-06 21:32:40 @param 输入参数名: param * dto.CmsColumnQueryParam @return 返回参数名: * dto.CmsColumnPageResult */ Query(queryParam *dto.CmsColumnQueryParam) *dto.CmsColumnPageResult /* @title 函数名称 : Count @description : 通用查询计数 @auth 作者 : 时间: 2021-09-06 21:32:40 @param 输入参数名: param * dto.CmsColumnQueryParam @return 返回参数名: * dto.CmsColumnJsonResult */ Count(queryParam *dto.CmsColumnQueryParam) *basedto.JsonResult /* @title 函数名称: FindById(ColumnId int64) @description : 根据主键查询记录 @auth 作者: 时间: 2021-09-06 21:32:40 @param 输入参数名:ColumnId int64 @return 返回参数名:*dto.CmsColumnJsonResult */ FindById(ColumnId int64) *dto.CmsColumnJsonResult /* @title 函数名称: FindByIds(pks string) @description : 根据主键ColumnId 查询多条记录 例子: FindByIds("1,36,39") @auth 作者: 时间: 2021-09-06 21:32:40 @param 输入参数名:ColumnId int64 @return 返回参数名:*dto.CmsColumnJsonResult */ FindByIds(pks string) *dto.CmsColumnPageResult /* @title 函数名称: DeleteById @description : 根据主键软删除。 @auth 作者 : 时间: 2021-09-06 21:32:40 @param 输入参数名: ColumnId int64 @return 返回参数名: *basedto.JsonResult */ DeleteById(ColumnId int64) *basedto.JsonResult /* @title 函数名称: Save @description : 主键%s为nil,0新增; !=nil修改。 @auth 作者 : 时间: 2021-09-06 21:32:40 @param 输入参数名: entity *model.CmsColumn @return 返回参数名: *basedto.JsonResult */ Save(entity *model.CmsColumn) *basedto.JsonResult /* @title 函数名称: UpdateNotNullProps @description : 更新非空字段 @auth 作者 : 时间: 2021-09-06 21:32:40 @param 输入参数名: entity *model.CmsColumn @return 返回参数名: *basedto.JsonResult */ UpdateNotNullProps(entity *model.CmsColumn) *basedto.JsonResult }
type DepartmentInterface ¶
type DepartmentInterface interface { /* @title 函数名称: Query @description : 通用查询 @auth 作者: lxs 时间: 2021-08-19 23:39:23 @param 输入参数名: param * dto.DepartmentQueryParam @return 返回参数名: * dto.DepartmentPageResult */ Query(queryParam *dto.DepartmentQueryParam) *dto.DepartmentPageResult /* @title 函数名称: FindById(Id int32) @description : 根据主键查询记录 @auth 作者: lxs 时间: 2021-08-19 23:39:23 @param 输入参数名:Id int32 @return 返回参数名:*dto.DepartmentJsonResult */ FindById(Id int32) *dto.DepartmentJsonResult /* @title 函数名称: FindByIds(pks string) @description : 根据主键Id 查询多条记录 例子: FindByIds("1,36,39") @auth 作者: lxs 时间: 2021-08-19 23:39:23 @param 输入参数名:Id int32 @return 返回参数名:*dto.DepartmentJsonResult */ FindByIds(pks string) *dto.DepartmentPageResult /* @title 函数名称: DeleteById @description : 根据主键软删除。 @auth 作者 : lxs 时间: 2021-08-19 23:39:23 @param 输入参数名: Id int32 @return 返回参数名: *basedto.JsonResult */ DeleteById(Id int32) *basedto.JsonResult /* @title 函数名称: Save @description : 主键%s为nil,0新增; !=nil修改。 @auth 作者 : lxs 时间: 2021-08-19 23:39:23 @param 输入参数名: entity *model.Department @return 返回参数名: *basedto.JsonResult */ Save(entity *model.Department) *basedto.JsonResult /* @title 函数名称: UpdateNotNullProps @description : 更新非空字段 @auth 作者 : lxs 时间: 2021-08-19 23:39:23 @param 输入参数名: entity *model.Department @return 返回参数名: *basedto.JsonResult */ UpdateNotNullProps(entity *model.Department) *basedto.JsonResult }
type EmployeeInterface ¶
type EmployeeInterface interface { /* @title 函数名称: Query @description : 通用查询 @auth 作者: lxs 时间: 2021-08-20 23:25:09 @param 输入参数名: param * dto.EmployeeQueryParam @return 返回参数名: * dto.EmployeePageResult */ Query(queryParam *dto.EmployeeQueryParam) *dto.EmployeePageResult /* @title 函数名称: FindById(Id int32) @description : 根据主键查询记录 @auth 作者: lxs 时间: 2021-08-20 23:25:09 @param 输入参数名:Id int32 @return 返回参数名:*dto.EmployeeJsonResult */ FindById(Id int32) *dto.EmployeeJsonResult /* @title 函数名称: FindByIds(pks string) @description : 根据主键Id 查询多条记录 例子: FindByIds("1,36,39") @auth 作者: lxs 时间: 2021-08-20 23:25:09 @param 输入参数名:Id int32 @return 返回参数名:*dto.EmployeeJsonResult */ FindByIds(pks string) *dto.EmployeePageResult /* @title 函数名称: DeleteById @description : 根据主键软删除。 @auth 作者 : lxs 时间: 2021-08-20 23:25:09 @param 输入参数名: Id int32 @return 返回参数名: *basedto.JsonResult */ DeleteById(Id int32) *basedto.JsonResult /* @title 函数名称: Save @description : 主键%s为nil,0新增; !=nil修改。 @auth 作者 : lxs 时间: 2021-08-20 23:25:09 @param 输入参数名: entity *model.Employee @return 返回参数名: *basedto.JsonResult */ Save(entity *model.Employee) *basedto.JsonResult /* @title 函数名称: UpdateNotNullProps @description : 更新非空字段 @auth 作者 : lxs 时间: 2021-08-20 23:25:09 @param 输入参数名: entity *model.Employee @return 返回参数名: *basedto.JsonResult */ UpdateNotNullProps(entity *model.Employee) *basedto.JsonResult }
Click to show internal directories.
Click to hide internal directories.