1234567891011121314151617181920212223242526272829 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmPatrolHistoryPos
- {
- public int SiteId { get; set; }
- public int PatrolHistoryId { get; set; }
- public int PosId { get; set; }
- public System.DateTime PatrolTime { get; set; }
- public Nullable<int> term { get; set; }
- public int resultType { get; set; }
- public int mId { get; set; }
-
- public virtual CmPatrolPos CmPatrolPos { get; set; }
- public virtual CmPatrolType CmPatrolType { get; set; }
- public virtual CmSite CmSite { get; set; }
- }
- }
|