⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 internalcolumnmodel.java

📁 WAP PUSH后台源码,WAP PUSH后台源码
💻 JAVA
字号:
package com.sxit.wap.internalcolumn;import java.sql.*;import java.util.*;import com.sxit.wap.common.*;import com.sxit.wap.exception.*;public class InternalColumnModel implements java.io.Serializable {  String wapTitle = "";  String wapContent = "";  public InternalColumnModel(String wapTitle, String wapContent){    if (wapTitle == null) wapTitle = "";    this.wapTitle = wapTitle;    if (wapContent == null) wapContent = "";    this.wapContent = wapContent;  }  public InternalColumnModel(){  }  public String getWapTitle() {     if (wapTitle == null) wapTitle = "";     return wapTitle;  }  public String getWapContent() {     if (wapContent == null) wapContent = "";     return wapContent;  }  public void setWapTitle(String wapTitle) {    this.wapTitle = wapTitle;  }  public void setWapContent(String wapContent) {    this.wapContent = wapContent;  }  public String toString() {    String value = "";    value+= "wapTitle=" + wapTitle + "\n";    value+= "wapContent=" + wapContent + "\n";    return value;  }  public void copy(InternalColumnModel other) {    this.setWapTitle(other.getWapTitle());    this.setWapContent(other.getWapContent());  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -