|
|
- // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
-
- package base
-
- import (
- "LAPP_GAAS_GFrame_BACKEND/dao/base/implments"
- "LAPP_GAAS_GFrame_BACKEND/grmi"
- model "LAPP_GAAS_GFrame_BACKEND/models/base"
- "github.com/go-xorm/xorm"
- )
-
- /******************************************************************************
- *
- * @Interface Name : PlantDAO
- *-----------------------------------------------------------------------------
- *
- * @Description : Plant的数据访问对象接口
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- type PlantDAO interface {
- /******************************************************************************
- *
- * @Function Name : InsertOne
- *-----------------------------------------------------------------------------
- *
- * @Description : 插入一条Plant
- *
- * @Function Parameters : 需要插入的Plant
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- InsertOne(*model.Plant) error
- /******************************************************************************
- *
- * @Function Name : DeleteOne
- *-----------------------------------------------------------------------------
- *
- * @Description : 删除指定键的Plant
- *
- * @Function Parameters : 主键
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- DeleteOne(int) error
- /******************************************************************************
- *
- * @Function Name : SelectOne
- *-----------------------------------------------------------------------------
- *
- * @Description : 查找指定键的Plant
- *
- * @Function Parameters : 主键
- *
- * @Return Value : 查找到的Plant
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- SelectOne(int) (*model.Plant, error)
- /******************************************************************************
- *
- * @Function Name : UpdateOne
- *-----------------------------------------------------------------------------
- *
- * @Description : 修改Plant
- *
- * @Function Parameters : 需要修改的Plant
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- UpdateOne(*model.Plant) error
- /******************************************************************************
- *
- * @Function Name : Insert
- *-----------------------------------------------------------------------------
- *
- * @Description : 插入多条Plant
- *
- * @Function Parameters : 需要插入的Plant列表
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- Insert(*[]model.Plant) error
- /******************************************************************************
- *
- * @Function Name : Delete
- *-----------------------------------------------------------------------------
- *
- * @Description : 删除多条Plant
- *
- * @Function Parameters : 需要删除的Plant列表
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- Delete(*[]model.Plant) error
- /******************************************************************************
- *
- * @Function Name : DeleteWhere
- *-----------------------------------------------------------------------------
- *
- * @Description : 按条件删除Plant
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- DeleteWhere([]grmi.Predicate) error
- /******************************************************************************
- *
- * @Function Name : Select
- *-----------------------------------------------------------------------------
- *
- * @Description : 按条件查询Plant
- *
- * @Function Parameters : 查询条件
- *
- * @Function Parameters : 排序字段
- *
- * @Return Value : 查询结果
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- Select([]grmi.Predicate, []grmi.Field) ([]model.Plant, error)
- /******************************************************************************
- *
- * @Function Name : SelectAndPaging
- *-----------------------------------------------------------------------------
- *
- * @Description : 按条件查询Plant并分页
- *
- * @Function Parameters : 分页信息
- *
- * @Function Parameters : 查询条件
- *
- * @Function Parameters : 排序字段
- *
- * @Return Value : 查询结果
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- SelectAndPaging(*grmi.Paging, []grmi.Predicate, []grmi.Field) (grmi.PagingResult, error)
- /******************************************************************************
- *
- * @Function Name : Update
- *-----------------------------------------------------------------------------
- *
- * @Description : 修改多条Plant
- *
- * @Function Parameters : 需要修改的Plant列表
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- Update(*[]model.Plant) error
- /******************************************************************************
- *
- * @Function Name : UpdateWhere
- *-----------------------------------------------------------------------------
- *
- * @Description : 按条件修改Plant
- *
- * @Return Value : 执行时发生的错误
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- UpdateWhere([]grmi.Predicate, *model.Plant, ...string) error
- }
-
- /******************************************************************************
- *
- * @Function Name : NewPlantDAO
- *-----------------------------------------------------------------------------
- *
- * @Description : 创建一个PlantDAO实例
- *
- * @Function Parameters : xorm会话
- *
-
- * @Return Value : PlantDAO实例
- *
- * @Author : 代码生成器创建
- *
- * @Date : 2021-03-24 09:53:49
- *
- ******************************************************************************/
- func NewPlantDAO(session *xorm.Session, userid string) PlantDAO {
- return implments.NewPlantDAOImplement(session, userid)
- }
|