|
@@ -0,0 +1,52 @@
|
|
|
|
+package com.ym.mec.biz.dal.dto;
|
|
|
|
+
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
+
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
+
|
|
|
|
+public class RepairGoodsDto {
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "商品单价", required = true)
|
|
|
|
+ private BigDecimal groupPurchasePrice;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "商品图片", required = true)
|
|
|
|
+ private String image;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "商品名称", required = true)
|
|
|
|
+ private String name;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "商品编号", required = true)
|
|
|
|
+ private Integer id;
|
|
|
|
+
|
|
|
|
+ public BigDecimal getGroupPurchasePrice() {
|
|
|
|
+ return groupPurchasePrice;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGroupPurchasePrice(BigDecimal groupPurchasePrice) {
|
|
|
|
+ this.groupPurchasePrice = groupPurchasePrice;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getImage() {
|
|
|
|
+ return image;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setImage(String image) {
|
|
|
|
+ this.image = image;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getName() {
|
|
|
|
+ return name;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setName(String name) {
|
|
|
|
+ this.name = name;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setId(Integer id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+}
|