Deviation.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GreenTree.Nachtragsmanagement.Core.Domain.Deviation
  7. {
  8. public class Deviation : BaseEntity
  9. {
  10. /// <summary>
  11. /// Id of corresponding Appendix
  12. /// </summary>
  13. public int AppendixId { get; set; }
  14. /// <summary>
  15. /// Id of the current deviation status
  16. /// </summary>
  17. public int StatusId { get; set; }
  18. /// <summary>
  19. /// Id of the current deviation disturbance
  20. /// </summary>
  21. public int DisturbanceId { get; set; }
  22. /// <summary>
  23. /// Id of the current deviation kind
  24. /// </summary>
  25. public int KindId { get; set; }
  26. /// <summary>
  27. /// Customized number for identification
  28. /// </summary>
  29. public int CustomNumber { get; set; }
  30. /// <summary>
  31. /// Date when deviation were created
  32. /// </summary>
  33. public DateTime ReceiptDate { get; set; }
  34. /// <summary>
  35. /// Editable comment
  36. /// </summary>
  37. public string Comment { get; set; }
  38. /// <summary>
  39. /// Monetary value
  40. /// </summary>
  41. public decimal Value { get; set; }
  42. }
  43. }