using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Core.Mes.Client.Comm.Server
{
[Serializable]
public class FileBean
{
private String fileName;
private byte[] file;
private String pathName;
///
/// 获取文件名
///
/// 文件名
public String getFileName()
{
return fileName;
}
///
/// 设置文件名
///
/// 文件名
public void setFileName(String fileName)
{
this.fileName = fileName;
}
///
/// 获取文件byte[]
///
/// 文件byte[]
public byte[] getFile()
{
return file;
}
///
/// 设置文件byte[]
///
/// 文件byte[]
public void setFile(byte[] file)
{
this.file = file;
}
///
/// 获取文件路径
///
/// 文件路径
public String getPathName()
{
return pathName;
}
///
/// 设置文件路径
///
/// 文件路径
public void setPathName(String pathName)
{
this.pathName = pathName;
}
}
}