?? state.java
字號(hào):
package com.lixineng.dao;
import java.util.HashSet;
import java.util.Set;
/**
* State entity.
*
* @author MyEclipse Persistence Tools
*/
public class State implements java.io.Serializable {
// Fields
private Integer stateId;
private String stateName;
private Set items = new HashSet(0);
// Constructors
/** default constructor */
public State() {
}
/** full constructor */
public State(String stateName, Set items) {
this.stateName = stateName;
this.items = items;
}
// Property accessors
public Integer getStateId() {
return this.stateId;
}
public void setStateId(Integer stateId) {
this.stateId = stateId;
}
public String getStateName() {
return this.stateName;
}
public void setStateName(String stateName) {
this.stateName = stateName;
}
public Set getItems() {
return this.items;
}
public void setItems(Set items) {
this.items = items;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -