| | |
| | | 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 |
| | |
| | | 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 '单价(不含税)'; |