26 lines
650 B
C#
26 lines
650 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
|
|
using System.Collections.Generic;
|
|
using DOAN.Model.MES.process.Dto;
|
|
using DOAN.Model.MES.process;
|
|
|
|
namespace DOAN.Service.MES.process.IService
|
|
{
|
|
/// <summary>
|
|
/// 工艺路线表service接口
|
|
/// </summary>
|
|
public interface IProcessmodelRoutingService : IBaseService<ProcessmodelRouting>
|
|
{
|
|
PagedInfo<ProcessmodelRoutingDto> GetList(ProcessmodelRoutingQueryDto parm);
|
|
|
|
ProcessmodelRouting GetInfo(int Id);
|
|
|
|
ProcessmodelRouting AddProcessmodelRouting(ProcessmodelRouting parm);
|
|
|
|
int UpdateProcessmodelRouting(ProcessmodelRouting parm);
|
|
|
|
}
|
|
}
|