Files
GateDge2023_ljy/08.昶东/EastChanger/STK_Miscellaneous/STKMiscellaneousService.cs

27 lines
648 B
C#
Raw Normal View History

2024-03-11 09:04:46 +08:00
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
{
2024-03-18 11:42:45 +08:00
public STKMiscellaneousService(Context context) : base(context, 2)
2024-03-11 09:04:46 +08:00
{
}
public string ModuleCnName => _moduleCnName;
2024-03-18 11:42:45 +08:00
public void HandleSyncData(List<string> idList, IOperationResult opResult, int action)
2024-03-11 09:04:46 +08:00
{
throw new NotImplementedException();
}
}
}