This commit is contained in:
2025-08-23 09:40:45 +08:00
parent f5c2d30424
commit e9f79ac015
11 changed files with 871 additions and 539 deletions
@@ -13,61 +13,6 @@ import lombok.Data;
@Data
public class Information {
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public String getUpdateBy() {
return updateBy;
}
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy;
}
public Date getUpdateDate() {
return updateDate;
}
public void setUpdateDate(Date updateDate) {
this.updateDate = updateDate;
}
private Integer id;
@@ -82,4 +27,8 @@ public class Information {
private String updateBy;
private Date updateDate;
/**
* 附件
*/
private String attachment;
}