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.
cloudnote_server/src/main/java/com/bupt/note/dto/DeleteNote.java

31 lines
571 B

package com.bupt.note.dto;
public class DeleteNote {
private String noteId;
private Long paperId;
private String content;
public String getNoteId() {
return noteId;
}
public void setNoteId(String noteId) {
this.noteId = noteId;
}
public Long getPaperId() {
return paperId;
}
public void setPaperId(Long paperId) {
this.paperId = paperId;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}