DsPoliceSendChainDealDcjt.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. using SqlSugar;
  2. using System.ComponentModel;
  3. using XF.Domain.Repository;
  4. namespace DataSharing.Police110.DCJT110
  5. {
  6. /// <summary>
  7. /// 大成均图办理结果表
  8. /// </summary>
  9. [Description("大成均图办理结果表-发送")]
  10. public class DsPoliceSendChainDealDcjt : CreationModificationEntity
  11. {
  12. /// <summary>
  13. /// 工单编号
  14. /// </summary>
  15. [SugarColumn(ColumnDescription = "工单编号", ColumnDataType = "varchar(50)", IsNullable = true)]
  16. public string OrderId { get; set; }
  17. /// <summary>
  18. /// 接警单编号
  19. /// </summary>
  20. [SugarColumn(ColumnDescription = "接警单编号", ColumnDataType = "varchar(50)")]
  21. public string AlarmReceiptNumber { get; set; }
  22. /// <summary>
  23. /// 反馈时间
  24. /// </summary>
  25. [SugarColumn(ColumnDescription = "反馈时间", IsNullable = true)]
  26. public DateTime? FeedbackTime { get; set; }
  27. /// <summary>
  28. /// 出警处置情况
  29. /// </summary>
  30. [SugarColumn(ColumnDescription = "出警处置情况", ColumnDataType = "varchar(2000)", IsNullable = true)]
  31. public string DisposalSituation { get; set; }
  32. /// <summary>
  33. /// 警情处理结果说明
  34. /// </summary>
  35. /// </summary>
  36. [SugarColumn(ColumnDescription = "警情处理结果说明", ColumnDataType = "varchar(2000)", IsNullable = true)]
  37. public string ResultDescription { get; set; }
  38. /// <summary>
  39. /// 反馈人员编号
  40. /// </summary>
  41. [SugarColumn(ColumnDescription = "反馈人员编号", ColumnDataType = "varchar(50)", IsNullable = true)]
  42. public string FeedbackPersonNumber { get; set; }
  43. /// <summary>
  44. /// 反馈人员姓名
  45. /// </summary>
  46. [SugarColumn(ColumnDescription = "反馈人员姓名", ColumnDataType = "varchar(30)", IsNullable = true)]
  47. public string FeedbackPersonName { get; set; }
  48. /// <summary>
  49. /// 反馈单位代码
  50. /// </summary>
  51. [SugarColumn(ColumnDescription = "反馈单位代码", ColumnDataType = "varchar(50)", IsNullable = true)]
  52. public string FeedbackUnitCode { get; set; }
  53. /// <summary>
  54. /// 反馈单位名称
  55. /// </summary>
  56. [SugarColumn(ColumnDescription = "反馈单位名称", ColumnDataType = "varchar(50)", IsNullable = true)]
  57. public string FeedbackUnitName { get; set; }
  58. /// <summary>
  59. /// 回访时间
  60. /// </summary>
  61. [SugarColumn(ColumnDescription = "回访时间", IsNullable = true)]
  62. public DateTime? RevisitTime { get; set; }
  63. /// <summary>
  64. /// 电话回访核实情况
  65. /// </summary>
  66. [SugarColumn(ColumnDescription = "电话回访核实情况", ColumnDataType = "varchar(2000)", IsNullable = true)]
  67. public string CheckingContent { get; set; }
  68. /// <summary>
  69. /// 回访结果
  70. /// </summary>
  71. [SugarColumn(ColumnDescription = "回访结果", ColumnDataType = "varchar(20)", IsNullable = true)]
  72. public string VisitResult { get; set; }
  73. /// <summary>
  74. /// 回访内容
  75. /// </summary>
  76. [SugarColumn(ColumnDescription = "回访内容", ColumnDataType = "varchar(2000)", IsNullable = true)]
  77. public string VisitContent { get; set; }
  78. /// <summary>
  79. /// 退回接警员
  80. /// </summary>
  81. [SugarColumn(ColumnDescription = "退回接警员", ColumnDataType = "varchar(50)", IsNullable = true)]
  82. public string ReturnName { get; set; }
  83. /// <summary>
  84. /// 退回部门
  85. /// </summary>
  86. [SugarColumn(ColumnDescription = "退回部门", ColumnDataType = "varchar(50)", IsNullable = true)]
  87. public string ReturnUnit { get; set; }
  88. /// <summary>
  89. /// 退回原因
  90. /// </summary>
  91. [SugarColumn(ColumnDescription = "退回原因", ColumnDataType = "varchar(2000)", IsNullable = true)]
  92. public string ReturnOpinion { get; set; }
  93. /// <summary>
  94. /// 退回时间
  95. /// </summary>
  96. [SugarColumn(ColumnDescription = "退回时间", IsNullable = true)]
  97. public DateTime? ReturnTime { get; set; }
  98. /// <summary>
  99. /// 处置类型 1正常 2退回 3回访
  100. /// </summary>
  101. [SugarColumn(ColumnDescription = "处置类型")]
  102. public int DisposalType { get; set; }
  103. /// <summary>
  104. /// 入库时间
  105. /// </summary>
  106. [SugarColumn(ColumnDescription = "入库时间")]
  107. public DateTime? WarehousingTime { get; set; }
  108. }
  109. }