This commit is contained in:
mmrbnjd
2025-01-20 14:10:15 +03:30
parent 25c72b2eb5
commit a296f31d74
8 changed files with 409 additions and 64 deletions

View File

@@ -18,14 +18,23 @@ namespace Shared.DTOs.Warehouse
}
public class CirculationDto
{
public int ID { get; set; }
public int CODID { get; set; }
[Display(Name = "کالا")]
public string? CODTitle { get; set; }
[Display(Name = "تعداد")]
public decimal Count { get; set; }
[Display(Name = "تاریخ")]
public string Date { get; set; }
[Display(Name = "اجازه فروش")]
public bool? ForSale { get; set; }
[Display(Name = "نوع")]
public string ModelTypeTitle { get; set; }
public int ModelTypeID { get; set; }
[Display(Name = "توضیحات")]
public string info { get; set; }
public TypeCirculation Type { get; set; }
[Display(Name = "نوع سند")]
public string msgType { get { return Type.GetEnumDisplayName(); } }
}
}