note_updatedto.java

来自「java带进度条上传尽量不要让站长把时间都花费在为您修正说明上」· Java 代码 · 共 32 行

JAVA
32
字号
package com.jmwl.dto;

public class Note_updateDTO 
{
	private int id,ntoe_type_id;
	private String title,content;
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public int getNtoe_type_id() {
		return ntoe_type_id;
	}
	public void setNtoe_type_id(int ntoe_type_id) {
		this.ntoe_type_id = ntoe_type_id;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public String getContent() {
		return content;
	}
	public void setContent(String content) {
		this.content = content;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?