rx
昨天 a34f957d77ff849d4454b67bbb49f66637b4a15c
提交 | 用户 | age
b55a75 1 package com.hx.warehouse.dto.order.stock;
de7e73 2
F 3 import lombok.Data;
4
5 /**
6  * 出入库详情
7  * @author fwq
8  */
9 @Data
10 public class StockChangeItemDto {
11     /***********必填***********************/
12     /**库存标识(表shop_warehouse_item)*/
13     private String shopItemId;
14     /**变化数量(出库负,入库正)*/
15     private Integer num;
16
45f1d2 17     /*********如果StockChangeDto中commonType值是提货单出库类型,则下面是必填,填提货子单的标识*************************/
809ebb 18     private String commonId;
f62331 19
6d9f4c 20     /*********提货单切换指定商品传值参数*************************/
R 21     /***实际耗材ID **/
f62331 22     private String actualConsumablesId;
6d9f4c 23     /***实际出库数量 **/
f62331 24     private Integer actualOutNum;
R 25
26     /**领用科室标识(科室表)*/
27     private String roomId;
28     /**领用科室名*/
29     private String roomName;
30     /**领用部门标识(部门表)*/
31     private String departmentId;
32     /**领用部门名*/
33     private String departmentName;
34     /**领用人标识(员工)*/
35     private String receiver;
36     /**领用人名*/
37     private String receiverName;
a34f95 38     /**备注*/
f62331 39     private String remarks;
R 40
de7e73 41 }