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.hx.warehouse.dto.order.pick;
|
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| /**
| * 提货单扩展
| * */
| @Data
| public class PickUpItemDto {
| /***********必填项*********************/
| /**耗材标识*/
| private String consumablesId;
| /**需要提货数量*/
| private Integer needNum;
|
| /***********非必填项*********************/
| /**总数量(不传默认设为需要提货数量)*/
| private Integer num;
| /**订单中商品(药品)的单价*/
| private BigDecimal orderPrice;
| }
|
|