Files
shgx_tz_mes_backend_sync/ZR.Service/mes/md/IService/IMdBOMService.cs

20 lines
451 B
C#
Raw Normal View History

2024-06-07 11:04:26 +08:00
using ZR.Model.mes.md;
2023-10-06 16:09:13 +08:00
namespace ZR.Service.MES.md.IService
{
2024-06-07 11:04:26 +08:00
public interface IMdBOMService
2023-10-06 16:09:13 +08:00
{
2023-10-08 16:07:48 +08:00
int AddBom(MdBom bomItem);
2023-10-06 16:09:13 +08:00
public (int, List<MdBom>) GetAll(string productCode, string productName, int pageNum, int pageSize);
2023-10-08 16:07:48 +08:00
public int UpdateBOM(MdBom mdBom);
public int deleteBOM(int[] ids);
2024-06-07 11:04:26 +08:00
public List<MdBom> QueryBOM(string queryString);
2023-10-08 16:07:48 +08:00
public List<MdUnit> GetAllunitList();
2023-10-06 16:09:13 +08:00
}
}