18 lines
365 B
C#
18 lines
365 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 SQ0030Service : BaseService<SQ0030Data>
|
|
{
|
|
public SQ0030Service(SqlSugarRepository<SQ0030Data> repository) : base(repository)
|
|
{
|
|
}
|
|
}
|
|
}
|