14 lines
392 B
C#
14 lines
392 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);
|
|
|
|
} |