33 lines
786 B
C#
33 lines
786 B
C#
using DOAN.Model.BZFM.Dto;
|
|
using DOAN.Model.BZFM;
|
|
using DOAN.Model.MES.product;
|
|
using DOAN.Model.MES.base_;
|
|
|
|
namespace DOAN.Service.MES.product.IService
|
|
{
|
|
/// <summary>
|
|
/// 报工service接口
|
|
/// </summary>
|
|
public interface IProReportworkService : IBaseService<ProReportwork01>
|
|
{
|
|
List<BaseWorkRoute> GetRoute();
|
|
|
|
/// <summary>
|
|
/// 查询全部工序
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<BaseWorkProcesses> GetBaseWorkProcesses();
|
|
|
|
List<BaseWorkProcesses> GetProcessByRoute(int route_id);
|
|
PagedInfo<ProReportworkDto> GetList(ProReportworkQueryDto parm);
|
|
|
|
ProReportwork01 GetInfo(string Id);
|
|
|
|
|
|
ProReportwork01 AddProReportwork(ProReportwork01 parm);
|
|
int UpdateProReportwork(ProReportwork01 parm);
|
|
|
|
|
|
}
|
|
}
|