2024-07-11 08:48:16 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using DOAN.Model;
|
|
|
|
|
using DOAN.Model.MES.base_;
|
|
|
|
|
using DOAN.Model.MES.base_.Dto;
|
|
|
|
|
|
2024-07-12 11:47:41 +08:00
|
|
|
namespace DOAN.Service.MES.base_.IService
|
2024-07-11 08:48:16 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 工艺路线service接口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IBaseWorkRouteService : IBaseService<BaseWorkRoute>
|
|
|
|
|
{
|
2024-07-11 11:11:15 +08:00
|
|
|
PagedInfo<BaseWorkRouteDto_bind_process> GetList(BaseWorkRouteQueryDto parm);
|
2024-07-11 09:13:28 +08:00
|
|
|
|
2024-07-12 10:23:10 +08:00
|
|
|
int ParseRouteBindProccess(BaseParseNodeDto baseParseNodeDto);
|
2024-07-11 08:48:16 +08:00
|
|
|
BaseWorkRoute GetInfo(int Id);
|
|
|
|
|
|
|
|
|
|
BaseWorkRoute AddBaseWorkRoute(BaseWorkRoute parm);
|
|
|
|
|
|
|
|
|
|
int UpdateBaseWorkRoute(BaseWorkRoute parm);
|
|
|
|
|
}
|
|
|
|
|
}
|