using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace EMIS.ViewModel.FeeManage { public class PrintProjectView { public string ExaminationProjectName { get; set; } /// /// 收费项目 /// [DisplayName("收费项目")] public string ExaminationProjectFeeName { get; set; } public int StudentCount { get; set; } public decimal? Fee { get; set; } } }