voteoption.java

来自「hibernate框架例子程序」· Java 代码 · 共 36 行

JAVA
36
字号
package com.redsaga.hibernatesample.step3;

import com.redsaga.hibernatesample.step3.base.BaseVoteOption;

/**
 * This is the object class that relates to the vote_option table.
 * Any customizations belong here.
 */
public class VoteOption extends BaseVoteOption {

/*[CONSTRUCTOR MARKER BEGIN]*/
	public VoteOption () {
		super();
	}

	/**
	 * Constructor for primary key
	 */
	public VoteOption (java.lang.Integer _id) {
		super(_id);
	}

	/**
	 * Constructor for required fields
	 */
	public VoteOption (
		java.lang.Integer _id,
		com.redsaga.hibernatesample.step3.Vote _poll) {

		super (
			_id,
			_poll);
	}

/*[CONSTRUCTOR MARKER END]*/
}

⌨️ 快捷键说明

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