地铁二期项目正式开始

T_Wo_WorkOrderNotice.cs 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. using System;
  2. using System.Collections.Generic;
  3. namespace YTSoft.BaseCallCenter.Model
  4. {
  5. [Serializable]
  6. public partial class T_Wo_WorkOrderNotice
  7. {
  8. public T_Wo_WorkOrderNotice()
  9. { }
  10. #region Model
  11. private int _noticeid;
  12. private int _orderid = 0;
  13. private int _historyid = 0;
  14. private int _noticeuserid = 0;
  15. private string _noticeusername = "";
  16. private int _noticedeptid = 0;
  17. private string _noticedeptname = "";
  18. private string _noticedeptcontent = "";
  19. private string _noticedeptadvise = "";
  20. private string _class1 = "";
  21. private string _class2 = "";
  22. private string _class3 = "";
  23. private int _classid1 = 0;
  24. private int _classid2 = 0;
  25. private int _classid3 = 0;
  26. private int _noticetype = 0;
  27. private int _userid = 0;
  28. private string _username = "";
  29. private string _dealadvise = "";
  30. private string _dealresult = "";
  31. private int _noticestate = 1;
  32. private DateTime _addtime = DateTime.Now;
  33. private string _remark1 = "";
  34. private string _remark2 = "";
  35. private string _remark3 = "";
  36. private string _remark4 = "";
  37. private string _remark5 = "";
  38. private int _dznumber = 1;
  39. /// <summary>
  40. ///
  41. /// </summary>
  42. public int NoticeId
  43. {
  44. set { _noticeid = value; }
  45. get { return _noticeid; }
  46. }
  47. /// <summary>
  48. /// 工单id
  49. /// </summary>
  50. public int OrderId
  51. {
  52. set { _orderid = value; }
  53. get { return _orderid; }
  54. }
  55. /// <summary>
  56. /// 相关历史工单假如针对历史工单进行定责,可启用
  57. /// </summary>
  58. public int HistoryID
  59. {
  60. set { _historyid = value; }
  61. get { return _historyid; }
  62. }
  63. /// <summary>
  64. /// 通知相关人
  65. /// </summary>
  66. public int NoticeUserid
  67. {
  68. set { _noticeuserid = value; }
  69. get { return _noticeuserid; }
  70. }
  71. /// <summary>
  72. /// 通知相关人
  73. /// </summary>
  74. public string NoticeUsername
  75. {
  76. set { _noticeusername = value; }
  77. get { return _noticeusername; }
  78. }
  79. /// <summary>
  80. /// 通知相关部门
  81. /// </summary>
  82. public int NoticeDeptId
  83. {
  84. set { _noticedeptid = value; }
  85. get { return _noticedeptid; }
  86. }
  87. /// <summary>
  88. /// 通知相关部门
  89. /// </summary>
  90. public string NoticeDeptName
  91. {
  92. set { _noticedeptname = value; }
  93. get { return _noticedeptname; }
  94. }
  95. /// <summary>
  96. /// 调查情况
  97. /// </summary>
  98. public string NoticeDeptContent
  99. {
  100. set { _noticedeptcontent = value; }
  101. get { return _noticedeptcontent; }
  102. }
  103. /// <summary>
  104. /// 处理意见
  105. /// </summary>
  106. public string NoticeDeptAdvise
  107. {
  108. set { _noticedeptadvise = value; }
  109. get { return _noticedeptadvise; }
  110. }
  111. /// <summary>
  112. /// 定责一级分类
  113. /// </summary>
  114. public string Class1
  115. {
  116. set { _class1 = value; }
  117. get { return _class1; }
  118. }
  119. /// <summary>
  120. /// 定责二级分类
  121. /// </summary>
  122. public string Class2
  123. {
  124. set { _class2 = value; }
  125. get { return _class2; }
  126. }
  127. /// <summary>
  128. /// 定责三级分类
  129. /// </summary>
  130. public string Class3
  131. {
  132. set { _class3 = value; }
  133. get { return _class3; }
  134. }
  135. /// <summary>
  136. ///
  137. /// </summary>
  138. public int ClassId1
  139. {
  140. set { _classid1 = value; }
  141. get { return _classid1; }
  142. }
  143. /// <summary>
  144. ///
  145. /// </summary>
  146. public int ClassId2
  147. {
  148. set { _classid2 = value; }
  149. get { return _classid2; }
  150. }
  151. /// <summary>
  152. ///
  153. /// </summary>
  154. public int ClassId3
  155. {
  156. set { _classid3 = value; }
  157. get { return _classid3; }
  158. }
  159. /// <summary>
  160. /// 通知类型0表扬 1定责
  161. /// </summary>
  162. public int NoticeType
  163. {
  164. set { _noticetype = value; }
  165. get { return _noticetype; }
  166. }
  167. /// <summary>
  168. /// 操作用户id
  169. /// </summary>
  170. public int Userid
  171. {
  172. set { _userid = value; }
  173. get { return _userid; }
  174. }
  175. /// <summary>
  176. /// 操作用户姓名
  177. /// </summary>
  178. public string Username
  179. {
  180. set { _username = value; }
  181. get { return _username; }
  182. }
  183. /// <summary>
  184. /// 定责处理意见
  185. /// </summary>
  186. public string DealAdvise
  187. {
  188. set { _dealadvise = value; }
  189. get { return _dealadvise; }
  190. }
  191. /// <summary>
  192. /// 定责处理结果
  193. /// </summary>
  194. public string DealResult
  195. {
  196. set { _dealresult = value; }
  197. get { return _dealresult; }
  198. }
  199. /// <summary>
  200. /// 是否有效1有效 默认有效 三次定责,每次定责都要让之前的定责单失效
  201. /// </summary>
  202. public int NoticeState
  203. {
  204. set { _noticestate = value; }
  205. get { return _noticestate; }
  206. }
  207. /// <summary>
  208. /// 添加时间
  209. /// </summary>
  210. public DateTime Addtime
  211. {
  212. set { _addtime = value; }
  213. get { return _addtime; }
  214. }
  215. /// <summary>
  216. ///
  217. /// </summary>
  218. public string Remark1
  219. {
  220. set { _remark1 = value; }
  221. get { return _remark1; }
  222. }
  223. /// <summary>
  224. ///
  225. /// </summary>
  226. public string Remark2
  227. {
  228. set { _remark2 = value; }
  229. get { return _remark2; }
  230. }
  231. /// <summary>
  232. ///
  233. /// </summary>
  234. public string Remark3
  235. {
  236. set { _remark3 = value; }
  237. get { return _remark3; }
  238. }
  239. /// <summary>
  240. ///
  241. /// </summary>
  242. public string Remark4
  243. {
  244. set { _remark4 = value; }
  245. get { return _remark4; }
  246. }
  247. /// <summary>
  248. ///
  249. /// </summary>
  250. public string Remark5
  251. {
  252. set { _remark5 = value; }
  253. get { return _remark5; }
  254. }
  255. /// <summary>
  256. /// 定责次数
  257. /// </summary>
  258. public int DZNumber
  259. {
  260. set { _dznumber = value; }
  261. get { return _dznumber; }
  262. }
  263. #endregion Model
  264. }
  265. public partial class T_Wo_WorkOrderNoticeInput
  266. {
  267. public List<T_Wo_WorkOrderNotice> Noticelist { get; set; }
  268. public int Classid1 { get; set; }
  269. public string ClassName1 { get; set; }
  270. public int Classid2 { get; set; }
  271. public string ClassName2 { get; set; }
  272. public int Classid3 { get; set; }
  273. public string ClassName3 { get; set; }
  274. // 处理意见
  275. public string F_SERVICETYPE { get; set; }
  276. // 定性定责结果
  277. public string F_SERVICENATURE { get; set; }
  278. public int orderid { get; set; }
  279. }
  280. }