using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_Model.Models; namespace WIDESEA_ISquareCabinServices { public interface IMedicineGoodsServices : IService { /// /// 获取药品基础信息同步接口 /// /// //public WebResponseContent GetMedicineGoodsInfom(); //public WebResponseContent ProductSynchronous(); /// /// 删除单个商品信息 /// /// 商品编码 /// public WebResponseContent DeleteProduct(string goodsno); } }