12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.Entities;
- namespace EMIS.CommonLogic.SystemServices
- {
- public interface IBatchModifyServices
- {
-
-
-
-
-
- List<Sys_BatchModify> GetBatchModifyList(string mnuID);
-
-
-
-
-
- List<Sys_BatchModifyExpand> GetBatchModifyExpandList(Guid? BatchModifyID);
-
-
-
-
-
-
-
-
- bool BatchUpdate(string tableName, string columnName, object value, List<Guid> list);
-
-
-
-
-
-
-
-
- bool BatchUpdate(string mnuID, string tableName, string columnName, object value, List<Guid> list);
-
-
-
-
- Dictionary<string, string> GetBatchModifyEvents(string mnuID, string munClass, string columnName);
- }
- }
|