feat(dal,domain): Таблицы для JobGroup фильтров.

This commit is contained in:
Mikhail Trubnikov
2026-06-15 16:56:23 +10:00
parent 1fb5cbd2e8
commit 108eb05853
49 changed files with 4997 additions and 190 deletions

View File

@@ -3,6 +3,7 @@ using Microsoft.Extensions.Logging;
using PARR.Core.Repositories.Interfaces.Job;
using PARR.Domain.Entities.Base.History;
using PARR.Domain.Entities.Job;
using PARR.Domain.Entities.JobGroupEntities;
using PARR.Domain.Entities.Schedule;
namespace PARR.Core.Common.Helpers;

View File

@@ -1,5 +1,5 @@
using PARR.Core.Repositories.Base;
using PARR.Domain.Entities.Job;
using PARR.Domain.Entities.JobGroupEntities;
namespace PARR.Core.Repositories.Interfaces.Job
{

View File

@@ -1,5 +1,5 @@
using PARR.Core.Repositories.Base;
using PARR.Domain.Entities.Job;
using PARR.Domain.Entities.JobGroupEntities;
namespace PARR.Core.Repositories.Interfaces.Job
{

View File

@@ -0,0 +1,9 @@
using PARR.Domain.Entities.JobGroupEntities;
namespace PARR.Core.Repositories.Interfaces.JobGroupRepositories
{
public interface IJobGroupAutoControlRepository
{
IQueryable<JobGroupAutoControl> Get();
}
}

View File

@@ -0,0 +1,9 @@
using PARR.Core.Repositories.Base;
using PARR.Domain.Entities.JobGroupEntities;
namespace PARR.Core.Repositories.Interfaces.JobGroupRepositories
{
public interface IJobGroupFieldFilterRepository : IBaseRepository<JobGroupFieldFilter>
{
}
}

View File

@@ -0,0 +1,6 @@
namespace PARR.Core.Repositories.Interfaces.JobGroupRepositories
{
public interface IJobGroupRelationshipFilterRepository
{
}
}

View File

@@ -0,0 +1,9 @@
using PARR.Core.Repositories.Base;
using PARR.Domain.Entities.JobGroupEntities;
namespace PARR.Core.Repositories.Interfaces.JobGroupRepositories
{
public interface IJobGroupUnitFilterRepository : IBaseRepository<JobGroupUnitFilter>
{
}
}

View File

@@ -1,5 +1,5 @@
using PARR.Core.Services.NextRunServices.Models;
using PARR.Domain.Entities.Job;
using PARR.Domain.Entities.JobGroupEntities;
using PARR.Domain.Enums;
namespace PARR.Core.Services.NextRunServices

View File

@@ -7,7 +7,7 @@ using PARR.Core.Services.NextRunServices.Models;
using PARR.Core.Services.NextRunServices.Subservices;
using PARR.Core.Services.Shortcodes;
using PARR.Domain.Entities;
using PARR.Domain.Entities.Job;
using PARR.Domain.Entities.JobGroupEntities;
using PARR.Domain.Enums;
using PARR.Domain.Settings;