using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ZR.Model.mes.md; namespace ZR.Service.mes.md.IService { public interface IMdWorkshopService { int AddWorkshop(MdWorkshop workshop); public (int, List) GetAll(string workshopId, string workshopName, string workshopPosition, int pageNum, int pageSize); public int UpdateWorkshop(MdWorkshop workshop); public int deleteWorkshop(int[] ids); } }