鹤壁电销版 自用

T_Fax_SentFax.cs 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace HySoft.BaseCallCenter.Model
  6. {
  7. //T_Fax_SentFax
  8. public class T_Fax_SentFax
  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. /// 传真号码
  21. /// </summary>
  22. private string _telnum;
  23. public string TelNum
  24. {
  25. get { return _telnum; }
  26. set { _telnum = value; }
  27. }
  28. /// <summary>
  29. /// 文件名称
  30. /// </summary>
  31. private string _filename;
  32. public string FileName
  33. {
  34. get { return _filename; }
  35. set { _filename = 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. /// 转换为Tif文件的路径
  48. /// </summary>
  49. private string _tiffilepath;
  50. public string TifFilePath
  51. {
  52. get { return _tiffilepath; }
  53. set { _tiffilepath = value; }
  54. }
  55. /// <summary>
  56. /// 文件大小
  57. /// </summary>
  58. private int _filesize;
  59. public int FileSize
  60. {
  61. get { return _filesize; }
  62. set { _filesize = value; }
  63. }
  64. /// <summary>
  65. /// 文件类型
  66. /// </summary>
  67. private string _filetype;
  68. public string FileType
  69. {
  70. get { return _filetype; }
  71. set { _filetype = value; }
  72. }
  73. /// <summary>
  74. /// 文件备注
  75. /// </summary>
  76. private string _remark;
  77. public string Remark
  78. {
  79. get { return _remark; }
  80. set { _remark = value; }
  81. }
  82. /// <summary>
  83. /// 提交时间
  84. /// </summary>
  85. private DateTime _committime;
  86. public DateTime CommitTime
  87. {
  88. get { return _committime; }
  89. set { _committime = value; }
  90. }
  91. /// <summary>
  92. /// 发送时间
  93. /// </summary>
  94. private DateTime _sendtime;
  95. public DateTime SendTime
  96. {
  97. get { return _sendtime; }
  98. set { _sendtime = value; }
  99. }
  100. /// <summary>
  101. /// 最后一次发送时间
  102. /// </summary>
  103. private DateTime _lastsenttime;
  104. public DateTime LastSentTime
  105. {
  106. get { return _lastsenttime; }
  107. set { _lastsenttime = value; }
  108. }
  109. /// <summary>
  110. /// 当前发送次数
  111. /// </summary>
  112. private int _cursentcount;
  113. public int CurSentCount
  114. {
  115. get { return _cursentcount; }
  116. set { _cursentcount = value; }
  117. }
  118. /// <summary>
  119. /// 最大发送次数
  120. /// </summary>
  121. private int _maxsendcount;
  122. public int MaxSendCount
  123. {
  124. get { return _maxsendcount; }
  125. set { _maxsendcount = value; }
  126. }
  127. /// <summary>
  128. /// 信息描述
  129. /// </summary>
  130. private string _info;
  131. public string Info
  132. {
  133. get { return _info; }
  134. set { _info = value; }
  135. }
  136. /// <summary>
  137. /// 文件状态,-1转换TIF文件失败,0未转换为TIF文件,1已转换为TIF文件
  138. /// </summary>
  139. private int _filestate;
  140. public int FileState
  141. {
  142. get { return _filestate; }
  143. set { _filestate = value; }
  144. }
  145. /// <summary>
  146. /// 发送状态:-1,发送失败;0,未发送;1,正在发送;2,发送成功;
  147. /// </summary>
  148. private int _state;
  149. public int State
  150. {
  151. get { return _state; }
  152. set { _state = value; }
  153. }
  154. /// <summary>
  155. /// 操作员ID
  156. /// </summary>
  157. private int _f_userid;
  158. public int F_UserID
  159. {
  160. get { return _f_userid; }
  161. set { _f_userid = value; }
  162. }
  163. /// <summary>
  164. /// 客户ID
  165. /// </summary>
  166. private int _f_customerid;
  167. public int F_CustomerID
  168. {
  169. get { return _f_customerid; }
  170. set { _f_customerid = value; }
  171. }
  172. /// <summary>
  173. /// 客户名称
  174. /// </summary>
  175. private string _f_name;
  176. public string F_Name
  177. {
  178. get { return _f_name; }
  179. set { _f_name = value; }
  180. }
  181. /// <summary>
  182. /// 发送的传真机编号
  183. /// </summary>
  184. private string _f_faxcode;
  185. public string F_FaxCode
  186. {
  187. get { return _f_faxcode; }
  188. set { _f_faxcode = value; }
  189. }
  190. /// <summary>
  191. /// WebFilePath
  192. /// </summary>
  193. private string _webfilepath;
  194. public string WebFilePath
  195. {
  196. get { return _webfilepath; }
  197. set { _webfilepath = value; }
  198. }
  199. }
  200. }