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

📄 videoclassinfo.java

📁 本程序是作者开发的一个宽带娱乐系统的一个模块.
💻 JAVA
字号:
/*
 * WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
 * by MyEclipse Hibernate tool integration.
 *
 * Created Thu Jan 05 19:39:55 CST 2006 by MyEclipse Hibernate Tool.
 */
package com.singnet.video;

import java.io.*;

/**
 * A class that represents a row in the videoclass table.
 * You can customize the behavior of this class by editing the class, {@link Videoclass()}.
 * WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized * by MyEclipse Hibernate tool integration.
 */
public class VideoClassInfo implements Serializable {


    /** The composite primary key value. */
    private java.lang.String id;

    /** The value of the simple classname property. */
    private java.lang.String classname;

    /** The value of the simple orderid property. */
    private java.lang.String orderid;

    /** The value of the simple videotypeid property. */
    private java.lang.String videotypeid;

    /** The value of the simple ifshow property. */
    private java.lang.String ifshow;
    private String typename;

    /**
     * Simple constructor of AbstractVideoclass instances.
     */
    public VideoClassInfo() {
    }

    /**
     * Constructor of AbstractVideoclass instances given a simple primary key.
     * @param id
     */
    public VideoClassInfo(java.lang.String id) {
        this.setId(id);
    }

    /**
     * Return the simple primary key value that identifies this object.
     * @return java.lang.String
     */
    public java.lang.String getId() {
        return id;
    }

    /**
     * Set the simple primary key value that identifies this object.
     * @param id
     */
    public void setId(java.lang.String id) {

        this.id = id;
    }

    /**
     * Return the value of the Classname column.
     * @return java.lang.String
     */
    public java.lang.String getClassname() {
        return this.classname;
    }

    /**
     * Set the value of the Classname column.
     * @param classname
     */
    public void setClassname(java.lang.String classname) {
        this.classname = classname;
    }

    /**
     * Return the value of the Orderid column.
     * @return java.lang.String
     */
    public java.lang.String getOrderid() {
        return this.orderid;
    }

    /**
     * Set the value of the Orderid column.
     * @param orderid
     */
    public void setOrderid(java.lang.String orderid) {
        this.orderid = orderid;
    }

    /**
     * Return the value of the videotypeid column.
     * @return java.lang.String
     */
    public java.lang.String getVideotypeid() {
        return this.videotypeid;
    }

    /**
     * Set the value of the videotypeid column.
     * @param videotypeid
     */
    public void setVideotypeid(java.lang.String videotypeid) {
        this.videotypeid = videotypeid;
    }

    /**
     * Return the value of the Ifshow column.
     * @return java.lang.String
     */
    public java.lang.String getIfshow() {
        return this.ifshow;
    }

    /**
     * Set the value of the Ifshow column.
     * @param ifshow
     */
    public void setIfshow(java.lang.String ifshow) {
        this.ifshow = ifshow;
    }

	public String getTypename() {
		return typename;
	}

	public void setTypename(String typename) {
		this.typename = typename;
	}

}

⌨️ 快捷键说明

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