Files
GateDge2023_ljy/08.昶东/EastChanger/ISynchonService.cs

16 lines
317 B
C#
Raw Normal View History

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
{
string ModuleCnName { get; }
void HandleSyncData(List<string> idList, IOperationResult opResult);
}
}