using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace iBemsDataService.Model
{
///
/// FmsEquipment 의 Extension 클래스
///
///
/// 클라이언트와의 DTO 위한 확장
///
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; }
}
}