16 lines
317 B
C#
16 lines
317 B
C#
|
|
using Kingdee.BOS.Core.DynamicForm;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace EastChanger
|
|||
|
|
{
|
|||
|
|
public interface ISynchonService
|
|||
|
|
{
|
|||
|
|
string ModuleCnName { get; }
|
|||
|
|
|
|||
|
|
void HandleSyncData(List<string> idList, IOperationResult opResult);
|
|||
|
|
}
|
|||
|
|
}
|