2024-12-03 19:51:09 +08:00

16 lines
465 B
C#

using DOAN.Model.MES.product;
namespace DOAN.Service.Mobile.IService;
public interface IReportFlowService: IBaseService<ProReportwork01>
{
ProWorkorder GetWorkOrderDetail(string workorder);
ProReportwork01 GetProcessReportWorkDetail(string workorder, string process);
bool ProcessReportWork(string workorder, string process, int finish_num,int bad_num,string Worker);
List<ProReportwork01> GetWorkOrderReportWorkList(string workorder);
}