123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.PaymentManage
- {
- public class PaymentTotalView
- {
- public Guid UserID { get; set; }
- public string LoginID { get; set; }
- public string UserName { get; set; }
- public string Account { get; set; }
- public Guid? CollegeID { get; set; }
- public string CollegeNo { get; set; }
- public string CollegeName { get; set; }
- public decimal? TotalPayment { get; set; }
- }
- }
|