Files
kunshan-bzfm-mes-backend/DOAN.Service/Mobile/IService/IReportFlowService.cs
2024-12-10 16:41:20 +08:00

20 lines
779 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 FeedProcessReportwork(string workorder, int processId, int finish_num, string stove_code, string feed_order, string Worker);
bool ProcessReportWork(string workorder, int process, int finish_num,int bad_num,string Worker);
bool ShipmentProcessReportwork(string workorder, int processId, int finish_num, int bad_num, string customer_order, string Worker);
List<ProReportWorkDetialDto> GetWorkOrderReportWorkList(string workorder);
}