FileIoEntity.java 566 Bytes
Newer Older
苗卫卫 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
package com.boco.nbd.wios.downloadfile.fileio;


import com.boco.nbd.wios.downloadfile.model.CptDataInfo;

public class FileIoEntity {

	private CptDataInfo dataInfo;

	private byte[] content;

	public FileIoEntity() {
	}

	public FileIoEntity(CptDataInfo dataInfo) {
		this.dataInfo = dataInfo;
	}

	public CptDataInfo getDataInfo() {
		return dataInfo;
	}

	public void setDataInfo(CptDataInfo dataInfo) {
		this.dataInfo = dataInfo;
	}

	public byte[] getContent() {
		return content;
	}

	public void setContent(byte[] content) {
		this.content = content;
	}

}