|
|
@@ -8,6 +8,7 @@ import org.apache.commons.lang3.time.DateFormatUtils;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat.Shape;
|
|
|
import com.goafanti.common.constant.AFTConstants;
|
|
|
+import com.goafanti.common.utils.StringUtils;
|
|
|
|
|
|
public class AchievementPartnerListBo {
|
|
|
private String id;
|
|
|
@@ -97,6 +98,11 @@ public class AchievementPartnerListBo {
|
|
|
|
|
|
private String buyIntention;
|
|
|
|
|
|
+ /**
|
|
|
+ * 所有人地址
|
|
|
+ */
|
|
|
+ private String ownerPostalAddress;
|
|
|
+
|
|
|
public Integer getFieldA() {
|
|
|
return fieldA;
|
|
|
}
|
|
|
@@ -246,7 +252,7 @@ public class AchievementPartnerListBo {
|
|
|
|
|
|
public String getCountInterest() {
|
|
|
|
|
|
- return countInterest;
|
|
|
+ return String.valueOf(Integer.valueOf(countInterest)+20);
|
|
|
}
|
|
|
|
|
|
public void setCountInterest(String countInterest) {
|
|
|
@@ -268,6 +274,17 @@ public class AchievementPartnerListBo {
|
|
|
public void setBuyIntention(String buyIntention) {
|
|
|
this.buyIntention = buyIntention;
|
|
|
}
|
|
|
+
|
|
|
+ public String getOwnerPostalAddress() {
|
|
|
+ if (StringUtils.isEmpty(ownerPostalAddress)) {
|
|
|
+ return "湖南长沙";
|
|
|
+ }
|
|
|
+ return ownerPostalAddress;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOwnerPostalAddress(String ownerPostalAddress) {
|
|
|
+ this.ownerPostalAddress = ownerPostalAddress;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|