📄 videoactorinfo.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:56 CST 2006 by MyEclipse Hibernate Tool.
*/
package com.singnet.video;
import java.io.*;
/**
* A class that represents a row in the vidoeactor table.
* You can customize the behavior of this class by editing the class, {@link Vidoeactor()}.
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized * by MyEclipse Hibernate tool integration.
*/
public class VideoActorInfo implements Serializable {
/** The composite primary key value. */
private java.lang.String id;
/** The value of the simple sex property. */
private java.lang.String sex;
/** The value of the simple name property. */
private java.lang.String name;
/** The value of the simple videocountryid property. */
private java.lang.String videoareaid;
private String areaname;
private java.lang.String intro;
/**
* 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 Sex column.
* @return java.lang.String
*/
public java.lang.String getSex() {
return this.sex;
}
/**
* Set the value of the Sex column.
* @param sex
*/
public void setSex(java.lang.String sex) {
this.sex = sex;
}
/**
* Return the value of the Name column.
* @return java.lang.String
*/
public java.lang.String getName() {
return this.name;
}
/**
* Set the value of the Name column.
* @param name
*/
public void setName(java.lang.String name) {
this.name = name;
}
public java.lang.String getVideoareaid() {
return videoareaid;
}
public void setVideoareaid(java.lang.String videoareaid) {
this.videoareaid = videoareaid;
}
public java.lang.String getIntro() {
return intro;
}
public void setIntro(java.lang.String intro) {
this.intro = intro;
}
public String getAreaname() {
return areaname;
}
public void setAreaname(String areaname) {
this.areaname = areaname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -