7a40a589e72d4bc70b079f7171d2968a880b7c96.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace iBemsDataService.Model
  6. {
  7. /// <summary>
  8. /// FmsEquipment 의 Extension 클래스
  9. /// </summary>
  10. /// <remarks>
  11. /// 클라이언트와의 DTO 위한 확장
  12. /// </remarks>
  13. public partial class FmsEquipmentEx : FmsEquipment
  14. {
  15. //public new int SiteId { get; set; }
  16. // 전체 재고 수량
  17. public int? TotalStockCount { get; set; }
  18. // 현재 보유 수량
  19. public int? CurrentStockCount { get; set; }
  20. // 등록자 이름
  21. public string RegisterUserName { get; set; }
  22. // 창고명
  23. public string WarehouseName { get; set; }
  24. // 타입명
  25. public string EquipmentCodeTypeName { get; set; }
  26. public int? StoredCount { get; set; }
  27. public int? CurrentRentCount { get; set; }
  28. public int? CurrentStoredCount { get; set; }
  29. public int? CurrentLossCount { get; set; }
  30. public int? CurrentReturnCount { get; set; }
  31. }
  32. }