newstype.java
来自「在strust框架下开发的信息发布。主要用于短信群发。」· Java 代码 · 共 43 行
JAVA
43 行
package com.gd.po;
/**
* Newstype generated by MyEclipse Persistence Tools
*/
public class Newstype implements java.io.Serializable {
// Fields
private long id;
private String type;
// Constructors
/** default constructor */
public Newstype() {
}
/** full constructor */
public Newstype(String type) {
this.type = type;
}
// Property accessors
public long getId() {
return this.id;
}
public void setId(long id) {
this.id = id;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?