using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
namespace OpenAuth.Domain
{
///
/// 键值
///
public partial class Param
{
///
/// ID
///
///
public int Id { get; set; }
///
/// 名称
///
///
public string Value { get; set; }
///
///
///
///
public string Key { get; set; }
///
/// 资源分类标识
///
///
public int CategoryId { get; set; }
///
/// 排序号
///
///
public int SortNo { get; set; }
///
/// 资源分类标识
///
///
public int Status { get; set; }
///
/// 描述
///
///
public string Description { get; set; }
public Param()
{
this.Id= 0;
this.Value= string.Empty;
this.Key= string.Empty;
this.CategoryId= 0;
this.SortNo= 0;
this.Status= 0;
this.Description= string.Empty;
}
}
}