kind.java
来自「基于ssh2的三者整合」· Java 代码 · 共 74 行
JAVA
74 行
package com.lixineng.dao;
import java.util.HashSet;
import java.util.Set;
/**
* Kind entity.
*
* @author MyEclipse Persistence Tools
*/
public class Kind implements java.io.Serializable {
// Fields
private Integer kindId;
private String kindName;
private String kindDesc;
private Set items = new HashSet(0);
// Constructors
/** default constructor */
public Kind() {
}
/** minimal constructor */
public Kind(String kindName, String kindDesc) {
this.kindName = kindName;
this.kindDesc = kindDesc;
}
/** full constructor */
public Kind(String kindName, String kindDesc, Set items) {
this.kindName = kindName;
this.kindDesc = kindDesc;
this.items = items;
}
// Property accessors
public Integer getKindId() {
return this.kindId;
}
public void setKindId(Integer kindId) {
this.kindId = kindId;
}
public String getKindName() {
return this.kindName;
}
public void setKindName(String kindName) {
this.kindName = kindName;
}
public String getKindDesc() {
return this.kindDesc;
}
public void setKindDesc(String kindDesc) {
this.kindDesc = kindDesc;
}
public Set getItems() {
return this.items;
}
public void setItems(Set items) {
this.items = items;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?