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