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

📄 c_fjcmainform.java

📁 文件上传的源码!希望能给大家一点帮助
💻 JAVA
字号:
package com.suyuannet.sycb.form.handset;

import java.util.ArrayList;
import java.util.Collection;

import org.apache.struts.upload.FormFile;

import com.suyuannet.sycb.common.util.query.BaseListForm;

/**
 *<b>ClassName</b><br>
 *	C_FJCMainForm
 *<br><br>
 *<b>Function</b>
 *	非集抄上下装 FORM
 *<br>
 *@copyright	SuYuanNet
 *@author		<a href="mailto:flyfox37@hotmail.com">starsky</a>
 *@date			2005-05-19
 *@since		JDK 1.4
 */

public class C_FJCMainForm extends BaseListForm
{
	private Collection listCmp = null;		//单位
	
	private Collection listYyb = null;		//营业部(子单位,可考虑不放)
		
	private String selCmp = null;			//选中的单位
	
	private String selYyb = null;			//选中的营业部
		
	private String dh = null;			//查询时输入的集中器号
	
	private String[] dhnosel = null;			//未选中的集中器
	private String[] dhsel = null;			//已选中的集中器

	private Collection dhnoselList = null;	//未选中的集中器
	private Collection dhselList = null;		//已选中的集中器
	
	private FormFile upLoadFile = null;		//上传文件
	
	private String rootPath = null;			//上传文件的根目录
	
	private String fileMode = null;		//文件来源方式 , 6:非集抄,7:非集抄-补抄
	
	private String filepath = null;		//下装文件的路径
	
	private ArrayList listCQ = new ArrayList();	//下装文件内容
	
	/**
	 * @return
	 */
	public String getDh() {
		return dh;
	}

	/**
	 * @return
	 */
	public String[] getDhnosel() {
		return dhnosel;
	}

	/**
	 * @return
	 */
	public Collection getDhnoselList() {
		return dhnoselList;
	}

	/**
	 * @return
	 */
	public String[] getDhsel() {
		return dhsel;
	}

	/**
	 * @return
	 */
	public Collection getDhselList() {
		return dhselList;
	}

	/**
	 * @return
	 */
	public String getFileMode() {
		return fileMode;
	}

	/**
	 * @return
	 */
	public String getFilepath() {
		return filepath;
	}

	/**
	 * @return
	 */
	public Collection getListCmp() {
		return listCmp;
	}

	/**
	 * @return
	 */
	public ArrayList getListCQ() {
		return listCQ;
	}

	/**
	 * @return
	 */
	public Collection getListYyb() {
		return listYyb;
	}

	/**
	 * @return
	 */
	public String getRootPath() {
		return rootPath;
	}

	/**
	 * @return
	 */
	public String getSelCmp() {
		return selCmp;
	}

	/**
	 * @return
	 */
	public String getSelYyb() {
		return selYyb;
	}

	/**
	 * @return
	 */
	public FormFile getUpLoadFile() {
		return upLoadFile;
	}

	/**
	 * @param string
	 */
	public void setDh(String string) {
		dh = string;
	}

	/**
	 * @param strings
	 */
	public void setDhnosel(String[] strings) {
		dhnosel = strings;
	}

	/**
	 * @param collection
	 */
	public void setDhnoselList(Collection collection) {
		dhnoselList = collection;
	}

	/**
	 * @param strings
	 */
	public void setDhsel(String[] strings) {
		dhsel = strings;
	}

	/**
	 * @param collection
	 */
	public void setDhselList(Collection collection) {
		dhselList = collection;
	}

	/**
	 * @param string
	 */
	public void setFileMode(String string) {
		fileMode = string;
	}

	/**
	 * @param string
	 */
	public void setFilepath(String string) {
		filepath = string;
	}

	/**
	 * @param collection
	 */
	public void setListCmp(Collection collection) {
		listCmp = collection;
	}

	/**
	 * @param list
	 */
	public void setListCQ(ArrayList list) {
		listCQ = list;
	}

	/**
	 * @param collection
	 */
	public void setListYyb(Collection collection) {
		listYyb = collection;
	}

	/**
	 * @param string
	 */
	public void setRootPath(String string) {
		rootPath = string;
	}

	/**
	 * @param string
	 */
	public void setSelCmp(String string) {
		selCmp = string;
	}

	/**
	 * @param string
	 */
	public void setSelYyb(String string) {
		selYyb = string;
	}

	/**
	 * @param file
	 */
	public void setUpLoadFile(FormFile file) {
		upLoadFile = file;
	}

}

⌨️ 快捷键说明

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