8 天以前 f0efc10af370936b4db47b8428eb1ca4686431f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.measuringinstrumentledger.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Data
@Schema(name = "备件出库请求")
public class SparePartsOutboundDto {
 
    @Schema(description = "备件ID", requiredMode = Schema.RequiredMode.REQUIRED)
    private Long sparePartsId;
 
    @Schema(description = "出库数量", requiredMode = Schema.RequiredMode.REQUIRED)
    private Integer quantity;
 
    @Schema(description = "设备ID(可选)")
    private Long deviceLedgerId;
 
    @Schema(description = "备注(可选)")
    private String remark;
}