19 lines
389 B
C#
19 lines
389 B
C#
using Model;
|
|
using Model.SQLModel;
|
|
using ORM;
|
|
using Service.Interface;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
public class BackFeedService : BaseService<BackFeedData>
|
|
{
|
|
public BackFeedService(SqlSugarRepository<BackFeedData> repository) : base(repository)
|
|
{
|
|
}
|
|
}
|
|
}
|