groupmodel.java

来自「是一个Bug系统」· Java 代码 · 共 50 行

JAVA
50
字号
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 + =
减小字号Ctrl + -
显示快捷键?