liding
3 天以前 ca4cb71983041c4614cc9c4a740c1be535787777
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.ruoyi.business.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ruoyi.common.core.domain.MyBaseEntity;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 待入库表 实体类
 *
 * @author ruoyi
 * @date 2025-06-04
 */
@Data
@TableName("pending_inventory")
public class PendingInventory extends MyBaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 供货商名称
     */
    @TableField(value = "supplier_name")
    private String supplierName;
    /**
     * 煤种
     */
    @TableField(value = "coal_type")
    private String coalType;
    /**
     * 单位
     */
    @TableField(value = "unit")
    private String unit;
    /**
     * 库存数量
     */
    @TableField(value = "inventory_quantity")
    private BigDecimal inventoryQuantity;
    /**
     * 单价(含税)
     */
    @TableField(value = "price_including_tax")
    private BigDecimal priceIncludingTax;
    /**
     * 总价(含税)
     */
    @TableField(value = "total_price_including_tax")
    private BigDecimal totalPriceIncludingTax;
    /**
     * 成本单价
     */
    @TableField(value = "cost_per_unit")
    private BigDecimal costPerUnit;
    /**
     * 登记人
     */
    @TableField(value = "registrant")
    private String registrant;
    /**
     * 登记时间
     */
    @TableField(value = "registration_time")
    private Date registrationTime;
}