//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; using System.Collections.Generic; using System.Text; namespace OpenAuth.Domain { /// /// 键值参数 /// public partial class Param { 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; } /// /// 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; } } }