bug修复

This commit is contained in:
吴方海
2025-04-18 14:12:26 +08:00
parent 54b920b852
commit e4ef5d7d25
25 changed files with 134 additions and 145 deletions
@@ -42,6 +42,18 @@ namespace YLErp.Modules.ReportModule
}
}
/// <summary>
/// 维持保证金金额
/// </summary>
public double? MaintenanceMargin { get; set; }
public string MaintenanceMarginString
{
get
{
return ((MaintenanceMargin == null || MaintenanceMargin == -0) ? 0 : MaintenanceMargin.Value).ToString("0.00");
}
}
/// <summary>
/// 初保账户
/// </summary>
public double? NetFundAll { get; set; }