CmPatrolHistoryEx.cs 533 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace iBemsDataService.Model
  6. {
  7. /// <summary>
  8. /// FmsMaterial 의 Extension 클래스
  9. /// </summary>
  10. /// <remarks>
  11. /// 클라이언트와의 DTO 위한 확장
  12. /// </remarks>
  13. public partial class CmPatrolHistoryEx : CmPatrolHistory
  14. {
  15. public int TotalCnt { get; set; }
  16. public int OkCnt { get; set; }
  17. public int ErrorCnt { get; set; }
  18. public int TotalTimeMin { get; set; }
  19. }
  20. }