using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YTSoft.BaseCallCenter.Model
{
//T_Fax_RecvFax
public class T_Fax_RecvFax
{
///
/// 传真任务ID
///
private int _faxid;
public int FaxID
{
get { return _faxid; }
set { _faxid = value; }
}
///
/// TelNum
///
private string _telnum;
public string TelNum
{
get { return _telnum; }
set { _telnum = value; }
}
///
/// 接收的Tif文件的路径
///
private string _tiffilepath;
public string TifFilePath
{
get { return _tiffilepath; }
set { _tiffilepath = value; }
}
///
/// 转换为正常格式文件的路径
///
private string _filepath;
public string FilePath
{
get { return _filepath; }
set { _filepath = value; }
}
///
/// 文件大小
///
private int _filesize;
public int FileSize
{
get { return _filesize; }
set { _filesize = value; }
}
///
/// 文件类型
///
private string _filetype;
public string FileType
{
get { return _filetype; }
set { _filetype = value; }
}
///
/// 文件备注
///
private string _remark;
public string Remark
{
get { return _remark; }
set { _remark = value; }
}
///
/// 接收时间
///
private DateTime _recvtime;
public DateTime RecvTime
{
get { return _recvtime; }
set { _recvtime = value; }
}
///
/// 信息描述
///
private string _info;
public string Info
{
get { return _info; }
set { _info = value; }
}
///
/// 文件状态
///
private int _filestate;
public int FileState
{
get { return _filestate; }
set { _filestate = value; }
}
///
/// 查看状态
///
private int _state;
public int State
{
get { return _state; }
set { _state = value; }
}
///
/// 操作员ID
///
private int _f_userid;
public int F_UserID
{
get { return _f_userid; }
set { _f_userid = value; }
}
///
/// 客户ID
///
private int _f_customerid;
public int F_CustomerID
{
get { return _f_customerid; }
set { _f_customerid = value; }
}
///
/// 客户名称
///
private string _f_name;
public string F_Name
{
get { return _f_name; }
set { _f_name = value; }
}
///
/// 发送的传真机编号
///
private string _f_faxcode;
public string F_FaxCode
{
get { return _f_faxcode; }
set { _f_faxcode = value; }
}
}
}