This commit is contained in:
PastSaid
2024-03-11 09:04:46 +08:00
parent 5e2781182d
commit 6dd1816c96
47 changed files with 18825 additions and 624 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_StockCountLoss
{
/// <summary>
/// 盘亏单
/// </summary>
public class STKStockCountLossService : BaseService, ISynchonService
{
public STKStockCountLossService(Context context) : base(context, "", "海关信息同步")
{
}
public string ModuleCnName => throw new NotImplementedException();
public void HandleSyncData(List<string> idList, IOperationResult opResult)
{
throw new NotImplementedException();
}
}
}