navigation.java

来自「基于j2ee的物流软件」· Java 代码 · 共 32 行

JAVA
32
字号
package com.wuliu.entity;

public class Navigation {
	private String type = null;
	private String content = null;
	
	public Navigation(){
		
	}
	
	public Navigation(String type, String content){
		this.type = type;
		this.content = content;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getContent() {
		return content;
	}

	public void setContent(String content) {
		this.content = content;
	}
}

⌨️ 快捷键说明

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