BOB/Service/Implement/SQ0030Service.cs
2025-12-04 10:51:21 +08:00

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)
{
}
}
}