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.
PLT-PDA/Admin.Core.Service/Sys/SysRoleDeptService.cs

32 lines
628 B
C#

11 months ago
//----------SysRoleDept开始----------
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 SysRoleDeptService : BaseServices<SysRoleDept>, ISysRoleDeptService
{
IBaseRepository<SysRoleDept> dal;
public SysRoleDeptService(IBaseRepository<SysRoleDept> dal)
{
this.dal = dal;
BaseDal = dal;
}
}
}
//----------SysRoleDept结束----------