PrintProjectView.cs 521 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace EMIS.ViewModel.FeeManage
  7. {
  8. public class PrintProjectView
  9. {
  10. public string ExaminationProjectName { get; set; }
  11. /// <summary>
  12. /// 收费项目
  13. /// </summary>
  14. [DisplayName("收费项目")]
  15. public string ExaminationProjectFeeName { get; set; }
  16. public int StudentCount { get; set; }
  17. public decimal? Fee { get; set; }
  18. }
  19. }