📄 videoareainfo.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 videocountry table.
* You can customize the behavior of this class by editing the class, {@link Videocountry()}.
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized * by MyEclipse Hibernate tool integration.
*/
public class VideoAreaInfo implements Serializable {
/** The composite primary key value. */
private java.lang.String id;
/** The value of the simple country property. */
private java.lang.String areaname;
/**
* Simple constructor of AbstractVideocountry instances.
*/
/**
* 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;
}
public java.lang.String getAreaname() {
return areaname;
}
public void setAreaname(java.lang.String areaname) {
this.areaname = areaname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -