|
@@ -3,7 +3,6 @@ package com.caimei.module.base.entity.po;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
-import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -121,6 +120,10 @@ public class SeconHandProduct extends Product implements Serializable {
|
|
|
* 上架时间(审核时上架变化、自动下架后再上架变化、手动下架后上架如果不在有效期内才变化)
|
|
|
*/
|
|
|
private Date onLineDate;
|
|
|
+ /**
|
|
|
+ * 上架时间字符串(年月日)
|
|
|
+ */
|
|
|
+ private String onLineDateStr;
|
|
|
/**
|
|
|
* 商品图片信息
|
|
|
*/
|
|
@@ -164,4 +167,47 @@ public class SeconHandProduct extends Product implements Serializable {
|
|
|
*/
|
|
|
private String typeStr;
|
|
|
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "SeconHandProduct{" +
|
|
|
+ "sold='" + sold + '\'' +
|
|
|
+ ", secondHandType='" + secondHandType + '\'' +
|
|
|
+ ", instrumentType='" + instrumentType + '\'' +
|
|
|
+ ", fixedYears='" + fixedYears + '\'' +
|
|
|
+ ", maturityYears='" + maturityYears + '\'' +
|
|
|
+ ", companyName='" + companyName + '\'' +
|
|
|
+ ", detailTalkFlag='" + detailTalkFlag + '\'' +
|
|
|
+ ", originalPrice=" + originalPrice +
|
|
|
+ ", originalPriceStr='" + originalPriceStr + '\'' +
|
|
|
+ ", price1Str='" + price1Str + '\'' +
|
|
|
+ ", normalPriceStr='" + normalPriceStr + '\'' +
|
|
|
+ ", contactName='" + contactName + '\'' +
|
|
|
+ ", contactMobile='" + contactMobile + '\'' +
|
|
|
+ ", secondProductType='" + secondProductType + '\'' +
|
|
|
+ ", provinceCityDistrict='" + provinceCityDistrict + '\'' +
|
|
|
+ ", address='" + address + '\'' +
|
|
|
+ ", productQuality='" + productQuality + '\'' +
|
|
|
+ ", payStatus='" + payStatus + '\'' +
|
|
|
+ ", payAmount=" + payAmount +
|
|
|
+ ", payFormData='" + payFormData + '\'' +
|
|
|
+ ", payType='" + payType + '\'' +
|
|
|
+ ", payDate=" + payDate +
|
|
|
+ ", submitDate=" + submitDate +
|
|
|
+ ", reviewedDate=" + reviewedDate +
|
|
|
+ ", onLineDate=" + onLineDate +
|
|
|
+ ", onLineDateStr='" + onLineDateStr + '\'' +
|
|
|
+ ", image1='" + image1 + '\'' +
|
|
|
+ ", image2='" + image2 + '\'' +
|
|
|
+ ", image3='" + image3 + '\'' +
|
|
|
+ ", image4='" + image4 + '\'' +
|
|
|
+ ", image5='" + image5 + '\'' +
|
|
|
+ ", productDetails='" + productDetails + '\'' +
|
|
|
+ ", townId=" + townId +
|
|
|
+ ", viewingNum=" + viewingNum +
|
|
|
+ ", newAdded='" + newAdded + '\'' +
|
|
|
+ ", imageList=" + imageList +
|
|
|
+ ", brandName='" + brandName + '\'' +
|
|
|
+ ", typeStr='" + typeStr + '\'' +
|
|
|
+ '}';
|
|
|
+ }
|
|
|
}
|