using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WMS.IData.IRK { public interface ILtkTask { void InsertLtkData(string locaId, string goodsId, string lottype, string lotId, string goodsName, string barcode); void DeleteLtkData(string localid, string goodsId); } }