26 lines
656 B
C#
26 lines
656 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();
|
|
List<BaseWorkProcesses> GetProcessByRoute(int route_id);
|
|
PagedInfo<ProReportworkDto> GetList(ProReportworkQueryDto parm);
|
|
|
|
ProReportwork01 GetInfo(string Id);
|
|
|
|
|
|
ProReportwork01 AddProReportwork(ProReportwork01 parm);
|
|
int UpdateProReportwork(ProReportwork01 parm);
|
|
|
|
|
|
}
|
|
}
|