?? state.java
字號:
package com.wish.jhk.entity;
import java.util.HashSet;
import java.util.Set;
@SuppressWarnings("serial")
public class State implements java.io.Serializable {
private Integer stateId;
private String stateName;
private Set<Item> items = new HashSet<Item>();
public State() {
}
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<Item> getItems() {
return items;
}
public void setItems(Set<Item> items) {
this.items = items;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -