123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace iBemsDataService.Model
- {
-
-
-
-
-
-
- public partial class FmsMaterialEx : FmsMaterial
- {
- public int StockCount { get; set; }
- public int StockAmount { get; set; }
-
- public string WHouseName { get; set; }
-
- public int NeedCount { get; set; }
- }
- }
|