PaymentTotalView.cs 545 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.PaymentManage
  6. {
  7. public class PaymentTotalView
  8. {
  9. public Guid UserID { get; set; }
  10. public string LoginID { get; set; }
  11. public string UserName { get; set; }
  12. public string Account { get; set; }
  13. public Guid? CollegeID { get; set; }
  14. public string CollegeNo { get; set; }
  15. public string CollegeName { get; set; }
  16. public decimal? TotalPayment { get; set; }
  17. }
  18. }