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

📄 orderobj.java

📁 一个jsp写的bbs
💻 JAVA
字号:
package com.laoer.bbscs.comm;

/**
 * <p>Title: TianyiBBS</p>
 *
 * <p>Description: BBSCS</p>
 *
 * <p>Copyright: Copyright (c) 2006</p>
 *
 * <p>Company: Laoer.com</p>
 *
 * @author Laoer
 * @version 7.0
 */
public class OrderObj {

  private String orderBy = "";
  private int ascOrDesc = Constant.ORDER_DESC;

  public OrderObj() {
  }

  public OrderObj(String orderBy, int ascOrDesc) {
    this.orderBy = orderBy;
    this.ascOrDesc = ascOrDesc;
  }

  public void setOrderBy(String orderBy) {
    this.orderBy = orderBy;
  }

  public void setAscOrDesc(int ascOrDesc) {
    this.ascOrDesc = ascOrDesc;
  }

  public String getOrderBy() {
    return orderBy;
  }

  public int getAscOrDesc() {
    return ascOrDesc;
  }

}

⌨️ 快捷键说明

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