liding
3 天以前 a461d5fc184fd0129a0eb5a5b3e34f67d75cc6a2
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
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-03
 */
@Data
@TableName("purchase_registration")
public class PurchaseRegistration extends MyBaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     *  供应商id
     */
    @TableField(value = "supplier_id")
    private Long supplierId;
    /**
     * 供应商名称
     */
    @TableField(value = "supplier_name")
    private String supplierName;
    /**
     * 单位
     */
    @TableField(value = "unit")
    private String unit;
    /**
     *
     */
    @TableField(value = "coal_id")
    private Long coalId;
    /**
     * 煤种类型
     */
    @TableField(value = "coal")
    private String coal;
    /**
     * 采购数量
     */
    @TableField(value = "purchase_quantity")
    private BigDecimal purchaseQuantity;
    /**
     * 单价(含税)
     */
    @TableField(value = "price_including_tax")
    private BigDecimal priceIncludingTax;
    /**
     * 总价(含税)
     */
    @TableField(value = "total_price_including_tax")
    private BigDecimal totalPriceIncludingTax;
    /**
     * 税率
     */
    @TableField(value = "tax_rate")
    private BigDecimal taxRate;
    /**
     * 不含税单价
     */
    @TableField(value = "price_excluding_tax")
    private BigDecimal priceExcludingTax;
    /**
     * 不含税总价
     */
    @TableField(value = "total_price_excluding_tax")
    private BigDecimal totalPriceExcludingTax;
    /**
     * 登记人id
     */
    @TableField(value = "registrant_id")
    private String registrantId;
    /**
     * 登记日期
     */
    @TableField(value = "registration_date")
    private Date registrationDate;
}