bugstatusmodel.java

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

JAVA
47
字号
package com.runwit.bugreport.model;

import java.io.Serializable;

public class BugStatusModel implements Serializable {

	private int bsid;

	private String name;

	private String remark;

	public BugStatusModel() {
	}
	
	public BugStatusModel(int bsid, String name, String remark) {
		this.bsid = bsid;
		this.name = name;
		this.remark = remark;
	}

	public int getBsid() {
		return bsid;
	}

	public void setBsid(int bsid) {
		this.bsid = bsid;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getRemark() {
		return remark;
	}

	public void setRemark(String remark) {
		this.remark = remark;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?