Generator Changes at 11/20/2025 6:27:21 PM +03:30

This commit is contained in:
masoodafar-web
2025-11-20 18:32:51 +03:30
parent b0a760d063
commit 69ab91fb2b
22 changed files with 69 additions and 81 deletions

View File

@@ -3,11 +3,11 @@ namespace CMSMicroservice.Domain.Entities;
public class PruductCategory : BaseAuditableEntity
{
//شناسه محصول
public string ProductId { get; set; }
public long ProductId { get; set; }
//Product Navigation Property
public virtual Products Product { get; set; }
//شناسه دسته بندی
public string CategoryId { get; set; }
public long CategoryId { get; set; }
//Category Navigation Property
public virtual Category Category { get; set; }
}

View File

@@ -2,13 +2,12 @@ namespace CMSMicroservice.Domain.Entities;
//برچسب محصول
public class PruductTag : BaseAuditableEntity
{
//شناسه محصول
public string ProductId { get; set; }
//Product Navigation Property
//شناسه محصول
public long ProductId { get; set; }
//Product Navigation Property
public virtual Products Product { get; set; }
//شناسه تگ
public string TagId { get; set; }
//Tag Navigation Property
//شناسه تگ
public long TagId { get; set; }
//Tag Navigation Property
public virtual Tag Tag { get; set; }
}