增加分页

This commit is contained in:
qianhao.xu
2024-12-23 18:34:58 +08:00
parent 80cbe486fd
commit 9d22ec83eb
4 changed files with 33 additions and 22 deletions

View File

@@ -21,9 +21,9 @@ public interface IReportFlowService: IBaseService<ProReportwork01>
bool ShipmentProcessReportwork(string workorder, int processId, int finish_num, int bad_num, string customer_order, string Worker);
List<ProReportWorkDetialDto> GetWorkOrderReportWorkList(string workorder);
List<ProReportWorkDetialDto> GetReportInfoByName(string Name);
PagedInfo<ProReportWorkDetialDto> GetReportInfoByName(ProReportWorkDto2 query);
List<BaseWorkProcessesDto> GetProcessByRoute(int route_id);
List<ProReportWorkDetialDto> GetReportByProcessId(int processId);
PagedInfo<ProReportWorkDetialDto> GetReportByProcessId(ProReportWorkDto3 query);
}