SnapshotLabelLog.cs 876 B

12345678910111213141516171819202122232425262728293031
  1. using Hotline.Share.Dtos;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using XF.Domain.Repository;
  10. namespace Hotline.Snapshot;
  11. [Description("标注类型修改日志")]
  12. public class SnapshotLabelLog : FullStateEntity
  13. {
  14. /// <summary>
  15. /// OrderId
  16. /// </summary>
  17. public string OrderId { get; set; }
  18. /// <summary>
  19. /// 发布工单时标记的工单标签
  20. /// </summary>
  21. [SugarColumn(ColumnDescription = "工单标签", ColumnDataType = "json", IsJson = true, IsNullable = true)]
  22. public IList<Kv>? Labels { get; set; }
  23. /// <summary>
  24. /// 发布工单时标记的工单标签(多个使用 | 分隔)
  25. /// </summary>
  26. [SugarColumn(ColumnDescription = "工单标签")]
  27. public string? LabelName { get; set; }
  28. }