获取工单下的报工列表

This commit is contained in:
qianhao.xu
2024-12-03 19:51:09 +08:00
parent 83869e9bda
commit 37a6f76d0c
3 changed files with 48 additions and 2 deletions

View File

@@ -56,6 +56,11 @@ public class ReportFlowService : BaseService<ProReportwork01>, IReportFlowServic
}
return result>0;
}
public List<ProReportwork01> GetWorkOrderReportWorkList(string workorder)
{
return Context.Queryable<ProReportwork01>().Where(x => x.Workorder == workorder).ToList();
}
}