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