24 lines
641 B
C#
24 lines
641 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using DOAN.Model;
|
|
using DOAN.Model.MES.base_;
|
|
using DOAN.Model.MES.base_.Dto;
|
|
|
|
namespace DOAN.Service.MES.base_.IService
|
|
{
|
|
/// <summary>
|
|
/// 工艺路线service接口
|
|
/// </summary>
|
|
public interface IBaseWorkRouteService : IBaseService<BaseWorkRoute>
|
|
{
|
|
PagedInfo<BaseWorkRouteDto_bind_process> GetList(BaseWorkRouteQueryDto parm);
|
|
|
|
int ParseRouteBindProccess(BaseParseNodeDto baseParseNodeDto);
|
|
BaseWorkRoute GetInfo(int Id);
|
|
|
|
BaseWorkRoute AddBaseWorkRoute(BaseWorkRoute parm);
|
|
|
|
int UpdateBaseWorkRoute(BaseWorkRoute parm);
|
|
}
|
|
}
|