This commit is contained in:
2025-07-07 20:02:36 +08:00
parent 38140986e4
commit 2c7dc97d5f
14 changed files with 573 additions and 8 deletions

View File

@@ -0,0 +1,26 @@
using MyCode.Project.Repositories.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MyCode.Project.Domain.Message;
using MyCode.Project.Domain.Model;
using MyCode.Project.Domain.Repositories;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Infrastructure.Search;
namespace MyCode.Project.Repositories
{
public class JackOrdersItemRepository: Repository<JackOrdersItem>, IJackOrdersItemRepository
{
public JackOrdersItemRepository(MyCodeSqlSugarClient context) : base(context)
{ }
}
}

View File

@@ -86,6 +86,7 @@
<Compile Include="Common\Repository`.cs" />
<Compile Include="Common\TransactionCallHandler.cs" />
<Compile Include="Common\TransactionCallHandlerAttribute.cs" />
<Compile Include="JackOrdersItemRepository.cs" />
<Compile Include="JackOrdersRepository.cs" />
<Compile Include="Lxm\LxmReportRepository.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />