Files
shanghaigangxiangtuzhuangMES/server/ZR.Service/mes/md/IService/IMdTechnologicalProrouteService.cs
xiaowei.song 127c428a9e 油漆
2024-06-06 13:19:24 +08:00

21 lines
569 B
C#

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);
}
}