FeeTypeByProjectFeeView.cs 580 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace EMIS.ViewModel.ExaminationApply
  7. {
  8. public class FeeTypeByProjectFeeView
  9. {
  10. public Guid? ExaminationProjectFeeTypeID { get; set; }
  11. [DisplayName("项目收费标准")]
  12. public Guid? ExaminationProjectFeeID { get; set; }
  13. public Guid? ExaminationProjectID { get; set; }
  14. public int? FeeTypeID { get; set; }
  15. public string FeeTypeName { get; set; }
  16. public bool? IsResit { get; set; }
  17. }
  18. }