Files
GateDge2023_ljy/08.昶东/EastChanger/ISynchonService.cs
PastSaid 08d8878eef a
2024-03-11 14:47:23 +08:00

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);
}
}