uservo.java

来自「用mysql」· Java 代码 · 共 76 行

JAVA
76
字号
package com.wenhua.ser.vo;

import java.sql.Date;

public class UserVo {

	private int userId;

	private String userName;

	private String password;
	
	private String  time;
	
	private String content;
	
	

	public UserVo() {
		super();
	}

	public UserVo(int userId, String userName, String password) {
		super();
		this.userId = userId;
		this.userName = userName;
		this.password = password;
		this.time=time;
		this.content=content;
		
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public int getUserId() {
		return userId;
	}

	public void setUserId(int userId) {
		this.userId = userId;
	}

	public String getUserName() {
		return userName;
	}

	public void setUserName(String userName) {
		this.userName = userName;
	}

	public String getTime() {
		return time;
	}

	public void setTime(String time) {
		this.time = time;
	}
	
	public String getContent() {
		return content;
	}

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


}

⌨️ 快捷键说明

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