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