This commit is contained in:
PastSaid
2024-03-18 11:42:45 +08:00
parent 08d8878eef
commit c31957eb64
56 changed files with 1485 additions and 123 deletions

View File

@@ -8,8 +8,14 @@ namespace EastChanger
{
public interface ISynchonService
{
string ModuleCnName { get; }
string ModuleCnName { get; }
void HandleSyncData(List<string> idList, IOperationResult opResult);
/// <summary>
///
/// </summary>
/// <param name="idList"></param>
/// <param name="opResult"></param>
/// <param name="action">1.删除</param>
void HandleSyncData(List<string> idList, IOperationResult opResult, int action);
}
}