123456789101112131415161718192021222324252627282930313233343536 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmPatrolPlan
- {
- public CmPatrolPlan()
- {
- this.CmPatrolSchedule = new HashSet<CmPatrolSchedule>();
- }
-
- public int SiteId { get; set; }
- public int PatrolPlanId { get; set; }
- public int GroupId { get; set; }
- public int CourseId { get; set; }
- public string Name { get; set; }
- public string PlanDesc { get; set; }
- public int term { get; set; }
- public Nullable<System.DateTime> inDate { get; set; }
-
- public virtual CmPatrolCourse CmPatrolCourse { get; set; }
- public virtual CmPatrolGroup CmPatrolGroup { get; set; }
- public virtual ICollection<CmPatrolSchedule> CmPatrolSchedule { get; set; }
- public virtual CmSite CmSite { get; set; }
- }
- }
|