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; } }