温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:Asp.net2.0电子商务网源码
当前文件路径:AspNetDianZiShangWu/Components/Enumerations/CategoryType.cs

1using System; 2
using System.Collections.Generic; 3
using System.Text; 4
5
namespace Jiaen.Components 6
{ 7
public enum CategoryType 8
{ 9
/// <summary> 10
/// 图书父类 11
/// </summary> 12
Book = 0, 13
/// <summary> 14
/// 子类图书 15
/// </summary> 16
ParesentBook = 1, 17
/// <summary> 18
/// 显示首页父类 19
/// </summary> 20
MainBook=2, 21
/// <summary> 22
/// 显示首页子类图书 23
/// </summary> 24
MainParesentBook = 3 25
} 26
} 27





}