feat(dal,templateMatcher): Shortcodes добавлены %МАКС:ИМЯ АТРИБУТА%, %ГР_ПОЛЕ-ПН%, %БУКВЫ:ИМЯ АТРИБУТА%, исправлена фильтрация в UnitFilter, TemplateMatcher отдельные классы для типов работ, Shortcodes теперь работает по своим моделям Dto
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace PARR.DAL.DomainServices.Shortcodes.Models
|
||||
{
|
||||
public class TemplateForShortcodes
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public int? Index { get; set; }
|
||||
public Guid JobId { get; set; }
|
||||
public Guid UnitId { get; set; }
|
||||
|
||||
public JobForShortcodes? Job { get; set; }
|
||||
public List<UnitInTemplateForShortcodes> UnitsInTemplate { get; set; } = new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user