1234567891011121314151617181920212223242526272829303132 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmPatrolHistory
- {
- public int SiteId { get; set; }
- public int PatrolHistoryId { get; set; }
- public int ScheduleId { get; set; }
- public System.DateTime startDate { get; set; }
- public Nullable<System.DateTime> endDate { get; set; }
- public int resultTypeId { get; set; }
- public string resultDesc { get; set; }
- public Nullable<int> resultPosCnt { get; set; }
- public Nullable<int> resultNormalCnt { get; set; }
- public Nullable<int> resultAbnormalCnt { get; set; }
-
- public virtual CmPatrolSchedule CmPatrolSchedule { get; set; }
- public virtual CmPatrolType CmPatrolType { get; set; }
- public virtual CmSite CmSite { get; set; }
- }
- }
|