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

📄 topmodel.java

📁 WAP PUSH后台源码,WAP PUSH后台源码
💻 JAVA
字号:
package com.sxit.wap.top;import java.sql.*;import java.util.*;import com.sxit.wap.common.*;import com.sxit.wap.exception.*;public class TopModel implements java.io.Serializable {  int channelId = 0;  int dispOrder = 0;  public TopModel(int channelId, int dispOrder){    this.channelId = channelId;    this.dispOrder = dispOrder;  }  public TopModel(){  }  public int getChannelId() {     return channelId;  }  public int getDispOrder() {     return dispOrder;  }  public void setChannelId(int channelId) {    this.channelId = channelId;  }  public void setDispOrder(int dispOrder) {    this.dispOrder = dispOrder;  }  public String toString() {    String value = "";    value+= "channelId=" + channelId + "\n";    value+= "dispOrder=" + dispOrder + "\n";    return value;  }  public void copy(TopModel other) {    this.setChannelId(other.getChannelId());    this.setDispOrder(other.getDispOrder());  }}

⌨️ 快捷键说明

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