FSOnlineComplaints_info.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Data;
  5. using SysBaseLibs;
  6. using System.Web.Script.Serialization;
  7. namespace SysDataLibs.TableClass
  8. {
  9. #region FSOnlineComplaints
  10. public class FSOnlineComplaints_info : ITableInfo
  11. {
  12. #region FSOnlineComplaints表 字段信息
  13. /// <summary>
  14. /// 为关键字段: N ;
  15. /// 自动增长: N;
  16. /// 数据类型: varchar;
  17. /// 数据长度: 50;
  18. /// 是否允许为空: Y;
  19. /// 默认值: ;
  20. /// 描述: 受理人;
  21. /// </summary>
  22. public const string cAcceptancePeople = "AcceptancePeople";
  23. /// <summary>
  24. /// 为关键字段: N ;
  25. /// 自动增长: N;
  26. /// 数据类型: varchar;
  27. /// 数据长度: 50;
  28. /// 是否允许为空: Y;
  29. /// 默认值: ;
  30. /// 描述: 交办单号;
  31. /// </summary>
  32. public const string cAssignedNo = "AssignedNo";
  33. /// <summary>
  34. /// 为关键字段: N ;
  35. /// 自动增长: N;
  36. /// 数据类型: nvarchar;
  37. /// 数据长度: 100;
  38. /// 是否允许为空: Y;
  39. /// 默认值: ;
  40. /// 描述: 承办部门编号;
  41. /// </summary>
  42. public const string cComplaintsDept = "ComplaintsDept";
  43. /// <summary>
  44. /// 为关键字段: N ;
  45. /// 自动增长: N;
  46. /// 数据类型: varchar;
  47. /// 数据长度: 50;
  48. /// 是否允许为空: Y;
  49. /// 默认值: ;
  50. /// 描述: 举报投诉形式;
  51. /// </summary>
  52. public const string cComplaintType = "ComplaintType";
  53. /// <summary>
  54. /// 为关键字段: N ;
  55. /// 自动增长: N;
  56. /// 数据类型: varchar;
  57. /// 数据长度: 50;
  58. /// 是否允许为空: Y;
  59. /// 默认值: ;
  60. /// 描述: 举报投诉人电话;
  61. /// </summary>
  62. public const string cContactTel = "ContactTel";
  63. /// <summary>
  64. /// 为关键字段: N ;
  65. /// 自动增长: N;
  66. /// 数据类型: datetime;
  67. /// 数据长度: 8;
  68. /// 是否允许为空: Y;
  69. /// 默认值: ;
  70. /// 描述: 投诉举报时间;
  71. /// </summary>
  72. public const string cCreateDate = "CreateDate";
  73. /// <summary>
  74. /// 为关键字段: N ;
  75. /// 自动增长: N;
  76. /// 数据类型: datetime;
  77. /// 数据长度: 8;
  78. /// 是否允许为空: Y;
  79. /// 默认值: ;
  80. /// 描述: 要求反馈时间;
  81. /// </summary>
  82. public const string cEndHandleDate = "EndHandleDate";
  83. /// <summary>
  84. /// 为关键字段: N ;
  85. /// 自动增长: N;
  86. /// 数据类型: int;
  87. /// 数据长度: 4;
  88. /// 是否允许为空: Y;
  89. /// 默认值: ;
  90. /// 描述: 要求反馈天数;
  91. /// </summary>
  92. public const string cEndHandleDateCount = "EndHandleDateCount";
  93. /// <summary>
  94. /// 为关键字段: N ;
  95. /// 自动增长: N;
  96. /// 数据类型: int;
  97. /// 数据长度: 4;
  98. /// 是否允许为空: Y;
  99. /// 默认值: ;
  100. /// 描述: 是否审核;
  101. /// </summary>
  102. public const string cIsAudit = "IsAudit";
  103. /// <summary>
  104. /// 为关键字段: N ;
  105. /// 自动增长: N;
  106. /// 数据类型: int;
  107. /// 数据长度: 4;
  108. /// 是否允许为空: Y;
  109. /// 默认值: ;
  110. /// 描述: 是否删除;
  111. /// </summary>
  112. public const string cIsDeleted = "IsDeleted";
  113. /// <summary>
  114. /// 为关键字段: N ;
  115. /// 自动增长: N;
  116. /// 数据类型: int;
  117. /// 数据长度: 4;
  118. /// 是否允许为空: Y;
  119. /// 默认值: ;
  120. /// 描述: 是否回复;
  121. /// </summary>
  122. public const string cIsReply = "IsReply";
  123. /// <summary>
  124. /// 为关键字段: N ;
  125. /// 自动增长: N;
  126. /// 数据类型: text;
  127. /// 数据长度: 16;
  128. /// 是否允许为空: N;
  129. /// 默认值: ;
  130. /// 描述: 投诉举报内容;
  131. /// </summary>
  132. public const string cOnlineComplaintsContent = "OnlineComplaintsContent";
  133. /// <summary>
  134. /// 为关键字段: Y --- PrimaryKey;
  135. /// 自动增长: N;
  136. /// 数据类型: varchar;
  137. /// 数据长度: 50;
  138. /// 是否允许为空: N;
  139. /// 默认值: ;
  140. /// 描述: 编号;
  141. /// </summary>
  142. public const string cOnlineComplaintsID = "OnlineComplaintsID";
  143. /// <summary>
  144. /// 为关键字段: N ;
  145. /// 自动增长: N;
  146. /// 数据类型: varchar;
  147. /// 数据长度: 50;
  148. /// 是否允许为空: Y;
  149. /// 默认值: ;
  150. /// 描述: 投诉举报人IP;
  151. /// </summary>
  152. public const string cOnlineComplaintsIP = "OnlineComplaintsIP";
  153. /// <summary>
  154. /// 为关键字段: N ;
  155. /// 自动增长: N;
  156. /// 数据类型: nvarchar;
  157. /// 数据长度: 100;
  158. /// 是否允许为空: Y;
  159. /// 默认值: ;
  160. /// 描述: 投诉举报人姓名;
  161. /// </summary>
  162. public const string cOnlineComplaintsName = "OnlineComplaintsName";
  163. /// <summary>
  164. /// 为关键字段: N ;
  165. /// 自动增长: N;
  166. /// 数据类型: text;
  167. /// 数据长度: 16;
  168. /// 是否允许为空: Y;
  169. /// 默认值: ;
  170. /// 描述: 备注信息;
  171. /// </summary>
  172. public const string cOnlineComplaintsRemark = "OnlineComplaintsRemark";
  173. /// <summary>
  174. /// 为关键字段: N ;
  175. /// 自动增长: N;
  176. /// 数据类型: text;
  177. /// 数据长度: 16;
  178. /// 是否允许为空: Y;
  179. /// 默认值: ;
  180. /// 描述: 回复内容;
  181. /// </summary>
  182. public const string cReplyContent = "ReplyContent";
  183. /// <summary>
  184. /// 为关键字段: N ;
  185. /// 自动增长: N;
  186. /// 数据类型: datetime;
  187. /// 数据长度: 8;
  188. /// 是否允许为空: Y;
  189. /// 默认值: ;
  190. /// 描述: 回复时间;
  191. /// </summary>
  192. public const string cReplyDate = "ReplyDate";
  193. /// <summary>
  194. /// 为关键字段: N ;
  195. /// 自动增长: N;
  196. /// 数据类型: nvarchar;
  197. /// 数据长度: 100;
  198. /// 是否允许为空: Y;
  199. /// 默认值: ;
  200. /// 描述: 回复人;
  201. /// </summary>
  202. public const string cReplyPeople = "ReplyPeople";
  203. #endregion
  204. public FSOnlineComplaints_info() { }
  205. public FSOnlineComplaints_info(DataRow poRow)
  206. {
  207. CreateTableInfo(poRow);
  208. }
  209. public void CreateTableInfo(DataRow poRow)
  210. {
  211. _AcceptancePeople = UtilStr.StrFromObj(poRow[cAcceptancePeople]);
  212. _AssignedNo = UtilStr.StrFromObj(poRow[cAssignedNo]);
  213. _ComplaintsDept = UtilStr.StrFromObj(poRow[cComplaintsDept]);
  214. _ComplaintType = UtilStr.StrFromObj(poRow[cComplaintType]);
  215. _ContactTel = UtilStr.StrFromObj(poRow[cContactTel]);
  216. _CreateDate = UtilStr.StrFromObj(poRow[cCreateDate]);
  217. _EndHandleDate = UtilStr.StrFromObj(poRow[cEndHandleDate]);
  218. _EndHandleDateCount = UtilStr.StrFromObj(poRow[cEndHandleDateCount]);
  219. _IsAudit = UtilStr.StrFromObj(poRow[cIsAudit]);
  220. _IsDeleted = UtilStr.StrFromObj(poRow[cIsDeleted]);
  221. _IsReply = UtilStr.StrFromObj(poRow[cIsReply]);
  222. _OnlineComplaintsContent = UtilStr.StrFromObj(poRow[cOnlineComplaintsContent]);
  223. _OnlineComplaintsID = UtilStr.StrFromObj(poRow[cOnlineComplaintsID]);
  224. _OnlineComplaintsIP = UtilStr.StrFromObj(poRow[cOnlineComplaintsIP]);
  225. _OnlineComplaintsName = UtilStr.StrFromObj(poRow[cOnlineComplaintsName]);
  226. _OnlineComplaintsRemark = UtilStr.StrFromObj(poRow[cOnlineComplaintsRemark]);
  227. _ReplyContent = UtilStr.StrFromObj(poRow[cReplyContent]);
  228. _ReplyDate = UtilStr.StrFromObj(poRow[cReplyDate]);
  229. _ReplyPeople = UtilStr.StrFromObj(poRow[cReplyPeople]);
  230. }
  231. public FSOnlineComplaints_info(string pcOnlineComplaintsID, DBConnSql poDBConn)
  232. {
  233. if (pcOnlineComplaintsID.Trim().Length > 0 && poDBConn != null)
  234. {
  235. string lcSql = "select * from " + Tn.FSOnlineComplaints + " where OnlineComplaintsID='" + pcOnlineComplaintsID + "'";
  236. rsQuery loQuery = poDBConn.OpenQuery(lcSql);
  237. if (loQuery != null && loQuery.IsOpened && loQuery.RecCount == 1)
  238. {
  239. loQuery.MoveFirst();
  240. CreateTableInfo(loQuery.CurrentRow);
  241. }
  242. }
  243. }
  244. private string _AcceptancePeople = "";
  245. public string AcceptancePeople
  246. {
  247. get { return _AcceptancePeople; }
  248. set { _AcceptancePeople = value; }
  249. }
  250. private string _AssignedNo = "";
  251. public string AssignedNo
  252. {
  253. get { return _AssignedNo; }
  254. set { _AssignedNo = value; }
  255. }
  256. private string _ComplaintsDept = "";
  257. public string ComplaintsDept
  258. {
  259. get { return _ComplaintsDept; }
  260. set { _ComplaintsDept = value; }
  261. }
  262. private string _ComplaintType = "";
  263. public string ComplaintType
  264. {
  265. get { return _ComplaintType; }
  266. set { _ComplaintType = value; }
  267. }
  268. private string _ContactTel = "";
  269. public string ContactTel
  270. {
  271. get { return _ContactTel; }
  272. set { _ContactTel = value; }
  273. }
  274. private string _CreateDate = "";
  275. public string CreateDate
  276. {
  277. get { return _CreateDate; }
  278. set { _CreateDate = value; }
  279. }
  280. private string _EndHandleDate = "";
  281. public string EndHandleDate
  282. {
  283. get { return _EndHandleDate; }
  284. set { _EndHandleDate = value; }
  285. }
  286. private string _EndHandleDateCount = "";
  287. public string EndHandleDateCount
  288. {
  289. get { return _EndHandleDateCount; }
  290. set { _EndHandleDateCount = value; }
  291. }
  292. private string _IsAudit = "";
  293. public string IsAudit
  294. {
  295. get { return _IsAudit; }
  296. set { _IsAudit = value; }
  297. }
  298. private string _IsDeleted = "";
  299. public string IsDeleted
  300. {
  301. get { return _IsDeleted; }
  302. set { _IsDeleted = value; }
  303. }
  304. private string _IsReply = "";
  305. public string IsReply
  306. {
  307. get { return _IsReply; }
  308. set { _IsReply = value; }
  309. }
  310. private string _OnlineComplaintsContent = "";
  311. public string OnlineComplaintsContent
  312. {
  313. get { return _OnlineComplaintsContent; }
  314. set { _OnlineComplaintsContent = value; }
  315. }
  316. private string _OnlineComplaintsID = "";
  317. public string OnlineComplaintsID
  318. {
  319. get { return _OnlineComplaintsID; }
  320. set { _OnlineComplaintsID = value; }
  321. }
  322. private string _OnlineComplaintsIP = "";
  323. public string OnlineComplaintsIP
  324. {
  325. get { return _OnlineComplaintsIP; }
  326. set { _OnlineComplaintsIP = value; }
  327. }
  328. private string _OnlineComplaintsName = "";
  329. public string OnlineComplaintsName
  330. {
  331. get { return _OnlineComplaintsName; }
  332. set { _OnlineComplaintsName = value; }
  333. }
  334. private string _OnlineComplaintsRemark = "";
  335. public string OnlineComplaintsRemark
  336. {
  337. get { return _OnlineComplaintsRemark; }
  338. set { _OnlineComplaintsRemark = value; }
  339. }
  340. private string _ReplyContent = "";
  341. public string ReplyContent
  342. {
  343. get { return _ReplyContent; }
  344. set { _ReplyContent = value; }
  345. }
  346. private string _ReplyDate = "";
  347. public string ReplyDate
  348. {
  349. get { return _ReplyDate; }
  350. set { _ReplyDate = value; }
  351. }
  352. private string _ReplyPeople = "";
  353. public string ReplyPeople
  354. {
  355. get { return _ReplyPeople; }
  356. set { _ReplyPeople = value; }
  357. }
  358. [ScriptIgnore]
  359. public rsXmlNode DataXMLNode
  360. {
  361. get
  362. {
  363. rsXmlNode loMainNode = new rsXmlNode("FSOnlineComplaintsRecord", "");
  364. rsXmlNode loNode = null;
  365. loNode = new rsXmlNode(cAcceptancePeople, AcceptancePeople);
  366. loMainNode.AddChild(loNode);
  367. loNode = new rsXmlNode(cAssignedNo, AssignedNo);
  368. loMainNode.AddChild(loNode);
  369. loNode = new rsXmlNode(cComplaintsDept, ComplaintsDept);
  370. loMainNode.AddChild(loNode);
  371. loNode = new rsXmlNode(cComplaintType, ComplaintType);
  372. loMainNode.AddChild(loNode);
  373. loNode = new rsXmlNode(cContactTel, ContactTel);
  374. loMainNode.AddChild(loNode);
  375. loNode = new rsXmlNode(cCreateDate, CreateDate);
  376. loMainNode.AddChild(loNode);
  377. loNode = new rsXmlNode(cEndHandleDate, EndHandleDate);
  378. loMainNode.AddChild(loNode);
  379. loNode = new rsXmlNode(cEndHandleDateCount, EndHandleDateCount);
  380. loMainNode.AddChild(loNode);
  381. loNode = new rsXmlNode(cIsAudit, IsAudit);
  382. loMainNode.AddChild(loNode);
  383. loNode = new rsXmlNode(cIsDeleted, IsDeleted);
  384. loMainNode.AddChild(loNode);
  385. loNode = new rsXmlNode(cIsReply, IsReply);
  386. loMainNode.AddChild(loNode);
  387. loNode = new rsXmlNode(cOnlineComplaintsContent, OnlineComplaintsContent);
  388. loMainNode.AddChild(loNode);
  389. loNode = new rsXmlNode(cOnlineComplaintsID, OnlineComplaintsID);
  390. loMainNode.AddChild(loNode);
  391. loNode = new rsXmlNode(cOnlineComplaintsIP, OnlineComplaintsIP);
  392. loMainNode.AddChild(loNode);
  393. loNode = new rsXmlNode(cOnlineComplaintsName, OnlineComplaintsName);
  394. loMainNode.AddChild(loNode);
  395. loNode = new rsXmlNode(cOnlineComplaintsRemark, OnlineComplaintsRemark);
  396. loMainNode.AddChild(loNode);
  397. loNode = new rsXmlNode(cReplyContent, ReplyContent);
  398. loMainNode.AddChild(loNode);
  399. loNode = new rsXmlNode(cReplyDate, ReplyDate);
  400. loMainNode.AddChild(loNode);
  401. loNode = new rsXmlNode(cReplyPeople, ReplyPeople);
  402. loMainNode.AddChild(loNode);
  403. return loMainNode;
  404. }
  405. }
  406. public string InsertSql()
  407. {
  408. return " insert into " + Tn.FSOnlineComplaints + " " +
  409. " (" + cOnlineComplaintsID + "," + cOnlineComplaintsIP + "," + cOnlineComplaintsName + "," + cOnlineComplaintsContent + "," + cIsAudit + "," + cIsDeleted + "," + cIsReply +
  410. "," + cCreateDate + "," + cComplaintsDept + "," + cReplyPeople + "," + cReplyDate + "," + cReplyContent + "," + cEndHandleDateCount + "," + cEndHandleDate + "," + cOnlineComplaintsRemark +
  411. "," + cContactTel + "," + cComplaintType + "," + cAssignedNo + "," + cAcceptancePeople + ") " +
  412. " values ('" + _OnlineComplaintsID + "','" + _OnlineComplaintsIP + "','" + _OnlineComplaintsName + "','" + _OnlineComplaintsContent + "'," + _IsAudit +
  413. "," + _IsDeleted + "," + _IsReply + ",'" + _CreateDate + "','" + _ComplaintsDept + "','" + _ReplyPeople + "','" + _ReplyDate + "','" + _ReplyContent + "'," + _EndHandleDateCount +
  414. ",'" + _EndHandleDate + "','" + _OnlineComplaintsRemark + "','" + _ContactTel + "','" + _ComplaintType + "','" + _AssignedNo + "','" + _AcceptancePeople + "') ";
  415. }
  416. public string UpdateReplySql()
  417. {
  418. return " update " + Tn.FSOnlineComplaints + " " +
  419. " set " + cIsReply + "=1," + cReplyDate + "='" + _ReplyDate + "', " + cReplyPeople + "='" + _ReplyPeople + "'," + cReplyContent + "='" + _ReplyContent + "' " +
  420. " where " + cOnlineComplaintsID + "='" + _OnlineComplaintsID + "'";
  421. }
  422. public string UpdateDelaySql()
  423. {
  424. return " update " + Tn.FSOnlineComplaints + " " +
  425. " set " + cEndHandleDate + "='" + _EndHandleDate + "' " +
  426. " where " + cOnlineComplaintsID + "='" + _OnlineComplaintsID + "'";
  427. }
  428. public string UpdateComplaintsDeptSql()
  429. {
  430. return " update " + Tn.FSOnlineComplaints + " " +
  431. " set " + cComplaintsDept + "='" + _ComplaintsDept + "' " +
  432. " where " + cOnlineComplaintsID + "='" + _OnlineComplaintsID + "'";
  433. }
  434. public string DeleteSql()
  435. {
  436. return "Delete " + Tn.FSOnlineComplaints + " where " + cOnlineComplaintsID + "='" + _OnlineComplaintsID + "'";
  437. }
  438. /*public static int hasNotRead(string pcType, UserSession poSession)
  439. {
  440. string lcSql = "select count(*) as mscount from " + Tn.FSOnlineComplaints + " where " + BulletinInfo_info.cBulletinTypeID + "='" + pcType +
  441. "' and " + BulletinInfo_info.cID + " not in (select " + Sys_AttachTables_info.cSourceKey + " from " + Tn.Sys_AttachTables + " where " + Sys_AttachTables_info.cTableId + "='" + Tn.BulletinInfo + "' and " + Sys_AttachTables_info.cUserID + "='" + poSession.UserInfo.UserID + "')";
  442. rsQuery loQuery = poSession.DBConn.OpenQuery(lcSql);
  443. if (loQuery != null && loQuery.IsOpened)
  444. {
  445. return loQuery.GetInt("mscount");
  446. }
  447. return 0;
  448. }*/
  449. }
  450. #endregion
  451. #region
  452. public class FSOnlineComplaints_Qry : rsQuery
  453. {
  454. public String AcceptancePeople
  455. {
  456. get { return GetString(FSOnlineComplaints_info.cAcceptancePeople); }
  457. // set { SetField(FSOnlineComplaints_info.cAcceptancePeople, value); }
  458. }
  459. public String AssignedNo
  460. {
  461. get { return GetString(FSOnlineComplaints_info.cAssignedNo); }
  462. // set { SetField(FSOnlineComplaints_info.cAssignedNo, value); }
  463. }
  464. public String ComplaintsDept
  465. {
  466. get { return GetString(FSOnlineComplaints_info.cComplaintsDept); }
  467. // set { SetField(FSOnlineComplaints_info.cComplaintsDept, value); }
  468. }
  469. public String ComplaintType
  470. {
  471. get { return GetString(FSOnlineComplaints_info.cComplaintType); }
  472. // set { SetField(FSOnlineComplaints_info.cComplaintType, value); }
  473. }
  474. public String ContactTel
  475. {
  476. get { return GetString(FSOnlineComplaints_info.cContactTel); }
  477. // set { SetField(FSOnlineComplaints_info.cContactTel, value); }
  478. }
  479. public DateTime CreateDate
  480. {
  481. get { return GetDateTime(FSOnlineComplaints_info.cCreateDate); }
  482. // set { SetField(FSOnlineComplaints_info.cCreateDate, value); }
  483. }
  484. public DateTime EndHandleDate
  485. {
  486. get { return GetDateTime(FSOnlineComplaints_info.cEndHandleDate); }
  487. // set { SetField(FSOnlineComplaints_info.cEndHandleDate, value); }
  488. }
  489. public Int64 EndHandleDateCount
  490. {
  491. get { return GetInt(FSOnlineComplaints_info.cEndHandleDateCount); }
  492. // set { SetField(FSOnlineComplaints_info.cEndHandleDateCount, value); }
  493. }
  494. public Int64 IsAudit
  495. {
  496. get { return GetInt(FSOnlineComplaints_info.cIsAudit); }
  497. // set { SetField(FSOnlineComplaints_info.cIsAudit, value); }
  498. }
  499. public Int64 IsDeleted
  500. {
  501. get { return GetInt(FSOnlineComplaints_info.cIsDeleted); }
  502. // set { SetField(FSOnlineComplaints_info.cIsDeleted, value); }
  503. }
  504. public Int64 IsReply
  505. {
  506. get { return GetInt(FSOnlineComplaints_info.cIsReply); }
  507. // set { SetField(FSOnlineComplaints_info.cIsReply, value); }
  508. }
  509. public String OnlineComplaintsContent
  510. {
  511. get { return GetString(FSOnlineComplaints_info.cOnlineComplaintsContent); }
  512. // set { SetField(FSOnlineComplaints_info.cOnlineComplaintsContent, value); }
  513. }
  514. public String OnlineComplaintsID
  515. {
  516. get { return GetString(FSOnlineComplaints_info.cOnlineComplaintsID); }
  517. // set { SetField(FSOnlineComplaints_info.cOnlineComplaintsID, value); }
  518. }
  519. public String OnlineComplaintsIP
  520. {
  521. get { return GetString(FSOnlineComplaints_info.cOnlineComplaintsIP); }
  522. // set { SetField(FSOnlineComplaints_info.cOnlineComplaintsIP, value); }
  523. }
  524. public String OnlineComplaintsName
  525. {
  526. get { return GetString(FSOnlineComplaints_info.cOnlineComplaintsName); }
  527. // set { SetField(FSOnlineComplaints_info.cOnlineComplaintsName, value); }
  528. }
  529. public String OnlineComplaintsRemark
  530. {
  531. get { return GetString(FSOnlineComplaints_info.cOnlineComplaintsRemark); }
  532. // set { SetField(FSOnlineComplaints_info.cOnlineComplaintsRemark, value); }
  533. }
  534. public String ReplyContent
  535. {
  536. get { return GetString(FSOnlineComplaints_info.cReplyContent); }
  537. // set { SetField(FSOnlineComplaints_info.cReplyContent, value); }
  538. }
  539. public DateTime ReplyDate
  540. {
  541. get { return GetDateTime(FSOnlineComplaints_info.cReplyDate); }
  542. // set { SetField(FSOnlineComplaints_info.cReplyDate, value); }
  543. }
  544. public String ReplyPeople
  545. {
  546. get { return GetString(FSOnlineComplaints_info.cReplyPeople); }
  547. // set { SetField(FSOnlineComplaints_info.cReplyPeople, value); }
  548. }
  549. }
  550. #endregion
  551. }