| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.LgMes.Client.lgServiceMgt.LgSqlCollection.LgRes.LgCasSql
- {
- public class LgCasResSql
- {
-
- /// <summary>
- /// 返回氩站实绩SQL
- /// </summary>
- /// <param name="sqlWhere"></param>
- /// <returns></returns>
- public static string returnSqlOfStl_Cas_Optinfo(string sqlWhere)
- {
- string sqlStr = "";
- sqlStr = "select * from stl_cas_optinfo a where 1=1 {0}";
- sqlStr += "union all select * from j#stl_cas_optinfo a where 1=1 {0}";
- sqlStr = string.Format(sqlStr,sqlWhere);
- return sqlStr;
- }
-
- }
- }
|