9a750b939a1f47e1732b5ead0585e126d91331f4.svn-base 1.3 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. /// FmsMaterialStockHistory
  9. /// </summary>
  10. /// <remarks>
  11. /// 클라이언트와의 DTO 위한 확장
  12. /// </remarks>
  13. public partial class FmsMaterialStockHistoryDaily : FmsMaterialStored
  14. {
  15. public int HistoryId {get; set;}
  16. public string MaterialCode { get; set; }
  17. public string MaterialName { get; set; }
  18. public string Unit { get; set; }
  19. public DateTime YearMonth { get; set; }
  20. public DateTime YearMonthDate { get; set; }
  21. public int ReleaseCount { get; set; }
  22. public int ReleaseLossCount { get; set; }
  23. public int ReleaseReturnCount { get; set; }
  24. public int FirstClassId { get; set; }
  25. public int SecondClassId { get; set; }
  26. public int ThirdClassId { get; set; }
  27. public int WarehouseId { get; set; }
  28. public int StockAmount { get; set; }
  29. public string Standard { get; set; }
  30. public string BusinessFieldName { get; set; }
  31. }
  32. public partial class FmsMaterialStockHistoryMonthly : FmsMaterialStockHistoryDaily
  33. {
  34. }
  35. public partial class FmsMaterialStockHistoryAll : FmsMaterialStockHistoryDaily
  36. {
  37. }
  38. }