/**
* 卖家id 校验商户号是否为数字格式
*/
@Pattern(regexp = "^[0-9]+$", message = "商户号不符合规则要求")
private Long venderId;
/**
* spu名称 校验商品名称字符串长度
*/
@Length(min = 0,max = 20)
private String spuName;
/**
* spuId 校验商品编码是否为数字格式
*/
@Pattern(regexp = "^[0-9]+$", message = "spuId不符合规则要求")
private Long spuId;