You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
717 B
37 lines
717 B
package com.chenhai.chenhaiai.entity;
|
|
|
|
/**
|
|
* @author : mazhongxu
|
|
* @date : 2025-11-29 22:47
|
|
* @modyified By :
|
|
*/
|
|
public class WeekProject {
|
|
|
|
private String projectName;
|
|
private String content;
|
|
private String developer;
|
|
|
|
public String getProjectName() {
|
|
return projectName;
|
|
}
|
|
|
|
public void setProjectName(String projectName) {
|
|
this.projectName = projectName;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
public String getDeveloper() {
|
|
return developer;
|
|
}
|
|
|
|
public void setDeveloper(String developer) {
|
|
this.developer = developer;
|
|
}
|
|
}
|