zouxuan 4 年之前
父節點
當前提交
a5aeeeba5a
共有 1 個文件被更改,包括 52 次插入0 次删除
  1. 52 0
      mec-biz/src/main/java/com/ym/mec/biz/dal/dto/RepairGoodsDto.java

+ 52 - 0
mec-biz/src/main/java/com/ym/mec/biz/dal/dto/RepairGoodsDto.java

@@ -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;
+    }
+}