|
@@ -18,6 +18,15 @@ public class RepairGoodsDto {
|
|
|
@ApiModelProperty(value = "商品编号", required = true)
|
|
|
private Integer id;
|
|
|
|
|
|
+ @ApiModelProperty(value = "品牌", required = true)
|
|
|
+ private String brand;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "原价", required = true)
|
|
|
+ private BigDecimal marketPrice;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "型号", required = true)
|
|
|
+ private String specification;
|
|
|
+
|
|
|
public BigDecimal getGroupPurchasePrice() {
|
|
|
return groupPurchasePrice;
|
|
|
}
|
|
@@ -49,4 +58,28 @@ public class RepairGoodsDto {
|
|
|
public void setId(Integer id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
+
|
|
|
+ public String getBrand() {
|
|
|
+ return brand;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBrand(String brand) {
|
|
|
+ this.brand = brand;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getMarketPrice() {
|
|
|
+ return marketPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMarketPrice(BigDecimal marketPrice) {
|
|
|
+ this.marketPrice = marketPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSpecification() {
|
|
|
+ return specification;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpecification(String specification) {
|
|
|
+ this.specification = specification;
|
|
|
+ }
|
|
|
}
|