using learun.util; using ce.autofac.extension; using System.Collections.Generic; using System.Threading.Tasks; namespace learun.iappdev { /// /// EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期: 2020-06-18 06:35:30 /// 描 述: 测试代码生成器 f_parent /// public interface ITestBLL : IBLL { #region 获取数据 /// /// 获取主表f_parent的所有列表数据 /// /// 查询参数,json字串 /// Task> GetList(string queryJson); /// /// 获取主表f_parent的分页列表数据 /// /// 分页参数 /// 查询参数,json字串 /// Task> GetPageList(Pagination pagination, string queryJson); /// /// 获取f_children(f_children)的列表实体数据 /// /// 与表f_parent的关联字段 /// Task> GetF_childrenList(string f_parentId); /// /// 获取主表f_parent的实体 /// /// 主键 /// Task GetEntity(string keyValue); #endregion #region 提交数据 /// /// 删除 /// /// 主表主键 Task Delete(string keyValue); /// /// 新增,更新 /// /// 主键值 /// f_parent实体数据 /// f_children实体数据列表 /// Task SaveEntity(string keyValue ,F_parentEntity f_parentEntity,IEnumerable f_childrenList); #endregion } }