📄 messagebean.java
字号:
/*
* Created on 2005-10-5
*
*/
package net.mcool.www.bean;
/**
* @author lbj
*
*/
public class MessageBean {
public static final int SMS = 0;
public static final int WAP_PUSH = 1;
public static final int SUCCESS = 1;
public static final int FAILURE = 0;
int id;
String mobile;
int type;
String content;
String url;
String addTime;
int status;
/**
* @return Returns the addTime.
*/
public String getAddTime() {
return addTime;
}
/**
* @param addTime The addTime to set.
*/
public void setAddTime(String addTime) {
this.addTime = addTime;
}
/**
* @return Returns the content.
*/
public String getContent() {
return content;
}
/**
* @param content The content to set.
*/
public void setContent(String content) {
this.content = content;
}
/**
* @return Returns the id.
*/
public int getId() {
return id;
}
/**
* @param id The id to set.
*/
public void setId(int id) {
this.id = id;
}
/**
* @return Returns the mobile.
*/
public String getMobile() {
return mobile;
}
/**
* @param mobile The mobile to set.
*/
public void setMobile(String mobile) {
this.mobile = mobile;
}
/**
* @return Returns the status.
*/
public int getStatus() {
return status;
}
/**
* @param status The status to set.
*/
public void setStatus(int status) {
this.status = status;
}
/**
* @return Returns the type.
*/
public int getType() {
return type;
}
/**
* @param type The type to set.
*/
public void setType(int type) {
this.type = type;
}
/**
* @return Returns the url.
*/
public String getUrl() {
return url;
}
/**
* @param url The url to set.
*/
public void setUrl(String url) {
this.url = url;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -