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
573 B
C#

11 months ago
//----------ELineDay开始----------
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 ELineDayService : BaseService<ELineDay>, IELineDayService
{
IBaseRepository<ELineDay> dal;
public ELineDayService(IBaseRepository<ELineDay> dal)
{
this.dal = dal;
base.BaseDal = dal;
}
}
}
//----------ELineDay结束----------