StaffStandardView.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel.DataAnnotations;
  6. using System.ComponentModel;
  7. namespace EMIS.ViewModel.PaymentManage
  8. {
  9. public class StaffStandardView
  10. {
  11. public System.Guid StaffStandardID { get; set; }
  12. [Required]
  13. [DisplayName("教师")]
  14. public Nullable<System.Guid> UserID { get; set; }
  15. public string LoginID { get; set; }
  16. public string UserName { get; set; }
  17. [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
  18. public Nullable<System.Guid> CollegeID { get; set; }
  19. public string CollegeNo { get; set; }
  20. public string CollegeName { get; set; }
  21. [DisplayName("教研室")]
  22. public Nullable<System.Guid> DepartmentID { get; set; }
  23. public string DepartmentName { get; set; }
  24. [Required]
  25. [DisplayName("标准课酬")]
  26. public Nullable<decimal> Amount { get; set; }
  27. }
  28. }