FinanceReportTotalView.cs 441 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.FeeManage
  6. {
  7. public class FinanceReportTotalView
  8. {
  9. public int? TotalCount { get; set; }
  10. public decimal? TotalAmount { get; set; }
  11. public string TotalAmountString
  12. {
  13. get
  14. {
  15. return (TotalAmount ?? 0).ToString("#0.##");
  16. }
  17. }
  18. }
  19. }