liding
2 天以前 40e4ce58f634598fafd205dfe54cb90e8b63b6f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.business.vo;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class OfficialInventoryVo {
 
    private Long id;  // 主键ID
    private String coal;   // 煤种
    private String unit;   // 单位
    private BigDecimal inventoryQuantity;  // 库存数量
    private BigDecimal priceIncludingTax; // 单价(含税)
 
}