Merge branch 'develop' of gitee.com:peng-ou/haoka-server into develop

This commit is contained in:
Owen 2025-01-07 23:10:51 +08:00
commit 37000b0aa5
2 changed files with 6 additions and 1 deletions

View File

@ -303,5 +303,9 @@ public class OrdersDO extends BaseDO {
* 返回参数
*/
private String orderCreateResponse;
/**
* 是否加急 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;