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

📄 fenbean.java

📁 《短信平台系统》向注册用户提供向指定手机或通讯录中手机发送短信的功能
💻 JAVA
字号:
package com.ascenttech.hib.help;

import java.util.*;

import com.ascenttech.hib.po.MessageIn;

public class FenBean {
   
    private int maxRowCount;//一共多少行
   
    private List list;//本叶要显示的资料
    private FenBean fb;
    private MessageIn mi;
	public FenBean(MessageIn mi,FenBean fb) {
		super();
		// TODO Auto-generated constructor stub
		this.mi=mi;
		this.fb=fb;
	}
	public FenBean() {
		super();
		// TODO Auto-generated constructor stub
	}
	public FenBean(List list, int count) {
		super();
		// TODO Auto-generated constructor stub
		this.list = list;
		maxRowCount = count;
	}
	public List getList() {
		return list;
	}
	public void setList(List list) {
		this.list = list;
	}
	public int getMaxRowCount() {
		return maxRowCount;
	}
	public void setMaxRowCount(int maxRowCount) {
		this.maxRowCount = maxRowCount;
	}
   
}

⌨️ 快捷键说明

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