1
2
3
4
5
6
7
8
9
10
11
12
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace Model.ModelVm.DailyInventory
| {
| public class LocatInventoryVmA
| {
| public string LocatStatus { get; set; } //储位状态 0:空储位 1:有物品 2:总量 3:空托盘 4:待定 5:待定
| public string LocatNum { get; set; } //占用数量
| }
| }
|
|