记得上下班打卡 | git大法好,push需谨慎

Commit c0a15062 authored by 张国柄's avatar 张国柄

~goblin:nft.sql;

~goblin:nft.entity;
parent 111fe895
...@@ -212,6 +212,11 @@ public class GoblinGoodsSku implements Serializable { ...@@ -212,6 +212,11 @@ public class GoblinGoodsSku implements Serializable {
*/ */
private String routeType; private String routeType;
/**
* NFT上传声明状态[0-待上传|1-已上传|2-上传失败|9-上传中]
*/
private Integer upchain;
/** /**
* NFT预览图URL * NFT预览图URL
*/ */
......
...@@ -27,7 +27,8 @@ alter table goblin_goods_sku add hit_ratio varchar(10) null comment '盲盒命 ...@@ -27,7 +27,8 @@ alter table goblin_goods_sku add hit_ratio varchar(10) null comment '盲盒命
alter table goblin_goods_sku add opening_time datetime null comment '盲盒开启时间' after hit_ratio; alter table goblin_goods_sku add opening_time datetime null comment '盲盒开启时间' after hit_ratio;
alter table goblin_goods_sku add opening_limit int default 0 comment '盲盒开启时限[单位秒]' after opening_time; alter table goblin_goods_sku add opening_limit int default 0 comment '盲盒开启时限[单位秒]' after opening_time;
alter table goblin_goods_sku add route_type varchar(20) null comment 'NFT路由' after opening_limit; alter table goblin_goods_sku add route_type varchar(20) null comment 'NFT路由' after opening_limit;
alter table goblin_goods_sku add display_url varchar(256) null comment 'NFT预览图URL' after route_type; alter table goblin_goods_sku add upchain tinyint default 0 null comment 'NFT上传声明状态[0-待上传|1-已上传|2-上传失败|9-上传中]' after route_type;
alter table goblin_goods_sku add display_url varchar(256) null comment 'NFT预览图URL' after upchain;
alter table goblin_goods_sku add material_access_url varchar(256) null comment 'NFT素材访问URL' after display_url; alter table goblin_goods_sku add material_access_url varchar(256) null comment 'NFT素材访问URL' after display_url;
alter table goblin_goods_sku add series_id varchar(256) null comment 'NFT系列ID' after material_access_url; alter table goblin_goods_sku add series_id varchar(256) null comment 'NFT系列ID' after material_access_url;
# -- >>------------------------------------------------------------------------------------ # -- >>------------------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment