This commit is contained in:
PastSaid
2024-03-11 14:47:23 +08:00
parent 6dd1816c96
commit 08d8878eef
202 changed files with 274 additions and 246 deletions

View File

@@ -0,0 +1,26 @@
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, "supvMaterialStorage.save", "其他入库单")
{
}
public string ModuleCnName => _moduleCnName;
public void HandleSyncData(List<string> idList, IOperationResult opResult)
{
throw new NotImplementedException();
}
}
}