using DOAN.Model.MES.product; using DOAN.Model.Mobile.ReportFlow.Dto; namespace DOAN.Service.Mobile.IService; public interface IReportFlowService: IBaseService { 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 GetWorkOrderReportWorkList(string workorder); }