lyb.java

来自「采用struts+hibernet+javabean+jsp 些得shop购物网」· Java 代码 · 共 100 行

JAVA
100
字号
package com.hnzt.po;

/**
 * Lyb generated by MyEclipse Persistence Tools
 */

public class Lyb implements java.io.Serializable {

	// Fields

	private Integer id;

	private String name;

	private String content;

	private String recontent;

	private Integer level;

	private String headimg;

	private String ltime;

	// Constructors

	/** default constructor */
	public Lyb() {
	}

	/** full constructor */
	public Lyb(String name, String content, String recontent, Integer level,
			String headimg, String ltime) {
		this.name = name;
		this.content = content;
		this.recontent = recontent;
		this.level = level;
		this.headimg = headimg;
		this.ltime = ltime;
	}

	// Property accessors

	public Integer getId() {
		return this.id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return this.name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getContent() {
		return this.content;
	}

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

	public String getRecontent() {
		return this.recontent;
	}

	public void setRecontent(String recontent) {
		this.recontent = recontent;
	}

	public Integer getLevel() {
		return this.level;
	}

	public void setLevel(Integer level) {
		this.level = level;
	}

	public String getHeadimg() {
		return this.headimg;
	}

	public void setHeadimg(String headimg) {
		this.headimg = headimg;
	}

	public String getLtime() {
		return this.ltime;
	}

	public void setLtime(String ltime) {
		this.ltime = ltime;
	}

}

⌨️ 快捷键说明

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