using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace iBemsDataService.Model
{
    /// <summary>
    /// FmsEquipment 의 Extension 클래스
    /// </summary>
    /// <remarks>
    /// 클라이언트와의 DTO 위한 확장
    /// </remarks>
    public partial class FmsEquipmentEx : FmsEquipment
    {
        //public new int SiteId { get; set; }

        // 전체 재고 수량
        public int? TotalStockCount { get; set; }
        
        // 현재 보유 수량
        public int? CurrentStockCount { get; set; }
        
        // 등록자 이름  
        public string RegisterUserName { get; set; }

        // 창고명
        public string WarehouseName { get; set; }

        // 타입명 
        public string EquipmentCodeTypeName { get; set; }

        public int? StoredCount { get; set; }

        public int? CurrentRentCount { get; set; }

        public int? CurrentStoredCount { get; set; }

        public int? CurrentLossCount { get; set; }

        public int? CurrentReturnCount { get; set; }

    }
}