Ver código fonte

v5版本更新的goods_log表的字段
新增了times字段
标识商品图片识别重试次数

SemiWarm 5 anos atrás
pai
commit
11ef418d22

+ 1 - 0
src/main/resources/static/ioc.sql

@@ -144,6 +144,7 @@ create table goods_log
     g_time_consume varchar(32) not null default '' comment '商品图片识别耗时,单位ms',
     g_done         boolean     not null default false comment '商品图片是否识别完成',
     g_error        boolean     not null default false comment '商品图片识别是否有错误',
+    times          int         not null default '0' comment '重试次数',
     create_time    varchar(32) not null default '' comment '创建日期',
     primary key (upload_id)
 )

+ 1 - 0
src/main/resources/static/ioc_test.sql

@@ -170,6 +170,7 @@ create table goods_log
     g_time_consume varchar(32) not null default '' comment '商品图片识别耗时,单位ms',
     g_done         boolean     not null default false comment '商品图片是否识别完成',
     g_error        boolean     not null default false comment '商品图片识别是否有错误',
+    times          int         not null default '0' comment '重试次数',
     create_time    varchar(32) not null default '' comment '创建日期',
     primary key (id)
 )