123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace iBemsDataService.Model
- {
-
-
-
-
-
-
- public partial class CmPatrolHistoryEx : CmPatrolHistory
- {
- public int TotalCnt { get; set; }
- public int OkCnt { get; set; }
- public int ErrorCnt { get; set; }
- public int TotalTimeMin { get; set; }
- }
- }
|