Files
GateDge2023_ljy/08.昶东/EastChanger/STK_Miscellaneous/STKMiscellaneousService.cs
PastSaid c31957eb64 a
2024-03-18 11:42:45 +08:00

27 lines
648 B
C#

using Kingdee.BOS;
using Kingdee.BOS.Core.DynamicForm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EastChanger.STK_Miscellaneous
{
/// <summary>
/// 其他入库单
/// </summary>
public class STKMiscellaneousService : BaseService, ISynchonService
{
public STKMiscellaneousService(Context context) : base(context, 2)
{
}
public string ModuleCnName => _moduleCnName;
public void HandleSyncData(List<string> idList, IOperationResult opResult, int action)
{
throw new NotImplementedException();
}
}
}