2024-03-11 09:04:46 +08:00
|
|
|
|
using Kingdee.BOS.Core.DynamicForm;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace EastChanger
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface ISynchonService
|
|
|
|
|
|
{
|
2024-03-18 11:42:45 +08:00
|
|
|
|
string ModuleCnName { get; }
|
2024-03-11 09:04:46 +08:00
|
|
|
|
|
2024-03-18 11:42:45 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
///
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="idList"></param>
|
|
|
|
|
|
/// <param name="opResult"></param>
|
2024-04-10 10:39:04 +08:00
|
|
|
|
/// <param name="action">1.删除 2.变更</param>
|
2024-03-18 11:42:45 +08:00
|
|
|
|
void HandleSyncData(List<string> idList, IOperationResult opResult, int action);
|
2024-03-11 09:04:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|