📄 kind.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -