|
|
|
@ -10,7 +10,6 @@ import org.hibernate.validator.constraints.Length;
|
|
|
|
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@ApiModel("管理后台 - 小程序模板创建 Request VO")
|
|
|
|
@ -19,14 +18,6 @@ import java.util.List;
|
|
|
|
|
@ToString(callSuper = true)
|
|
|
|
|
public class UniTemplateCreateCustomizeReqVO extends UniTemplateCreateReqVO {
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "背景图宽度", required = true)
|
|
|
|
|
@NotNull(message = "背景图宽度不能为空")
|
|
|
|
|
private BigDecimal bgWidth;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "背景图高度", required = true)
|
|
|
|
|
@NotNull(message = "背景图高度不能为空")
|
|
|
|
|
private BigDecimal bgHeight;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "是否显示商品详情", required = true)
|
|
|
|
|
@NotNull(message = "是否显示商品详情不能为空")
|
|
|
|
|
private Boolean showGoodsDetail;
|
|
|
|
|