LgCcmResSql01.cs 688 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Core.LgMes.Client.lgServiceMgt.LgSqlCollection.LgRes.LgCcmResSql
  6. {
  7. /// <summary>
  8. /// Sql 集合
  9. /// </summary>
  10. public class LgCcmResSql01
  11. {
  12. /// <summary>
  13. /// 返回表stl_ccm_billetwgtsamplingsql
  14. /// </summary>
  15. /// <param name="sqlCondition"></param>
  16. /// <returns></returns>
  17. public static string GetSqlForStl_ccm_billetwgtsampling(string sqlCondition)
  18. {
  19. string sqlStr = "select * from stl_ccm_billetwgtsampling a where 1 = 1 {0} ";
  20. return string.Format(sqlStr,sqlCondition);
  21. }
  22. }
  23. }