1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using EMIS.ViewModel.CacheManage;
- namespace EMIS.ViewModel.PaymentManage
- {
- public class TeacherTypePaymentFormulaView
- {
- /// <summary>
- /// TeacherType
- /// </summary>
- public Nullable<int> TeacherType { get; set; }
- public string TeacherTypeDesc
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_TeacherType)
- .Where(x => x.Value == TeacherType)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
-
- [Required]
- [DisplayName("课酬公式")]
- public Nullable<System.Guid> PaymentFormulaID { get; set; }
- public string StudentCountRateFormunla { get; set; }
- public string PaymentFormula { get; set; }
- public int? OrderNo { get; set; }
- }
- }
|