车间定义完工

This commit is contained in:
DESKTOP-H2PAFLR\Administrator
2023-08-11 19:29:28 +08:00
parent a332e09daf
commit 072f1f8a51
8 changed files with 469 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
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);
}
}