Generator Changes at 11/20/2025 6:27:21 PM +03:30
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
@@ -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; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user