| 12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.LgMes.Client.lgServiceMgt.LgSqlCollection.LgRes.LgMisSql
- {
- public class LgMisSql001
- {
- public static string GetSqlOfStl_Mis_Importiron(string sqlCondition)
- {
- string sqlStr = "select * from stl_mis_importiron a where 1 = 1 {0}";
- return string.Format(sqlStr,sqlCondition);
- }
- }
- }
|