123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace iBemsDataService.Model
- {
- /// <summary>
- /// CmPatrolHistory 의 Extension 클래스
- /// </summary>
- /// <remarks>
- /// 클라이언트와의 DTO 위한 확장
- /// </remarks>
- public partial class FmsMaterialEx : FmsMaterial
- {
- public int StockCount { get; set; }
- public int StockAmount { get; set; }
- // hcLee 2015 11 16
- public string WHouseName { get; set; }
- //2016 01 13 hcLee 추가
- public int NeedCount { get; set; }
- }
- }
|