工艺路线

This commit is contained in:
SimpleJouer
2023-08-16 15:27:40 +08:00
parent a21da56c94
commit b2e6f2bdf1
7 changed files with 224 additions and 41 deletions

View 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 IMdTechnologicalProrouteService
{
int AddWorkProroute(MdTechnologicalProroute proroute);
public (int, List<MdTechnologicalProroute>) GetAll(string ProrouteCode, string ProrouteName, int pageNum, int pageSize);
public int UpdateWorkProroute(MdTechnologicalProroute proroute);
public int deleteWorksProroute(int[] ids);
}
}