23 lines
564 B
C#
23 lines
564 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.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 工艺路线service接口
|
|
/// </summary>
|
|
public interface IBaseWorkRouteService : IBaseService<BaseWorkRoute>
|
|
{
|
|
PagedInfo<BaseWorkRouteDto> GetList(BaseWorkRouteQueryDto parm);
|
|
|
|
BaseWorkRoute GetInfo(int Id);
|
|
|
|
BaseWorkRoute AddBaseWorkRoute(BaseWorkRoute parm);
|
|
|
|
int UpdateBaseWorkRoute(BaseWorkRoute parm);
|
|
}
|
|
}
|