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

18 lines
399 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace DataDictionary.DAL
{
public class PersonDutyDB
{
public DataTable GetDataTablePersonDuty()
{
string strSql = "select Id,Name from dbo.PersonDuty where IsValid=1";
return HelperDB.DbHelperSQL.GetDataTable(strSql);
}
}
}