| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// 文章类别表
- /// </summary>
- [Serializable]
- public partial class article_category
- {
- public article_category()
- { }
- #region Model
- public int id { get; set; }
- public int parentid { get; set; }
- public string title { get; set; }
- public int sort { get; set; }
- /// <summary>
- /// -1=已删除; 0=不启用; 1=启用
- /// </summary>
- public int status { get; set; }
- public string parenttitle { get; set; }
- #endregion
- }
- public enum EnumCategoryStatus
- {
- 已删除 = -1,
- 不启用 = 0,
- 启用 = 1
- }
- }
|