cuijian
2025-06-16 e0529614c187a5457ca3f587a16edeec51d69d15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
 
    //额定寿命
    @ApiModelProperty(value = "额定寿命")
    private BigDecimal ratedLife;
 
 
    //使用寿命
    @ApiModelProperty(value = "使用寿命")
    private BigDecimal useLife;
 
 
 
 
}