18 lines
367 B
C#
18 lines
367 B
C#
using Model.SQLModel;
|
|
using ORM;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
public class LQ7500DService : BaseService<LQ7500Data>
|
|
{
|
|
public LQ7500DService(SqlSugarRepository<LQ7500Data> repository) : base(repository)
|
|
{
|
|
}
|
|
}
|
|
}
|