using System; using System.Collections.Generic; namespace CallCenterApi.Model { /// /// 文章类别表 /// [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; } /// /// -1=已删除; 0=不启用; 1=启用 /// public int status { get; set; } public string parenttitle { get; set; } #endregion } public enum EnumCategoryStatus { 已删除 = -1, 不启用 = 0, 启用 = 1 } }