Files
GateDge2023_ljy/08.昶东/EastChanger/STK_StockCountLoss/STKStockCountLossService.cs
PastSaid 08d8878eef a
2024-03-11 14:47:23 +08:00

27 lines
678 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_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();
}
}
}