1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace iBemsDataService.Model
- {
-
-
-
-
-
-
- public partial class FmsEquipmentEx : FmsEquipment
- {
-
-
- 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; }
- }
- }
|