1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.FeeManage
- {
- public class FinanceReportTotalView
- {
- public int? TotalCount { get; set; }
- public decimal? TotalAmount { get; set; }
- public string TotalAmountString
- {
- get
- {
- return (TotalAmount ?? 0).ToString("#0.##");
- }
- }
- }
- }
|