uploadbean.java

来自「Swing+FtpClient实现 支持文件、文件夹上传 支持文件、文件」· Java 代码 · 共 27 行

JAVA
27
字号
package com.topking.ftp.bean;

public class UpLoadBean {

	private FileBean fb;
	private String remotePath;
	private int rowIndex;
	public FileBean getFb() {
		return fb;
	}
	public void setFb(FileBean fb) {
		this.fb = fb;
	}
	public String getRemotePath() {
		return remotePath;
	}
	public void setRemotePath(String remotePath) {
		this.remotePath = remotePath;
	}
	public int getRowIndex() {
		return rowIndex;
	}
	public void setRowIndex(int rowIndex) {
		this.rowIndex = rowIndex;
	}
}

⌨️ 快捷键说明

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