123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ExaminationApply
- {
- public class FeeTypeByProjectFeeView
- {
- public Guid? ExaminationProjectFeeTypeID { get; set; }
- [DisplayName("项目收费标准")]
- public Guid? ExaminationProjectFeeID { get; set; }
- public Guid? ExaminationProjectID { get; set; }
- public int? FeeTypeID { get; set; }
- public string FeeTypeName { get; set; }
- public bool? IsResit { get; set; }
- }
- }
|