?? groupmodel.java
字號:
package com.runwit.ebookstore.model;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public class GroupModel implements Serializable{
private int groupId;
private String name;
private List statusList = new ArrayList();
public GroupModel() {
}
public GroupModel(int groupId, String name, List statusList) {
this.groupId = groupId;
this.name = name;
if(statusList != null)
this.statusList = statusList;
}
public int getGroupId() {
return groupId;
}
public void setGroupId(int groupId) {
this.groupId = groupId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List getStatusList() {
return statusList;
}
public void setStatusList(List statusList) {
this.statusList = statusList;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -