parent
1c0971d2c2
commit
184afb628d
@ -0,0 +1,100 @@
|
|||||||
|
package com.macro.mall.dto;
|
||||||
|
|
||||||
|
import com.macro.mall.validator.FlagValidator;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import org.hibernate.validator.constraints.NotEmpty;
|
||||||
|
|
||||||
|
import javax.validation.constraints.Min;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 品牌传递参数
|
||||||
|
*/
|
||||||
|
public class PmsBrandParam {//品牌参数
|
||||||
|
@ApiModelProperty(value = "品牌名称",required = true)
|
||||||
|
@NotEmpty(message = "名称不能为空")
|
||||||
|
private String name;
|
||||||
|
@ApiModelProperty(value = "品牌首字母")
|
||||||
|
private String firstLetter;
|
||||||
|
@ApiModelProperty(value = "排序字段")
|
||||||
|
@Min(value = 0, message = "排序最小为0")
|
||||||
|
private Integer sort;
|
||||||
|
@ApiModelProperty(value = "是否为厂家制造商")
|
||||||
|
@FlagValidator(value = {"0","1"}, message = "厂家状态不正确")
|
||||||
|
private Integer factoryStatus;
|
||||||
|
@ApiModelProperty(value = "是否进行显示")
|
||||||
|
@FlagValidator(value = {"0","1"}, message = "显示状态不正确")
|
||||||
|
private Integer showStatus;
|
||||||
|
@ApiModelProperty(value = "品牌logo",required = true)
|
||||||
|
@NotEmpty(message = "品牌logo不能为空")
|
||||||
|
private String logo;
|
||||||
|
@ApiModelProperty(value = "品牌大图")
|
||||||
|
private String bigPic;
|
||||||
|
@ApiModelProperty(value = "品牌故事")
|
||||||
|
private String brandStory;
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFirstLetter() {
|
||||||
|
return firstLetter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFirstLetter(String firstLetter) {
|
||||||
|
this.firstLetter = firstLetter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getSort() {
|
||||||
|
return sort;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSort(Integer sort) {
|
||||||
|
this.sort = sort;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getFactoryStatus() {
|
||||||
|
return factoryStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFactoryStatus(Integer factoryStatus) {
|
||||||
|
this.factoryStatus = factoryStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getShowStatus() {
|
||||||
|
return showStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setShowStatus(Integer showStatus) {
|
||||||
|
this.showStatus = showStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getLogo() {
|
||||||
|
return logo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLogo(String logo) {
|
||||||
|
this.logo = logo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBigPic() {
|
||||||
|
return bigPic;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBigPic(String bigPic) {
|
||||||
|
this.bigPic = bigPic;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBrandStory() {
|
||||||
|
return brandStory;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBrandStory(String brandStory) {
|
||||||
|
this.brandStory = brandStory;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue