namespace YLErp.Abstract { /// /// 数据更新接口 /// public interface IDataUpdater { string TableName { get; } /// /// 传入的更新keyids(注意使用唯一化处理) /// void UpdateData(IEnumerable updateKeyIds); } }