1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.consum.base.core;
|
| /**
| * 执行入库后的返回类
| */
| public class CheckWarehouseResult {
|
| /**
| * 操作更新或新增的WH_GOODS库存物品ID
| */
| private long wh_goods_id;
|
| /**
| * 执行操作时的期初数量
| */
| private int initial_count;
|
| /**
| * 执行操作后的期末数量
| */
| private int end_count;
|
| }
|
|