Merge branch 'develop' of gitee.com:peng-ou/haoka-server into develop
This commit is contained in:
commit
37000b0aa5
|
|
@ -303,5 +303,9 @@ public class OrdersDO extends BaseDO {
|
||||||
* 返回参数
|
* 返回参数
|
||||||
*/
|
*/
|
||||||
private String orderCreateResponse;
|
private String orderCreateResponse;
|
||||||
|
/**
|
||||||
|
* 是否加急 0或空 不加急 1 加急
|
||||||
|
*/
|
||||||
|
private Integer isUrgent;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -2,4 +2,5 @@
|
||||||
ALTER TABLE haoka_orders
|
ALTER TABLE haoka_orders
|
||||||
ADD COLUMN order_create_request text NULL COMMENT '订单提交参数' AFTER face,
|
ADD COLUMN order_create_request text NULL COMMENT '订单提交参数' AFTER face,
|
||||||
ADD COLUMN order_create_response text NULL COMMENT '订单响应参数' AFTER order_create_request,
|
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