fieldtype.java

来自「OA系统实现以下功能: a、个人办公,我的办公桌 b、公文管理 c、工作流」· Java 代码 · 共 52 行

JAVA
52
字号
package com.bjsxt.oa.model;

/**
 * 表单的类型
 * @author Administrator
 * @hibernate.class table="T_FieldType"
 */
public class FieldType {
	
	/**
	 * @hibernate.id
	 * 		generator-class="native"
	 */
	private int id;
	
	/**
	 * 类型的名称,如:字符串、整型、文件等等
	 * @hibernate.property
	 */
	private String name;
	
	/**
	 * 对应的Java类型,如:String、Integer、File
	 * @hibernate.property
	 */
	private String type;

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

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

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}
}

⌨️ 快捷键说明

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