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