refactor: 简化实体类并使用esbuild优化构建

Co-authored-by: aider (openai/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
ikmkj
2025-08-04 19:33:00 +08:00
parent e1226a11b3
commit c188437ed5
2 changed files with 4 additions and 47 deletions

View File

@@ -30,44 +30,4 @@ public class RegistrationCode implements Serializable {
@Schema(description = "创建时间", name = "createdAt")
private String createdAt;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getExpiryTime() {
return expiryTime;
}
public void setExpiryTime(String expiryTime) {
this.expiryTime = expiryTime;
}
public String getCreatedBy() {
return createdBy;
}
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
}
}