工作单元关系确认
This commit is contained in:
20
ZR.Service/mes/md/IService/IMdWorklineService.cs
Normal file
20
ZR.Service/mes/md/IService/IMdWorklineService.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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 IMdWorklineService
|
||||
{
|
||||
int AddWorkline(MdWorkline workline);
|
||||
|
||||
public (int, List<MdWorkline>) GetAll(string lineCode, string lineName, int pageNum, int pageSize);
|
||||
public int UpdateWorkline(MdWorkline workline);
|
||||
|
||||
public int deleteWorkline(int[] ids);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user