20 lines
527 B
C#
20 lines
527 B
C#
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<MdWorkshop>) GetAll(string workshopId, string workshopName, string workshopPosition, int pageNum, int pageSize);
|
|
public int UpdateWorkshop(MdWorkshop workshop);
|
|
|
|
public int deleteWorkshop(int[] ids);
|
|
}
|
|
}
|