LgStlRhsMgt.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using CoreFS.CA06;
  6. using System.Data;
  7. using System.Collections;
  8. using Core.Mes.Client.Common;
  9. using Core.LgMes.Client.lgServiceMgt;
  10. namespace Core.LgMes.Client.lgBll.lgResMgt
  11. {
  12. public class LgStlRhsMgt
  13. {
  14. private lgServiceMgt.LgResService.LgStlRhsOptinfoDAL LgStlRhsOptinfoDAL = new Core.LgMes.Client.lgServiceMgt.LgResService.LgStlRhsOptinfoDAL();
  15. /// <summary>
  16. /// stl_lfs_option
  17. /// </summary>
  18. /// <param name="param"></param>
  19. /// <returns></returns>
  20. public DataSet GetStlRhsOption(ClientParamWithSqlConditionAndOpenBase param)
  21. {
  22. return LgStlRhsOptinfoDAL.GetStlRhsOption(param);
  23. }
  24. /// <summary>
  25. /// j#stl_lfs_option
  26. /// </summary>
  27. /// <param name="param"></param>
  28. /// <returns></returns>
  29. public DataSet GetStlRhsOptionHis(ClientParamWithSqlConditionAndOpenBase param)
  30. {
  31. return LgStlRhsOptinfoDAL.GetStlRhsOptionHis(param);
  32. }
  33. /// <summary>
  34. ///ALL
  35. /// </summary>
  36. /// <param name="param"></param>
  37. /// <returns></returns>
  38. public DataSet GetStlRhsOptionAll(ClientParamWithSqlConditionAndOpenBase param)
  39. {
  40. return LgStlRhsOptinfoDAL.GetStlRhsOptionAll(param);
  41. }
  42. /// <summary>
  43. ///
  44. /// </summary>
  45. /// <param name="param"></param>
  46. /// <returns></returns>
  47. public DataSet GetStlRhsOptionByHeatNo(ClientParamWithSqlConditionAndOpenBase param)
  48. {
  49. return LgStlRhsOptinfoDAL.GetStlRhsOptionByHeatNo(param);
  50. }
  51. }
  52. }