using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Core.LgMes.Client.lgServiceMgt.LgSqlCollection.LgRes.LgCasSql { public class LgCasResSql { /// /// 返回氩站实绩SQL /// /// /// 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; } } }