using Kingdee.BOS;
using Kingdee.BOS.Core.DynamicForm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EastChanger.STK_StockCountLoss
{
///
/// 盘亏单
///
public class STKStockCountLossService : BaseService, ISynchonService
{
public STKStockCountLossService(Context context) : base(context, "", "海关信息同步")
{
}
public string ModuleCnName => throw new NotImplementedException();
public void HandleSyncData(List idList, IOperationResult opResult)
{
throw new NotImplementedException();
}
}
}