using LeaRun.Application.Entity.WeChatManage; using System.Collections.Generic; namespace LeaRun.Application.IService.WeChatManage { /// /// 版 本 6.1 /// Copyright (c) 2013-2016 上海力软信息技术有限公司 /// 创建人:佘赐雄 /// 日 期:2015.12.23 11:31 /// 描 述:企业号应用 /// public interface IWeChatAppService { #region 获取数据 /// /// 应用列表 /// /// IEnumerable GetList(); /// /// 应用实体 /// /// 主键值 /// WeChatAppEntity GetEntity(string keyValue); #endregion #region 提交数据 /// /// 删除应用 /// /// 主键 void RemoveForm(string keyValue); /// /// 应用(新增、修改) /// /// 主键值 /// 应用实体 /// void SaveForm(string keyValue, WeChatAppEntity weChatAppEntity); #endregion } }