update: 订单sqlupdate
This commit is contained in:
parent
89c205b5c8
commit
0e65ee028d
|
|
@ -302,6 +302,10 @@ public class OrdersDO extends BaseDO {
|
|||
/**
|
||||
* 返回参数
|
||||
*/
|
||||
private String orderCreateResponse;
|
||||
private String orderCreateResPosnse;
|
||||
/**
|
||||
* 是否加急 0或空 不加急 1 加急
|
||||
*/
|
||||
private Integer isUrgent;
|
||||
|
||||
}
|
||||
|
|
@ -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;
|
||||
Loading…
Reference in New Issue