| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.LgMes.Client.lgServiceMgt.LgSqlCollection.LgRes.LgCcmResSql
- {
- /// <summary>
- /// Sql 集合
- /// </summary>
- public class LgCcmResSql01
- {
- /// <summary>
- /// 返回表stl_ccm_billetwgtsamplingsql
- /// </summary>
- /// <param name="sqlCondition"></param>
- /// <returns></returns>
- public static string GetSqlForStl_ccm_billetwgtsampling(string sqlCondition)
- {
- string sqlStr = "select * from stl_ccm_billetwgtsampling a where 1 = 1 {0} ";
- return string.Format(sqlStr,sqlCondition);
- }
- }
- }
|