AIMS/AIMSEntity/DAL/Extension/DPersonDuty.cs
2022-09-26 17:39:34 +08:00

19 lines
460 B
C#

using System;
using System.Data;
using System.Data.SqlClient;
using System.Collections;
using System.Collections.Generic;
using AIMSModel;
using AIMSObjectQuery;
namespace AIMSDAL
{
internal partial class DPersonDuty
{
public static DataTable GetDataTablePersonDuty()
{
string strSql = "select Id,Name from dbo.PersonDuty where IsValid=1";
return HelperDB.DbHelperSQL.GetDataTable(strSql);
}
}
}