SnapshotSMSTemplate.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using Hotline.Share.Enums.Snapshot;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using XF.Domain.Repository;
  9. namespace Hotline.Snapshot;
  10. public class SnapshotSMSTemplate : FullStateEntity
  11. {
  12. /// <summary>
  13. /// 行业Id
  14. /// </summary>
  15. [SugarColumn(ColumnDescription = "行业Id")]
  16. public string IndustryId { get; set; }
  17. /// <summary>
  18. /// 模板内容
  19. /// </summary>
  20. [SugarColumn(ColumnDescription = "模板内容")]
  21. public string Content { get; set; }
  22. /// <summary>
  23. /// 审核状态
  24. /// </summary>
  25. [SugarColumn(ColumnDescription = "审核状态")]
  26. public ESnapshotSMSStatus Status { get; set; }
  27. /// <summary>
  28. /// 是否启用
  29. /// </summary>
  30. [SugarColumn(ColumnDescription = "是否启用")]
  31. public bool IsEnable { get; set; }
  32. /// <summary>
  33. /// 是否公用
  34. /// </summary>
  35. [SugarColumn(ColumnDescription = "是否公用")]
  36. public bool IsPublic { get; set; }
  37. /// <summary>
  38. /// 排序
  39. /// </summary>
  40. [SugarColumn(ColumnDescription = "排序")]
  41. public int DisplayOrder { get; set; }
  42. }