Houjie
2025-06-13 ac8e03a06d463aafcbe810af31e2da5037491a07
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;
}