|
@@ -1,4 +1,5 @@
|
|
|
-using Hotline.Share.Enums.Order;
|
|
|
+using Hotline.Share.Dtos;
|
|
|
+using Hotline.Share.Enums.Order;
|
|
|
using Hotline.Users;
|
|
|
using SqlSugar;
|
|
|
using System.ComponentModel;
|
|
@@ -58,12 +59,38 @@ public class OrderPublish : FullStateEntity
|
|
|
/// 反馈电话
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
- public string FeedBackPhone { get; set; }
|
|
|
+ public string? FeedBackPhone { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 不公开原因
|
|
|
/// </summary>
|
|
|
[SugarColumn(IsNullable = true)]
|
|
|
- public string NoPubReason { get; set; }
|
|
|
+ public string? NoPubReason { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 是否联系
|
|
|
+ /// </summary>
|
|
|
+ public bool? IsContact { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 是否评价
|
|
|
+ /// </summary>
|
|
|
+ public bool? IsVisited { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 网民评价
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnDataType = "json", IsJson = true, IsNullable = true)]
|
|
|
+ public Kv? NetizenEvaluate { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 评价内容
|
|
|
+ /// </summary>
|
|
|
+ public string? EvaluateContent { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 备注
|
|
|
+ /// </summary>
|
|
|
+ public string Remark { get; set; }
|
|
|
#endregion
|
|
|
}
|