锐腾搅拌上料功能
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.

66 lines
1.7 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Data;
  6. using ICSSoft.Frame.Data.DAL;
  7. using ICSSoft.Frame.Data.Entity;
  8. namespace ICSSoft.Frame.Data.BLL
  9. {
  10. public class ICSGaugeBLL
  11. {
  12. #region 根据工单查询子件机汇总信息
  13. public static DataSet select_(String MOCode, String TransNO, String Appconstr)
  14. {
  15. try
  16. {
  17. return ICSGaugeDAL.select_(MOCode, TransNO, Appconstr);
  18. }
  19. catch (Exception ex)
  20. {
  21. throw new Exception(ex.Message);
  22. }
  23. }
  24. public static DataSet select(String MOCode, String TransNO, String Appconstr, String where)
  25. {
  26. try
  27. {
  28. return ICSGaugeDAL.select(MOCode, TransNO, Appconstr, where);
  29. }
  30. catch (Exception ex)
  31. {
  32. throw new Exception(ex.Message);
  33. }
  34. }
  35. #endregion
  36. #region 根据工单查询拣料表信息
  37. public static DataSet GetGauge_(String MOCode, String Appconstr)
  38. {
  39. try
  40. {
  41. return ICSGaugeDAL.GetGauge_(MOCode, Appconstr);
  42. }
  43. catch (Exception ex)
  44. {
  45. throw new Exception(ex.Message);
  46. }
  47. }
  48. public static DataSet GetGauge(String MOCode, String Appconstr, String where)
  49. {
  50. try
  51. {
  52. return ICSGaugeDAL.GetGauge(MOCode, Appconstr, where);
  53. }
  54. catch (Exception ex)
  55. {
  56. throw new Exception(ex.Message);
  57. }
  58. }
  59. #endregion
  60. }
  61. }