15 lines
409 B
C#
15 lines
409 B
C#
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);
|
|
}
|
|
}
|