6 天以前 1e123568c2f561013f5636e45dc0db30b17a3517
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
package com.ruoyi.cost.bean.vo;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@Schema(name = "CostMissingPriceVo", description = "缺采购单价的消耗物料清单")
public class CostMissingPriceVo {
 
    @Schema(description = "物料规格id")
    private Long productModelId;
 
    @Excel(name = "物料名称")
    @Schema(description = "物料名称")
    private String materialName;
 
    @Excel(name = "物料规格")
    @Schema(description = "物料规格")
    private String materialModel;
 
    @Excel(name = "单位")
    @Schema(description = "单位")
    private String unit;
 
    @Excel(name = "消耗数量")
    @Schema(description = "筛选范围内投入合计")
    private BigDecimal inputQty;
 
    @Excel(name = "涉及订单数")
    @Schema(description = "使用该物料的生产订单数")
    private Integer orderCount;
 
    @Excel(name = "最近投入时间", width = 22, dateFormat = "yyyy-MM-dd HH:mm:ss")
    @Schema(description = "最近一次投入时间")
    private LocalDateTime lastInputTime;
}