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
36
37
38
package com.ruoyi.stock.dto;
 
import com.ruoyi.stock.pojo.ProductBorrowReturn;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 产品归还DTO
 *
 * @author ruoyi
 */
@EqualsAndHashCode(callSuper = true)
@Data
@Schema(description = "产品归还DTO")
public class ProductBorrowReturnDto extends ProductBorrowReturn {
 
    @Schema(description = "领用单号")
    private String borrowNo;
 
    @Schema(description = "产品名称")
    private String productName;
 
    @Schema(description = "规格型号")
    private String model;
 
    @Schema(description = "产品编码")
    private String productCode;
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "领用数量")
    private java.math.BigDecimal borrowQuantity;
 
    @Schema(description = "领用人姓名")
    private String borrowerName;
}