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.
31 lines
584 B
C#
31 lines
584 B
C#
1 year ago
|
|
||
|
|
||
|
//----------SysNotice开始----------
|
||
|
|
||
|
|
||
|
|
||
|
using System;
|
||
|
using System.Threading.Tasks;
|
||
|
using Admin.Core.IRepository;
|
||
|
using Admin.Core.IService;
|
||
|
using Admin.Core.Model;
|
||
|
namespace Admin.Core.Service
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 通知公告表Service
|
||
|
/// </summary>
|
||
|
public partial class SysNoticeService : BaseService<SysNotice>, ISysNoticeService
|
||
|
{
|
||
|
IBaseRepository<SysNotice> dal;
|
||
|
public SysNoticeService(IBaseRepository<SysNotice> dal)
|
||
|
{
|
||
|
this.dal = dal;
|
||
|
base.BaseDal = dal;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//----------SysNotice结束----------
|
||
|
|
||
|
|