OrderUrge.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. using System.ComponentModel;
  2. using Hotline.File;
  3. using Hotline.Share.Dtos.File;
  4. using Hotline.Users;
  5. using SqlSugar;
  6. using XF.Domain.Repository;
  7. namespace Hotline.Orders
  8. {
  9. [Description("催办")]
  10. public class OrderUrge : FullStateEntity
  11. {
  12. /// <summary>
  13. /// 工单ID
  14. /// </summary>
  15. [SugarColumn(ColumnDescription = "工单ID")]
  16. public string OrderId { get; set; }
  17. /// <summary>
  18. /// 被催办部门ID
  19. /// </summary>
  20. [SugarColumn(ColumnDescription = "被催办部门ID")]
  21. public string OrgId { get; set; }
  22. /// <summary>
  23. /// 被催办角色
  24. /// </summary>
  25. [SugarColumn(ColumnDescription = "被催办角色")]
  26. public string? RoleId { get; set; }
  27. /// <summary>
  28. /// 实际办理步骤ID
  29. /// </summary>
  30. [SugarColumn(ColumnDescription = "实际办理步骤ID")]
  31. public string? ActualHandleStepId { get; set; }
  32. /// <summary>
  33. /// 被催办部门名称
  34. /// </summary>
  35. [SugarColumn(ColumnDescription = "被催办部门名称")]
  36. public string OrgName { get; set; }
  37. /// <summary>
  38. /// 创建部门名称
  39. /// </summary>
  40. [SugarColumn(ColumnDescription = "创建部门名称")]
  41. public string? CreatorOrgName { get; set; }
  42. /// <summary>
  43. /// 催办状态
  44. /// </summary>
  45. [SugarColumn(ColumnDescription = "催办状态 0 待回复 1 已回复 2 签收")]
  46. public int State { get; set; }
  47. /// <summary>
  48. /// 催办签收时间
  49. /// </summary>
  50. [SugarColumn(ColumnDescription = "催办签收时间")]
  51. public DateTime? SignTime { get; set; }
  52. /// <summary>
  53. /// 催办回复时间
  54. /// </summary>
  55. [SugarColumn(ColumnDescription = "催办回复时间")]
  56. public DateTime? ReplyTime { get; set; }
  57. /// <summary>
  58. /// 催办回复时限
  59. /// </summary>
  60. [SugarColumn(ColumnDescription = "催办回复时限")]
  61. public DateTime? ReplyLimitTime { get; set; }
  62. /// <summary>
  63. /// 催办申请内容
  64. /// </summary>
  65. [SugarColumn(ColumnDescription = "催办申请内容", ColumnDataType = "text")]
  66. public string? ApplyContent { get; set; }
  67. /// <summary>
  68. /// 催办回复内容
  69. /// </summary>
  70. [SugarColumn(ColumnDescription = "催办回复内容", ColumnDataType = "text")]
  71. public string? ReplyContent { get; set; }
  72. /// <summary>
  73. /// 回复人
  74. /// </summary>
  75. [SugarColumn(ColumnDescription = "回复人")]
  76. public string? ReplyId { get; set; }
  77. /// <summary>
  78. /// 省平台业务编号
  79. /// </summary>
  80. public string? DsBisId { get; set; }
  81. /// <summary>
  82. ///
  83. /// </summary>
  84. [Navigate(NavigateType.OneToOne, nameof(OrderId))]
  85. public Order Order { get; set; }
  86. [SugarColumn(ColumnDescription = "回复人")]
  87. public string? ReUser { get; set; }
  88. [SugarColumn(ColumnDescription = "申请人")]
  89. public string? CrUser { get; set; }
  90. /// <summary>
  91. /// 省催办时间
  92. /// </summary>
  93. public DateTime? RemindTime { get; set; }
  94. /// <summary>
  95. /// 是否省催单
  96. /// </summary>
  97. [SugarColumn(DefaultValue = "f")]
  98. public bool IsProRemind { get; set; }
  99. [SugarColumn(ColumnDescription = "签收人")]
  100. public string? SignUser { get; set; }
  101. [SugarColumn(ColumnDataType = "json", IsJson = true, IsNullable = true)]
  102. public List<FileJson>? FileJson { get; set; }
  103. [SugarColumn(ColumnDataType = "json", IsJson = true, IsNullable = true)]
  104. public List<FileJson>? ReplyFileJson { get; set; }
  105. }
  106. }