You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
603 B
C#
32 lines
603 B
C#
|
|
|
|
//----------SysNotice开始----------
|
|
|
|
|
|
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using Admin.Core.IRepository;
|
|
using Admin.Core.IService.ISys;
|
|
using Admin.Core.Model.Sys;
|
|
|
|
namespace Admin.Core.Service.Sys
|
|
{
|
|
/// <summary>
|
|
/// 通知公告表Service
|
|
/// </summary>
|
|
public partial class SysNoticeService : BaseServices<SysNotice>, ISysNoticeService
|
|
{
|
|
IBaseRepository<SysNotice> dal;
|
|
public SysNoticeService(IBaseRepository<SysNotice> dal)
|
|
{
|
|
this.dal = dal;
|
|
BaseDal = dal;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
//----------SysNotice结束----------
|
|
|