erp-platform/api/src/Kurs.Platform.Domain/Entities/GlobalSearch.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

19 lines
632 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Domain.Entities;
using Volo.Abp.MultiTenancy;
namespace Kurs.Platform.Entities;
public class GlobalSearch : Entity<int>, IMultiTenant
{
public virtual Guid? TenantId { get; protected set; }
[StringLength(50)]
public string System { get; set; } // KIM, ETA, vb.
[StringLength(50)]
public string Group { get; set; } // Musteri, Desen, vb.
public string Term { get; set; } // Aranacak terim
public string Weight { get; set; } // Aranacak terimin ağırlığı.
public string Url { get; set; } // Arama sonucu gidecek url
}