buhuazhen
8 天以前 3ef1cf899c2bf558b934fd2c5dfdf0a970df8c43
main-business/src/main/resources/db/migration/postgresql/V20250604104500__create_table_pending_inventory.sql
@@ -11,6 +11,7 @@
    registration_time         TIMESTAMP(6) DEFAULT CURRENT_TIMESTAMP, -- 登记时间
    price_excluding_tax       VARCHAR(255),                           -- 单价(不含税)
    total_price_excluding_tax VARCHAR(255),                           -- 总价(不含税)
    code VARCHAR(255),                           -- 编号
    registrant_id             BIGINT,                                 -- 登记人ID
    registration_date         DATE,                                   -- 登记日期
    supplier_id               BIGINT,                                 -- 供货商ID
@@ -38,6 +39,7 @@
COMMENT ON COLUMN pending_inventory.price_including_tax IS '单价(含税)';
COMMENT ON COLUMN pending_inventory.total_price_including_tax IS '总价(含税)';
COMMENT ON COLUMN pending_inventory.registrant IS '登记人';
COMMENT ON COLUMN pending_inventory.code IS '编号';
COMMENT ON COLUMN pending_inventory.type IS '煤料类型 1-成品 2-原料';
COMMENT ON COLUMN pending_inventory.registration_time IS '登记时间';
COMMENT ON COLUMN pending_inventory.price_excluding_tax IS '单价(不含税)';