29 lines
759 B
C#
29 lines
759 B
C#
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.MES.process;
|
|
using DOAN.Model.MES.process.Dto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 工艺建模工序表service接口
|
|
/// </summary>
|
|
public interface IProModelProcessService : IBaseService<ProModelProcess>
|
|
{
|
|
PagedInfo<ProModelProcessDto> GetList(ProModelProcessQueryDto parm);
|
|
|
|
ProModelProcess GetInfo(long Id);
|
|
|
|
ProModelProcess AddProModelProcess(ProModelProcess parm);
|
|
|
|
int UpdateProModelProcess(ProModelProcess parm);
|
|
|
|
/// <summary>
|
|
/// 获取工艺路线表
|
|
/// </summary>
|
|
public List<RoutingListDto> GetModelRoutingList();
|
|
}
|
|
}
|