using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel.DataAnnotations; using System.ComponentModel; namespace EMIS.ViewModel.PaymentManage { public class StaffStandardView { public System.Guid StaffStandardID { get; set; } [Required] [DisplayName("教师")] public Nullable UserID { get; set; } public string LoginID { get; set; } public string UserName { get; set; } [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")] public Nullable CollegeID { get; set; } public string CollegeNo { get; set; } public string CollegeName { get; set; } [DisplayName("教研室")] public Nullable DepartmentID { get; set; } public string DepartmentName { get; set; } [Required] [DisplayName("标准课酬")] public Nullable Amount { get; set; } } }