⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 entities.java.svn-base

📁 MSN客服自动化机器人
💻 SVN-BASE
字号:
package jm.framework.util;

import jm.util.JMEntity;
import jm.util.JMVector;

/**
 * 映射不明表时候使用
 * 需要设置items(列名)、values(数据)
 * @author ISHome
 *
 */
public class Entities extends JMEntity {
    protected String items = null;
    protected String names = null;
    protected JMVector values = null;
    
	public String getItems() {
		return items;
	}

	public void clear() {
		values.clear();

	}

	public JMVector getValues() {
		return values;
	}

	public void setValues(JMVector values) {
		this.values = values;
	}

	public void setItems(String items) {
		this.items = items;
	}

    public String getNames() {
        return names;
    }

    public void setNames(String names) {
        this.names = names;
    }

	

}

⌨️ 快捷键说明

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