📄 articletypeinfo.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.article;
import java.io.*;
/**
* A class that represents a row in the videotype table.
* You can customize the behavior of this class by editing the class, {@link Videotype()}.
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized * by MyEclipse Hibernate tool integration.
*/
public class ArticleTypeInfo implements Serializable {
/** The composite primary key value. */
private java.lang.String id;
/** The value of the simple typename property. */
private java.lang.String typename;
/** The value of the simple remark property. */
private java.lang.String remark;
/**
* Simple constructor of AbstractVideotype instances.
*/
public ArticleTypeInfo() {
}
/**
* Constructor of AbstractVideotype instances given a simple primary key.
* @param id
*/
public ArticleTypeInfo(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 typename column.
* @return java.lang.String
*/
public java.lang.String getTypename() {
return this.typename;
}
/**
* Set the value of the typename column.
* @param typename
*/
public void setTypename(java.lang.String typename) {
this.typename = typename;
}
/**
* Return the value of the remark column.
* @return java.lang.String
*/
public java.lang.String getRemark() {
return this.remark;
}
/**
* Set the value of the remark column.
* @param remark
*/
public void setRemark(java.lang.String remark) {
this.remark = remark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -