| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 文件分片上传 */public class A_B00028 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String bfid;//大文件Id	/**	 *大文件Id	 */	public void setBfid(String bfid) {		this.bfid=bfid;	}	/**	 *大文件Id	 */	public String getBfid() {		return this.bfid;	}	int chunk;//当前切片数	/**	 *当前切片数	 */	public void setChunk(int chunk) {		this.chunk=chunk;	}	/**	 *当前切片数	 */	public int getChunk() {		return this.chunk;	}	int chunks;//切片总数	/**	 *切片总数	 */	public void setChunks(int chunks) {		this.chunks=chunks;	}	/**	 *切片总数	 */	public int getChunks() {		return this.chunks;	}	String file;//分片文件	/**	 *分片文件	 */	public void setFile(String file) {		this.file=file;	}	/**	 *分片文件	 */	public String getFile() {		return this.file;	}	String fileName;//文件名称	/**	 *文件名称	 */	public void setFileName(String fileName) {		this.fileName=fileName;	}	/**	 *文件名称	 */	public String getFileName() {		return this.fileName;	}}
 |