- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Interface
- {
- public interface ZXInterface:BaseInterface
- {
- List<T> ExSqlGetList<T>(string sql);
- object ExecuteScalar(string sql);
- int ExecuteNonQuery(string sql);
- List<string> ExSqlGetstringList(string sql);
- }
- }
|