liding
2 天以前 4c33acfe648e9b008f91c5e2cf446550e6b0174d
main-business/src/main/resources/db/migration/postgresql/V20250611160300__create_table_sales_record.sql
@@ -20,6 +20,7 @@
    registrant_id       BIGINT,                           -- 登记人id
    registrant          VARCHAR(255)   ,          -- 登记人
    registration_date   DATE           ,          -- 登记日期
    is_add              BOOLEAN      NOT NULL DEFAULT FALSE, -- 是否添加至待补库
    create_time         TIMESTAMP WITHOUT TIME ZONE,          -- 上传时间,默认当前时间
    update_time         TIMESTAMP WITHOUT TIME ZONE,          -- 最后更新时间,默认当前时间
@@ -50,6 +51,7 @@
COMMENT ON COLUMN sales_record.registrant IS '登记人';
COMMENT ON COLUMN sales_record.registrant_id IS '登记人id';
COMMENT ON COLUMN sales_record.registration_date IS '登记日期';
COMMENT ON COLUMN sales_record.is_add IS '是否添加至待补库';
COMMENT ON COLUMN sales_record.deleted IS '软删除标志,0=未删除,1=已删除';
COMMENT ON COLUMN sales_record.create_by IS '创建该记录的用户';