| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using CoreFS.CA06;
- using System.Data;
- using System.Collections;
- using Core.Mes.Client.Common;
- using Core.LgMes.Client.lgDbMgt;
- namespace Core.LgMes.Client.lgServiceMgt.LgResService
- {
- /// <summary>
- /// stl_ccm_billetwgtsampling
- /// </summary>
- public class LgStlCcmBilletWgtSamplingService : Core.LgMes.Client.lgServiceMgt.BaseService.LgBaseService
- {
- public DataSet GetStlCcmBilletWgtSampling(ClientParamWithSqlConditionAndOpenBase param)
- {
- DataSet ds = new DataSet();
- string sqlStr = "";
- try
- {
- sqlStr = LgSqlCollection.LgRes.LgCcmResSql.LgCcmResSql01.GetSqlForStl_ccm_billetwgtsampling(param.sqlCondition);
- ds = base.dbCommond.ExecuteReader(new DbClientParam(sqlStr,param.ob));
- }
- catch
- {
- }
- return ds;
- }
- }
- }
|