This commit is contained in:
dimengzhe
2025-04-28 10:50:52 +08:00
parent fbbe5be935
commit 79fcf614ca
2 changed files with 37 additions and 0 deletions

View File

@@ -24,6 +24,27 @@ public class Buy extends BaseEntity {
private String fuwu;
@Transient
private String captcha;
@Transient
private String timestamp;
public String getCaptcha() {
return captcha;
}
public void setCaptcha(String captcha) {
this.captcha = captcha;
}
public String getTimestamp() {
return timestamp;
}
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}
public String getFuwu() {
return fuwu;
}