using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HySoft.BaseCallCenter.Model
{
//T_Fax_SentFax
public class T_Fax_SentFax
{
///
/// 传真任务ID
///
private int _faxid;
public int FaxID
{
get { return _faxid; }
set { _faxid = value; }
}
///
/// 传真号码
///
private string _telnum;
public string TelNum
{
get { return _telnum; }
set { _telnum = value; }
}
///
/// 文件名称
///
private string _filename;
public string FileName
{
get { return _filename; }
set { _filename = value; }
}
///
/// 要发送文件的路径
///
private string _filepath;
public string FilePath
{
get { return _filepath; }
set { _filepath = value; }
}
///
/// 转换为Tif文件的路径
///
private string _tiffilepath;
public string TifFilePath
{
get { return _tiffilepath; }
set { _tiffilepath = 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 _committime;
public DateTime CommitTime
{
get { return _committime; }
set { _committime = value; }
}
///
/// 发送时间
///
private DateTime _sendtime;
public DateTime SendTime
{
get { return _sendtime; }
set { _sendtime = value; }
}
///
/// 最后一次发送时间
///
private DateTime _lastsenttime;
public DateTime LastSentTime
{
get { return _lastsenttime; }
set { _lastsenttime = value; }
}
///
/// 当前发送次数
///
private int _cursentcount;
public int CurSentCount
{
get { return _cursentcount; }
set { _cursentcount = value; }
}
///
/// 最大发送次数
///
private int _maxsendcount;
public int MaxSendCount
{
get { return _maxsendcount; }
set { _maxsendcount = value; }
}
///
/// 信息描述
///
private string _info;
public string Info
{
get { return _info; }
set { _info = value; }
}
///
/// 文件状态,-1转换TIF文件失败,0未转换为TIF文件,1已转换为TIF文件
///
private int _filestate;
public int FileState
{
get { return _filestate; }
set { _filestate = value; }
}
///
/// 发送状态:-1,发送失败;0,未发送;1,正在发送;2,发送成功;
///
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; }
}
///
/// WebFilePath
///
private string _webfilepath;
public string WebFilePath
{
get { return _webfilepath; }
set { _webfilepath = value; }
}
}
}