|
|
@@ -0,0 +1,76 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace GreenTree.Nachtragsmanagement.Core.Domain.Appendix
|
|
|
+{
|
|
|
+ public class Appendix : BaseEntity
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// Id of corresponding site
|
|
|
+ /// </summary>
|
|
|
+ public int SiteId { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Customized number for identification
|
|
|
+ /// </summary>
|
|
|
+ public int CustomNumber { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// The lot
|
|
|
+ /// </summary>
|
|
|
+ public string Lot { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Monetary value of all corresponding deviations
|
|
|
+ /// </summary>
|
|
|
+ public decimal Value { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Percentage probalitity
|
|
|
+ /// </summary>
|
|
|
+ public decimal Probability { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Number of corresponding offer
|
|
|
+ /// </summary>
|
|
|
+ public int OfferingNumber { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Date when corresponding offer was created
|
|
|
+ /// </summary>
|
|
|
+ public DateTime OfferingDate { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Date of negotiation
|
|
|
+ /// </summary>
|
|
|
+ public DateTime NegotiationDate { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Value of negotiation
|
|
|
+ /// </summary>
|
|
|
+ public decimal NegotiationValue { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Determines if protocol exists
|
|
|
+ /// </summary>
|
|
|
+ public bool ProtocolExists { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Number of the corresponding order
|
|
|
+ /// </summary>
|
|
|
+ public int OrderNumber { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Date of the corresponding order
|
|
|
+ /// </summary>
|
|
|
+ public DateTime OrderDate { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// Editable comment
|
|
|
+ /// </summary>
|
|
|
+ public string Comment { get; set; }
|
|
|
+ }
|
|
|
+}
|