📄 state.java
字号:
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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -