2024-06-07 11:04:26 +08:00
|
|
|
|
using ZR.Model.mes.md;
|
2023-08-16 09:51:28 +08:00
|
|
|
|
|
|
|
|
|
|
namespace ZR.Service.mes.md.IService
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IMdWorkstationService
|
|
|
|
|
|
{
|
|
|
|
|
|
int AddWorkshop(MdWorkstation workshop);
|
|
|
|
|
|
|
|
|
|
|
|
public (int, List<MdWorkstation>) GetAll(string StationCode, string StationName, int pageNum, int pageSize);
|
|
|
|
|
|
public int UpdateWorkshop(MdWorkstation workshop);
|
|
|
|
|
|
|
|
|
|
|
|
public int deleteWorkshop(int[] ids);
|
2023-09-08 13:10:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<MdWorkline> GetworkLineList();
|
2023-08-16 09:51:28 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|