AIMS/AIMSEntity/DAL/Extension/DBasicDictionary.cs
2022-08-23 21:12:59 +08:00

21 lines
498 B
C#

using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections;
using System.Collections.Generic;
using AIMSModel;
using AIMSObjectQuery;
using HelperDB;
namespace AIMSDAL
{
internal partial class DBasicDictionary
{
public static DataTable GetBasicDictionaryByWhere(string where)
{
string sql = "select * from BasicDictionary" + (where == "" ? "" : " where " + where);
return DBHelper.GetDataTable(sql);
}
}
}