| | |
| | | total_price_excluding_tax DECIMAL(10, 2) NOT NULL, -- 不含税总价,不允许为空 |
| | | registrant_id BIGINT NOT NULL, -- 登记人id,不允许为空 |
| | | registration_date DATE NOT NULL, -- 登记日期,不允许为空 |
| | | freight DECIMAL(10, 2) NOT NULL, -- 运费 |
| | | |
| | | deleted INT NOT NULL DEFAULT 0, -- 软删除标志:0=未删除,1=已删除 |
| | | create_by VARCHAR(255), -- 创建人用户名 |
| | |
| | | COMMENT ON COLUMN purchase_registration.total_price_excluding_tax IS '不含税总价'; |
| | | COMMENT ON COLUMN purchase_registration.registrant_id IS '登记人id'; |
| | | COMMENT ON COLUMN purchase_registration.registration_date IS '登记日期'; |
| | | COMMENT ON COLUMN purchase_registration.freight IS '运费'; |
| | | |
| | | COMMENT ON COLUMN purchase_registration.deleted IS '软删除标志,0=未删除,1=已删除'; |
| | | COMMENT ON COLUMN purchase_registration.create_by IS '创建该记录的用户'; |
| | | COMMENT ON COLUMN purchase_registration.create_time IS '记录创建时间'; |