cuilei
2025-05-29 d4328b5fac8a01d685a3068f097668132095807d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.jeecg.modules.tms.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 申请单方式出库参数封装
 */
@Data
public class OutBoundRequestDto {
    //出库申请单id
    @ApiModelProperty(value = "出库申请单id")
    private String outBoundOrderId;
    //出库申请明细id
    @ApiModelProperty(value = "出库申请明细id")
    private String outboundDetailId;
    //出库数量
    @ApiModelProperty(value = "出库数量")
    private BigDecimal outboundQuantity;
}