ff662b131261e01ef2a08421c371979afa11c0f1.svn-base 605 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace iBemsDataService.Model
  6. {
  7. /// <summary>
  8. /// CmPatrolHistory 의 Extension 클래스
  9. /// </summary>
  10. /// <remarks>
  11. /// 클라이언트와의 DTO 위한 확장
  12. /// </remarks>
  13. public partial class FmsMaterialEx : FmsMaterial
  14. {
  15. public int StockCount { get; set; }
  16. public int StockAmount { get; set; }
  17. // hcLee 2015 11 16
  18. public string WHouseName { get; set; }
  19. //2016 01 13 hcLee 추가
  20. public int NeedCount { get; set; }
  21. }
  22. }