18 lines
371 B
C#
18 lines
371 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 PSB11000Service : BaseService<PSB1100Data>
|
|
{
|
|
public PSB11000Service(SqlSugarRepository<PSB1100Data> repository) : base(repository)
|
|
{
|
|
}
|
|
}
|
|
}
|