gongchunyi
17 小时以前 520a715610bd67a6401e989ada8b1c43a312163b
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.ruoyi.stock.dto;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.stock.pojo.StockInRecord;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
 
 
@Data
@ExcelIgnoreUnannotated
public class StockInRecordDto extends StockInRecord {
    /**
     * 产品名称
     */
    @Excel(name = "产品名称")
    private String productName;
    /**
     * 产品规格
     */
    @Excel(name = "产品规格")
    private String model;
    /**
     * 批次号
     */
    @Excel(name = "批次号")
    private String batchNo;
 
    /**
     * 产品单位
     */
    @Excel(name = "产品单位")
    private String unit;
 
    private String timeStr;
 
    @Excel(name = "入库人")
    private String createBy;
 
    //现存量
    @Excel(name = "现存量")
    private String currentStock;
 
    @Schema(description = "顶部父产品id")
    private Long topParentProductId;
 
    @Schema(description = "记录ID列表")
    private List<Long> ids;
 
    @Schema(description = "源单号")
    @Excel(name = "源单号")
    private String sourceOrderNo;
 
}