- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.PaymentManage
- {
- public class WorktimeSchedulingView
- {
- public Guid EducationMissionClassID { get; set; }
- public Guid? UserID { get; set; }
- public int? Weekday { get; set; }
- public int? WeekNum { get; set; }
- public int? Worktime { get; set; }
- }
- }
|