tdictype.java

来自「一个简单的用Spring+Hibernate+Struts的亿阳信通系统」· Java 代码 · 共 87 行

JAVA
87
字号
package com.chinatelecom.mode;

import java.util.HashSet;
import java.util.Set;

/**
 * TDicType generated by MyEclipse Persistence Tools
 */

public class TDicType implements java.io.Serializable {

	// Fields

	private Long typeId;

	private String typeName;

	private String typeModule;

	private String typeNote;

	private Set TDicContents = new HashSet(0);

	// Constructors

	/** default constructor */
	public TDicType() {
	}

	/** minimal constructor */
	public TDicType(String typeName, String typeNote) {
		this.typeName = typeName;
		this.typeNote = typeNote;
	}

	/** full constructor */
	public TDicType(String typeName, String typeModule, String typeNote,
			Set TDicContents) {
		this.typeName = typeName;
		this.typeModule = typeModule;
		this.typeNote = typeNote;
		this.TDicContents = TDicContents;
	}

	// Property accessors

	public Long getTypeId() {
		return this.typeId;
	}

	public void setTypeId(Long typeId) {
		this.typeId = typeId;
	}

	public String getTypeName() {
		return this.typeName;
	}

	public void setTypeName(String typeName) {
		this.typeName = typeName;
	}

	public String getTypeModule() {
		return this.typeModule;
	}

	public void setTypeModule(String typeModule) {
		this.typeModule = typeModule;
	}

	public String getTypeNote() {
		return this.typeNote;
	}

	public void setTypeNote(String typeNote) {
		this.typeNote = typeNote;
	}

	public Set getTDicContents() {
		return this.TDicContents;
	}

	public void setTDicContents(Set TDicContents) {
		this.TDicContents = TDicContents;
	}

}

⌨️ 快捷键说明

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