17 lines
507 B
C#
17 lines
507 B
C#
using DOAN.Model.MES.product;
|
|
using DOAN.Model.Mobile.ReportFlow.Dto;
|
|
|
|
namespace DOAN.Service.Mobile.IService;
|
|
|
|
public interface IReportFlowService: IBaseService<ProReportwork01>
|
|
{
|
|
|
|
ProWorkorder GetWorkOrderDetail(string workorder);
|
|
|
|
ProReportwork01 GetProcessReportWorkDetail(string workorder, int process);
|
|
|
|
bool ProcessReportWork(string workorder, int process, int finish_num,int bad_num,string Worker);
|
|
|
|
List<ProReportWorkDetialDto> GetWorkOrderReportWorkList(string workorder);
|
|
|
|
} |