LgStlCcmBilletWgtSamplingService.cs 971 B

123456789101112131415161718192021222324252627282930313233
  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.lgDbMgt;
  10. namespace Core.LgMes.Client.lgServiceMgt.LgResService
  11. {
  12. /// <summary>
  13. /// stl_ccm_billetwgtsampling
  14. /// </summary>
  15. public class LgStlCcmBilletWgtSamplingService : Core.LgMes.Client.lgServiceMgt.BaseService.LgBaseService
  16. {
  17. public DataSet GetStlCcmBilletWgtSampling(ClientParamWithSqlConditionAndOpenBase param)
  18. {
  19. DataSet ds = new DataSet();
  20. string sqlStr = "";
  21. try
  22. {
  23. sqlStr = LgSqlCollection.LgRes.LgCcmResSql.LgCcmResSql01.GetSqlForStl_ccm_billetwgtsampling(param.sqlCondition);
  24. ds = base.dbCommond.ExecuteReader(new DbClientParam(sqlStr,param.ob));
  25. }
  26. catch
  27. {
  28. }
  29. return ds;
  30. }
  31. }
  32. }