using System; using Lottomat.Application.Entity.BaseManage; using Lottomat.Application.Entity.GalleryManage; using Lottomat.Util.WebControl; using System.Collections.Generic; using System.Linq.Expressions; namespace Lottomat.Application.IService.GalleryManage { /// /// 版 本 1.0 /// Copyright (c) 2016-2017 /// 创 建:开发者账号 /// 日 期:2017-10-19 14:24 /// 描 述:图库标题表 /// public interface ITk_GalleryIService { #region 获取数据 /// /// 获取列表 /// /// 查询参数 /// 返回列表 IEnumerable GetList(string queryJson); IEnumerable GetList(Expression> condition); /// /// 获取实体 /// /// 主键值 /// Tk_Gallery GetEntity(string keyValue); #endregion #region 提交数据 /// /// 删除数据 /// /// 主键 void RemoveForm(string keyValue); /// /// 保存表单(新增、修改) /// /// 主键值 /// 实体对象 /// void SaveForm(string keyValue, Tk_Gallery entity); IEnumerable GetPageList(Pagination pagination, string queryJson); List QueryAll(int count); #endregion } }