19 lines
400 B
C#
19 lines
400 B
C#
using Model.SQLModel;
|
|
using ORM;
|
|
using Service.Interface;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
public class EAEL9080Service : BaseService<EAELD9080Data>
|
|
{
|
|
public EAEL9080Service(SqlSugarRepository<EAELD9080Data> repository) : base(repository)
|
|
{
|
|
}
|
|
}
|
|
}
|