From e57e32fc43da31917912eebb4e47d4e50df1a9e9 Mon Sep 17 00:00:00 2001
From: shiyj1101 <1098226878@qq.com>
Date: 星期四, 05 八月 2021 22:56:15 +0800
Subject: [PATCH] 完善格式化功能
---
java110-bean/src/main/java/com/java110/dto/productLabel/ProductLabelDto.java | 41 +++++++++++++++++++++++++++++------------
1 files changed, 29 insertions(+), 12 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/productLabel/ProductLabelDto.java b/java110-bean/src/main/java/com/java110/dto/productLabel/ProductLabelDto.java
old mode 100644
new mode 100755
index 8cbb4d7..995b209
--- a/java110-bean/src/main/java/com/java110/dto/productLabel/ProductLabelDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/productLabel/ProductLabelDto.java
@@ -1,6 +1,7 @@
package com.java110.dto.productLabel;
-import com.java110.dto.PageDto;
+import com.java110.dto.product.ProductDto;
+
import java.io.Serializable;
import java.util.Date;
@@ -12,12 +13,13 @@
* @Version 1.0
* add by wuxw 2019/4/24
**/
-public class ProductLabelDto extends PageDto implements Serializable {
+public class ProductLabelDto extends ProductDto implements Serializable {
private String labelId;
-private String productId;
-private String storeId;
-private String labelCd;
+ private String productId;
+ private String storeId;
+ private String labelCd;
+ private String hasProduct;
private Date createTime;
@@ -28,25 +30,32 @@
public String getLabelId() {
return labelId;
}
-public void setLabelId(String labelId) {
+
+ public void setLabelId(String labelId) {
this.labelId = labelId;
}
-public String getProductId() {
+
+ public String getProductId() {
return productId;
}
-public void setProductId(String productId) {
+
+ public void setProductId(String productId) {
this.productId = productId;
}
-public String getStoreId() {
+
+ public String getStoreId() {
return storeId;
}
-public void setStoreId(String storeId) {
+
+ public void setStoreId(String storeId) {
this.storeId = storeId;
}
-public String getLabelCd() {
+
+ public String getLabelCd() {
return labelCd;
}
-public void setLabelCd(String labelCd) {
+
+ public void setLabelCd(String labelCd) {
this.labelCd = labelCd;
}
@@ -66,4 +75,12 @@
public void setStatusCd(String statusCd) {
this.statusCd = statusCd;
}
+
+ public String getHasProduct() {
+ return hasProduct;
+ }
+
+ public void setHasProduct(String hasProduct) {
+ this.hasProduct = hasProduct;
+ }
}
--
Gitblit v1.8.0