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

Commit 2ee37f40 authored by jiangxiulong's avatar jiangxiulong

订单表增加 artworkId 字段

parent 25b14257
......@@ -67,6 +67,9 @@ public class GoblinNftOrderVo implements Serializable, Cloneable {
@ApiModelProperty(value = "兑换码")
private String exCode;
@ApiModelProperty(value = "藏品ID")
private String artworkId;
@ApiModelProperty(value = "应付金额")
private BigDecimal priceTotal;
......
......@@ -95,6 +95,11 @@ public class GoblinNftOrder implements Serializable, Cloneable {
*/
private String exCode;
/**
* 藏品ID
*/
private String artworkId;
/**
* 应付金额
*/
......
USE dev_ln_scene;
ALTER TABLE goblin_nft_order ADD list_id VARCHAR(64) NOT NULL DEFAULT '' COMMENT '分批购ID' after user_mobile;
ALTER TABLE goblin_nft_order ADD ex_code VARCHAR(64) NOT NULL DEFAULT '' COMMENT '兑换码' after list_id;
\ No newline at end of file
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