parent
ec8b7037c0
commit
1e06e06259
File diff suppressed because it is too large
Load Diff
@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
@ -1,8 +0,0 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.4\buildTransitive\net6.0\SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.4\buildTransitive\net6.0\SQLitePCLRaw.lib.e_sqlite3.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
File diff suppressed because it is too large
Load Diff
@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
@ -1,8 +0,0 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
Binary file not shown.
Binary file not shown.
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)system.text.json\7.0.0\buildTransitive\net6.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\7.0.0\buildTransitive\net6.0\System.Text.Json.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.4\buildTransitive\net6.0\SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.4\buildTransitive\net6.0\SQLitePCLRaw.lib.e_sqlite3.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
@ -1,8 +0,0 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)system.text.json\7.0.0\buildTransitive\net6.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\7.0.0\buildTransitive\net6.0\System.Text.Json.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.4\buildTransitive\net6.0\SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.4\buildTransitive\net6.0\SQLitePCLRaw.lib.e_sqlite3.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -1,7 +1,7 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using Entity.DbModel;
|
||||
using SqlSugar;
|
||||
|
||||
namespace HybirdFrameworkRepository.System
|
||||
namespace Repository.System
|
||||
{
|
||||
public class sysDicDataRepository : BaseRepository<sysDicData>
|
||||
{
|
@ -1,7 +1,7 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using Entity.DbModel;
|
||||
using SqlSugar;
|
||||
|
||||
namespace HybirdFrameworkRepository.System
|
||||
namespace Repository.System
|
||||
{
|
||||
public class sysDicTypeRepository : BaseRepository<sysDicType>
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using Entity.DbModel;
|
||||
using SqlSugar;
|
||||
|
||||
|
||||
namespace HybirdFrameworkRepository.System
|
||||
namespace Repository.System
|
||||
{
|
||||
public class sysMessageRepository : BaseRepository<sysMessage>
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using Entity.DbModel;
|
||||
using SqlSugar;
|
||||
|
||||
|
||||
namespace HybirdFrameworkRepository.System
|
||||
namespace Repository.System
|
||||
{
|
||||
public class sysRoleMenuRepository : BaseRepository<sysRoleMenu>
|
||||
{
|
@ -1,7 +1,7 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using Entity.DbModel;
|
||||
using SqlSugar;
|
||||
|
||||
namespace HybirdFrameworkRepository.System
|
||||
namespace Repository.System
|
||||
{
|
||||
public class sysRoleRepository : BaseRepository<sysRole>
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using Entity.DbModel;
|
||||
using SqlSugar;
|
||||
|
||||
|
||||
namespace HybirdFrameworkRepository.System
|
||||
namespace Repository.System
|
||||
{
|
||||
public class sysUserRoleRepository : BaseRepository<sysUserRole>
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using HybirdFrameworkRepository.System;
|
||||
using HybirdFrameworkRepository.UnitOfWork;
|
||||
using Entity.DbModel;
|
||||
using Repository.System;
|
||||
using Repository.UnitOfWork;
|
||||
|
||||
namespace HybirdFrameworkServices.System
|
||||
namespace Service.System
|
||||
{
|
||||
public class sysDicDataServices : BaseServices<sysDicData>
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using HybirdFrameworkRepository.System;
|
||||
using HybirdFrameworkRepository.UnitOfWork;
|
||||
using Entity.DbModel;
|
||||
using Repository.System;
|
||||
using Repository.UnitOfWork;
|
||||
|
||||
namespace HybirdFrameworkServices.System
|
||||
namespace Service.System
|
||||
{
|
||||
public class sysDicTypeServices : BaseServices<sysDicType>
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using HybirdFrameworkRepository.System;
|
||||
using HybirdFrameworkRepository.UnitOfWork;
|
||||
using Entity.DbModel;
|
||||
using Repository.System;
|
||||
using Repository.UnitOfWork;
|
||||
|
||||
namespace HybirdFrameworkServices.System
|
||||
namespace Service.System
|
||||
{
|
||||
public class sysMessageServices : BaseServices<sysMessage>
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using HybirdFrameworkRepository.System;
|
||||
using HybirdFrameworkRepository.UnitOfWork;
|
||||
using Entity.DbModel;
|
||||
using Repository.System;
|
||||
using Repository.UnitOfWork;
|
||||
|
||||
namespace HybirdFrameworkServices.System
|
||||
namespace Service.System
|
||||
{
|
||||
public class sysRoleMenuServices : BaseServices<sysRoleMenu>
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using HybirdFrameworkRepository.System;
|
||||
using HybirdFrameworkRepository.UnitOfWork;
|
||||
using Entity.DbModel;
|
||||
using Repository.System;
|
||||
using Repository.UnitOfWork;
|
||||
|
||||
namespace HybirdFrameworkServices.System
|
||||
namespace Service.System
|
||||
{
|
||||
public class sysRoleServices : BaseServices<sysRole>
|
||||
{
|
@ -1,8 +1,8 @@
|
||||
using HybirdFrameworkEntity.DbModel;
|
||||
using HybirdFrameworkRepository.System;
|
||||
using HybirdFrameworkRepository.UnitOfWork;
|
||||
using Entity.DbModel;
|
||||
using Repository.System;
|
||||
using Repository.UnitOfWork;
|
||||
|
||||
namespace HybirdFrameworkServices.System
|
||||
namespace Service.System
|
||||
{
|
||||
public class sysUserRoleServices : BaseServices<sysUserRole>
|
||||
{
|
Loading…
Reference in new issue