12345678910111213141516171819202122232425262728293031 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmPatrolCourse
- {
- public CmPatrolCourse()
- {
- this.CmPatrolCoursePos = new HashSet<CmPatrolCoursePos>();
- this.CmPatrolPlan = new HashSet<CmPatrolPlan>();
- }
-
- public int SiteId { get; set; }
- public int PatrolCourseId { get; set; }
- public string Name { get; set; }
-
- public virtual ICollection<CmPatrolCoursePos> CmPatrolCoursePos { get; set; }
- public virtual ICollection<CmPatrolPlan> CmPatrolPlan { get; set; }
- public virtual CmSite CmSite { get; set; }
- }
- }
|