No Description

article_category.cs 760B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CallCenterApi.Model
  4. {
  5. /// <summary>
  6. /// 文章类别表
  7. /// </summary>
  8. [Serializable]
  9. public partial class article_category
  10. {
  11. public article_category()
  12. { }
  13. #region Model
  14. public int id { get; set; }
  15. public int parentid { get; set; }
  16. public string title { get; set; }
  17. public int sort { get; set; }
  18. /// <summary>
  19. /// -1=已删除; 0=不启用; 1=启用
  20. /// </summary>
  21. public int status { get; set; }
  22. public string parenttitle { get; set; }
  23. #endregion
  24. }
  25. public enum EnumCategoryStatus
  26. {
  27. 已删除 = -1,
  28. 不启用 = 0,
  29. 启用 = 1
  30. }
  31. }