锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.7 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Linq;
  5. using System.Text;
  6. using ICSSoft.Frame.Data.DAL;
  7. using ICSSoft.Frame.Data.Entity;
  8. namespace ICSSoft.Frame.Data.BLL
  9. {
  10. public class ICSLOTONWIPCheckBLL
  11. {
  12. public static void Add(ICSLOTONWIPCheck info, List<ICSLOTONWIPCheckDetail> list, string conn)
  13. {
  14. ICSLOTONWIPCheckDAL.Add(info, list, conn);
  15. }
  16. public static void AddPause(ICSLOTONWIPCheck info, ICSLOTONWIPCheckPause pause, string conn)
  17. {
  18. ICSLOTONWIPCheckDAL.AddPause(info, pause, conn);
  19. }
  20. public static void Add(List<ICSLOTONWIPCheck> list, string conn)
  21. {
  22. ICSLOTONWIPCheckDAL.Add(list, conn);
  23. }
  24. public static void AddNCR(List<ICSLOTONWIPCheckNCR> list, string conn)
  25. {
  26. ICSLOTONWIPCheckDAL.AddNCR(list, conn);
  27. }
  28. public static void AddNCR2(List<ICSLOTONWIPCheckNCR> list, string conn)
  29. {
  30. ICSLOTONWIPCheckDAL.AddNCR2(list, conn);
  31. }
  32. public static void AddNCROA(List<ICSLOTONWIPCheckNCR> list,DataTable dtOPs, string FLOW_ID, string source, string conn)
  33. {
  34. ICSLOTONWIPCheckDAL.AddNCROA(list,dtOPs, FLOW_ID,source, conn);
  35. }
  36. public static string GetFLOW_ID(string conn, string WorkPointCode)
  37. {
  38. return ICSLOTONWIPCheckDAL.GetFLOW_ID(conn, WorkPointCode);
  39. }
  40. public static void AddNCRNC(List<string> IDs, string conn)
  41. {
  42. ICSLOTONWIPCheckDAL.AddNCRNC(IDs, conn);
  43. }
  44. public static System.Data.DataTable QueryCheckInfo(string LotNo, string conn)
  45. {
  46. return ICSLOTONWIPCheckDAL.QueryCheckInfo(LotNo, conn);
  47. }
  48. }
  49. }