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

19 lines
382 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 ZXKXService : BaseService<ZXKSData>
{
public ZXKXService(SqlSugarRepository<ZXKSData> repository) : base(repository)
{
}
}
}