using LeaRun.Application.Entity.CustomerManage; using LeaRun.Util.WebControl; using System.Collections.Generic; namespace LeaRun.Application.IService.CustomerManage { /// /// 版 本 6.1 /// Copyright (c) 2013-2016 上海力软信息技术有限公司 /// 创 建:佘赐雄 /// 日 期:2016-03-21 16:10 /// 描 述:跟进记录 /// public interface ITrailRecordService { #region 获取数据 /// /// 获取列表 /// /// 对象Id /// 返回列表 IEnumerable GetList(string objectId); /// /// 获取实体 /// /// 主键值 /// TrailRecordEntity GetEntity(string keyValue); #endregion #region 提交数据 /// /// 删除数据 /// /// 主键 void RemoveForm(string keyValue); /// /// 保存表单(新增、修改) /// /// 主键值 /// 实体对象 /// void SaveForm(string keyValue, TrailRecordEntity entity); #endregion } }