2022年7月7日.sql 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ALTER TABLE `t_consign`
  2. ADD COLUMN `pay_type` int NULL COMMENT '支付方式:0、支付宝预授权,1、联动快捷支付' AFTER `consign_for`;
  3. CREATE TABLE `t_payment_record` (
  4. `id` bigint(255) NOT NULL COMMENT 'id',
  5. `order_id` bigint(255) DEFAULT NULL COMMENT '订单ID',
  6. `payment_type` int(255) DEFAULT NULL COMMENT '付款方式',
  7. `payment_price` decimal(10,2) DEFAULT '0.00' COMMENT '付款金额',
  8. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  9. `create_user_id` bigint(255) DEFAULT NULL COMMENT '创建人',
  10. `response_json` text COMMENT '响应json',
  11. `request_json` text COMMENT '请求报文',
  12. `is_delete` int(255) DEFAULT NULL COMMENT 'is_delete;0为未删除,1为已删除',
  13. `update_user_id` bigint(255) DEFAULT NULL COMMENT '更新人',
  14. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  15. `status` int(8) DEFAULT NULL COMMENT '状态',
  16. PRIMARY KEY (`id`)
  17. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
  18. CREATE TABLE `t_remit_record` (
  19. `id` bigint(255) NOT NULL COMMENT 'id',
  20. `consign_id` bigint(255) DEFAULT NULL COMMENT '寄售订单ID',
  21. `remit_type` int(255) DEFAULT NULL COMMENT '打款方式',
  22. `remit_price` decimal(10,2) DEFAULT '0.00' COMMENT '打款金额',
  23. `create_time` datetime DEFAULT NULL COMMENT '创建时间',
  24. `create_user_id` bigint(255) DEFAULT NULL COMMENT '创建人',
  25. `create_user_name` varchar(255) DEFAULT NULL COMMENT '打款人姓名',
  26. `payee_user_id` bigint(255) DEFAULT NULL COMMENT '收款人ID',
  27. `response_json` text COMMENT '响应json',
  28. `request_json` text COMMENT '请求报文',
  29. `is_delete` int(255) DEFAULT NULL COMMENT 'is_delete;0为未删除,1为已删除',
  30. `update_user_id` bigint(255) DEFAULT NULL COMMENT '更新人',
  31. `update_time` datetime DEFAULT NULL COMMENT '更新时间',
  32. `status` int(8) DEFAULT NULL COMMENT '状态',
  33. PRIMARY KEY (`id`)
  34. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;