using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Core.LgMes.Client.lgServiceMgt.LgSqlCollection.LgRes.LgBofSql
{
public class LgBofResSql01
{
///
/// 返回表stl_bof_optinfo sql
///
///
///
public static string GetSqlForStlBofOptinfo(string sqlCondition)
{
string sqlStr = "select * from stl_bof_optinfo a where 1 = 1 {0} ";
return string.Format(sqlStr, sqlCondition);
}
///
/// 返回表stl_bof_optinfo sql
///
///
///
public static string GetSqlForHisStlBofOptinfo(string sqlCondition)
{
string sqlStr = "select * from j#stl_bof_optinfo a where 1 = 1 {0} ";
return string.Format(sqlStr, sqlCondition);
}
}
}