1234567891011121314151617181920212223242526272829303132 |
- 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<System.Guid> UserID { get; set; }
- public string LoginID { get; set; }
- public string UserName { get; set; }
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public Nullable<System.Guid> CollegeID { get; set; }
- public string CollegeNo { get; set; }
- public string CollegeName { get; set; }
- [DisplayName("教研室")]
- public Nullable<System.Guid> DepartmentID { get; set; }
- public string DepartmentName { get; set; }
- [Required]
- [DisplayName("标准课酬")]
- public Nullable<decimal> Amount { get; set; }
- }
- }
|