update: 订单sqlupdate

This commit is contained in:
Damonny 2025-01-07 22:22:52 +08:00
parent 89c205b5c8
commit 0e65ee028d
2 changed files with 7 additions and 2 deletions

View File

@ -302,6 +302,10 @@ public class OrdersDO extends BaseDO {
/**
* 返回参数
*/
private String orderCreateResponse;
private String orderCreateResPosnse;
/**
* 是否加急 0或空 不加急 1 加急
*/
private Integer isUrgent;
}

View File

@ -2,4 +2,5 @@
ALTER TABLE haoka_orders
ADD COLUMN order_create_request text NULL COMMENT '订单提交参数' AFTER face,
ADD COLUMN order_create_response text NULL COMMENT '订单响应参数' AFTER order_create_request,
ADD COLUMN auto_type int(11) NULL COMMENT '生产方式' AFTER order_create_response;
ADD COLUMN auto_type int(11) NULL COMMENT '生产方式' AFTER order_create_response,
ADD COLUMN is_urgent int(11) NULL COMMENT '是否加急' AFTER auto_type;