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

Commit 05fc1c19 authored by 张国柄's avatar 张国柄

~api:藏品/商品详情长度Valid调整;

parent c4443c8d
...@@ -110,7 +110,7 @@ public class GoblinStoreMgtDigitalGoodsAddSkuParam implements Serializable { ...@@ -110,7 +110,7 @@ public class GoblinStoreMgtDigitalGoodsAddSkuParam implements Serializable {
private String intro; private String intro;
@ApiModelProperty(position = 30, required = true, value = "详情[256]", example = "详情...") @ApiModelProperty(position = 30, required = true, value = "详情[256]", example = "详情...")
@NotBlank(message = "藏品详情不能为空") @NotBlank(message = "藏品详情不能为空")
@Size(max = 2000, message = "藏品详情内容过长") @Size(max = 10000, message = "藏品详情内容过长")
private String details; private String details;
// @ApiModelProperty(position = 31, required = true, value = "上架处理方式[1-等待手动上架|2-直接上架售卖|3-预约定时上架]", example = "1") // @ApiModelProperty(position = 31, required = true, value = "上架处理方式[1-等待手动上架|2-直接上架售卖|3-预约定时上架]", example = "1")
......
...@@ -102,7 +102,7 @@ public class GoblinStoreMgtGoodsAddParam implements Serializable { ...@@ -102,7 +102,7 @@ public class GoblinStoreMgtGoodsAddParam implements Serializable {
**/ **/
@ApiModelProperty(position = 27, required = true, value = "商品详情", example = "商品详情...") @ApiModelProperty(position = 27, required = true, value = "商品详情", example = "商品详情...")
@Size(max = 5000, message = "商品详情内容过长") @Size(max = 10000, message = "商品详情内容过长")
private String details; private String details;
/** /**
......
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