|
@@ -31,6 +31,25 @@ namespace OASystem.Domain.Entities.Financial
|
|
|
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
public decimal Price { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 费用数量
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int PriceCount { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 费用总金额
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(14,2)")]
|
|
|
+ public decimal PriceSum { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 费用实际产生时间
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDescription = "创建时间", IsNullable = true, ColumnDataType = "DateTime")]
|
|
|
+ public DateTime PriceDt { get; set; } = DateTime.Now;
|
|
|
+
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 团组Id(币种ID)
|
|
|
/// </summary>
|