ZXInterface.cs 353 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Interface
  6. {
  7. public interface ZXInterface:BaseInterface
  8. {
  9. List<T> ExSqlGetList<T>(string sql);
  10. object ExecuteScalar(string sql);
  11. int ExecuteNonQuery(string sql);
  12. List<string> ExSqlGetstringList(string sql);
  13. }
  14. }