LgMisSql001.cs 443 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Core.LgMes.Client.lgServiceMgt.LgSqlCollection.LgRes.LgMisSql
  6. {
  7. public class LgMisSql001
  8. {
  9. public static string GetSqlOfStl_Mis_Importiron(string sqlCondition)
  10. {
  11. string sqlStr = "select * from stl_mis_importiron a where 1 = 1 {0}";
  12. return string.Format(sqlStr,sqlCondition);
  13. }
  14. }
  15. }