|
@@ -31,6 +31,25 @@ namespace OASystem.Domain.Entities.Financial
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
public decimal Price { get; set; }
|
|
public decimal Price { get; set; }
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
|
+ public int PriceCount { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(14,2)")]
|
|
|
|
+ public decimal PriceSum { get; set; }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [SugarColumn(ColumnDescription = "创建时间", IsNullable = true, ColumnDataType = "DateTime")]
|
|
|
|
+ public DateTime PriceDt { get; set; } = DateTime.Now;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|