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

24 lines
481 B
C#

using System;
using AIMSDAL;
using AIMSModel;
using AIMSObjectQuery;
using System.Collections;
using System.Collections.Generic;
using System.Data;
namespace AIMSBLL
{
public partial class BNoticeTemplate
{
/// <summary>
/// 查询NoticeTemplate所有的内容
/// </summary>
/// <returns></returns>
public static DataTable GetNoticeTemplate()
{
return DNoticeTemplate.GetNoticeTemplate();
}
}
}