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
package com.ruoyi.cost.bean.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@Schema(name = "CostMaterialPriceVo", description = "成本核算-物料单价(多来源,按优先级取首条)")
public class CostMaterialPriceVo {
 
    @Schema(description = "物料规格id")
    private Long productModelId;
 
    @Schema(description = "单价")
    private BigDecimal price;
 
    @Schema(description = "价格来源")
    private String priceSource;
 
    @Schema(description = "优先级,数值越小越优先")
    private Integer priority;
}