optionsint.java

来自「交易撮合系统是一套买卖信息沟通的平台」· Java 代码 · 共 35 行

JAVA
35
字号
package com.laoer.bbscs.web.ui;

public class OptionsInt {

	private int key;

	private String value;

	public OptionsInt() {

	}

	public OptionsInt(int key, String value) {
		this.key = key;
		this.value = value;
	}

	public int getKey() {
		return key;
	}

	public void setKey(int key) {
		this.key = key;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

}

⌨️ 快捷键说明

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