2023-09-07 11:19:34 +08:00
|
|
|
|
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);
|
2023-09-07 15:30:31 +08:00
|
|
|
|
|
|
|
|
|
|
public List<MdWorkshop> GetMdWorkshops(int lineCode=0);
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-09-07 11:19:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|