zxl
2025-09-04 6db5d5a8fca3aa7e08190c2cfde2fa6cc72cfea2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.lili.modules.order.order.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 部分发货
 */
@Data
public class PartDeliveryDTO {
 
    @ApiModelProperty(value = "订单货物Id")
    private String orderItemId;
 
    @ApiModelProperty(value = "发货数量")
    private Integer deliveryNum;
 
 
}