18 lines
369 B
C#
18 lines
369 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 IT6724CService : BaseService<IT6724CData>
|
|
{
|
|
public IT6724CService(SqlSugarRepository<IT6724CData> repository) : base(repository)
|
|
{
|
|
}
|
|
}
|
|
}
|