|
Server : Microsoft-IIS/10.0 System : Windows NT EBS-6136 10.0 build 17763 (Windows Server 2016) i586 User : jxgj ( 0) PHP Version : 7.0.33 Disable Function : passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server Directory : D:/tmp_aspnet/root/794bf435/a236a820/ |
?#pragma checksum "d:\wwwroot\sznzpj\wwwroot\App_Code\Classification.cs" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "09B151A4CE73649690B7B1044E80E269"
#line 1 "d:\wwwroot\sznzpj\wwwroot\App_Code\Classification.cs"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Model
{
/// <summary>
///Classification 分类
/// </summary>
public class Classification
{
/// <summary>
/// Id
/// </summary>
public int Id { set; get; }
/// <summary>
/// 对应表名
/// </summary>
public string tableName { set; get; }
/// <summary>
/// 分类名称
/// </summary>
public string Name { set; get; }
/// <summary>
/// 分类描述
/// </summary>
public string Content { set; get; }
/// <summary>
/// 父Id
/// </summary>
public int FID { set; get; }
/// <summary>
/// 排序
/// </summary>
public int Order { set; get; }
/// <summary>
/// 是否显示
/// </summary>
public bool C { set; get; }
/// <summary>
/// 图片
/// </summary>
public string ImgUrl { set; get; }
}
}
#line default
#line hidden