|
@@ -783,8 +783,15 @@ namespace Hotline.Share.Dtos.TrCallCenter
|
|
/// </summary>
|
|
/// </summary>
|
|
public string? TransliterationId { get; set; }
|
|
public string? TransliterationId { get; set; }
|
|
|
|
|
|
- #endregion
|
|
|
|
- }
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 敏感标签
|
|
|
|
+ /// </summary>
|
|
|
|
+ public List<string>? Sensitive { get; set; }
|
|
|
|
+
|
|
|
|
+ public string? SensitiveText => (Sensitive != null && Sensitive.Any()) ? string.Join(',', Sensitive) : "";
|
|
|
|
+
|
|
|
|
+ #endregion
|
|
|
|
+ }
|
|
|
|
|
|
public class CallRecordOutDto
|
|
public class CallRecordOutDto
|
|
{
|
|
{
|