28 lines
725 B
C#
28 lines
725 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.Business;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 工艺建模工艺路线表service接口
|
|
/// </summary>
|
|
public interface IProModelRoutingService : IBaseService<ProModelRouting>
|
|
{
|
|
PagedInfo<ProModelRoutingDto> GetList(ProModelRoutingQueryDto parm);
|
|
|
|
ProModelRouting GetInfo(long Id);
|
|
|
|
ProModelRouting AddProModelRouting(ProModelRouting parm);
|
|
|
|
int UpdateProModelRouting(ProModelRouting parm);
|
|
|
|
/// <summary>
|
|
/// 获取项目列表
|
|
/// </summary>
|
|
public List<ProjectListDto> GetModelProjectList();
|
|
}
|
|
}
|