地铁二期项目正式开始

T_Fax_RecvFax.cs 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace YTSoft.BaseCallCenter.Model
  6. {
  7. //T_Fax_RecvFax
  8. public class T_Fax_RecvFax
  9. {
  10. /// <summary>
  11. /// 传真任务ID
  12. /// </summary>
  13. private int _faxid;
  14. public int FaxID
  15. {
  16. get { return _faxid; }
  17. set { _faxid = value; }
  18. }
  19. /// <summary>
  20. /// TelNum
  21. /// </summary>
  22. private string _telnum;
  23. public string TelNum
  24. {
  25. get { return _telnum; }
  26. set { _telnum = value; }
  27. }
  28. /// <summary>
  29. /// 接收的Tif文件的路径
  30. /// </summary>
  31. private string _tiffilepath;
  32. public string TifFilePath
  33. {
  34. get { return _tiffilepath; }
  35. set { _tiffilepath = value; }
  36. }
  37. /// <summary>
  38. /// 转换为正常格式文件的路径
  39. /// </summary>
  40. private string _filepath;
  41. public string FilePath
  42. {
  43. get { return _filepath; }
  44. set { _filepath = value; }
  45. }
  46. /// <summary>
  47. /// 文件大小
  48. /// </summary>
  49. private int _filesize;
  50. public int FileSize
  51. {
  52. get { return _filesize; }
  53. set { _filesize = value; }
  54. }
  55. /// <summary>
  56. /// 文件类型
  57. /// </summary>
  58. private string _filetype;
  59. public string FileType
  60. {
  61. get { return _filetype; }
  62. set { _filetype = value; }
  63. }
  64. /// <summary>
  65. /// 文件备注
  66. /// </summary>
  67. private string _remark;
  68. public string Remark
  69. {
  70. get { return _remark; }
  71. set { _remark = value; }
  72. }
  73. /// <summary>
  74. /// 接收时间
  75. /// </summary>
  76. private DateTime _recvtime;
  77. public DateTime RecvTime
  78. {
  79. get { return _recvtime; }
  80. set { _recvtime = value; }
  81. }
  82. /// <summary>
  83. /// 信息描述
  84. /// </summary>
  85. private string _info;
  86. public string Info
  87. {
  88. get { return _info; }
  89. set { _info = value; }
  90. }
  91. /// <summary>
  92. /// 文件状态
  93. /// </summary>
  94. private int _filestate;
  95. public int FileState
  96. {
  97. get { return _filestate; }
  98. set { _filestate = value; }
  99. }
  100. /// <summary>
  101. /// 查看状态
  102. /// </summary>
  103. private int _state;
  104. public int State
  105. {
  106. get { return _state; }
  107. set { _state = value; }
  108. }
  109. /// <summary>
  110. /// 操作员ID
  111. /// </summary>
  112. private int _f_userid;
  113. public int F_UserID
  114. {
  115. get { return _f_userid; }
  116. set { _f_userid = value; }
  117. }
  118. /// <summary>
  119. /// 客户ID
  120. /// </summary>
  121. private int _f_customerid;
  122. public int F_CustomerID
  123. {
  124. get { return _f_customerid; }
  125. set { _f_customerid = value; }
  126. }
  127. /// <summary>
  128. /// 客户名称
  129. /// </summary>
  130. private string _f_name;
  131. public string F_Name
  132. {
  133. get { return _f_name; }
  134. set { _f_name = value; }
  135. }
  136. /// <summary>
  137. /// 发送的传真机编号
  138. /// </summary>
  139. private string _f_faxcode;
  140. public string F_FaxCode
  141. {
  142. get { return _f_faxcode; }
  143. set { _f_faxcode = value; }
  144. }
  145. }
  146. }