1234567891011121314151617181920212223242526272829303132 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmPatrolType
- {
- public CmPatrolType()
- {
- this.CmPatrolHistoryPos = new HashSet<CmPatrolHistoryPos>();
- this.CmPatrolHistory = new HashSet<CmPatrolHistory>();
- }
-
- public int SiteId { get; set; }
- public int PatrolTypeId { get; set; }
- public string Name { get; set; }
- public Nullable<bool> IsUse { get; set; }
-
- public virtual ICollection<CmPatrolHistoryPos> CmPatrolHistoryPos { get; set; }
- public virtual CmSite CmSite { get; set; }
- public virtual ICollection<CmPatrolHistory> CmPatrolHistory { get; set; }
- }
- }
|