using System;
using System.Collections.Generic;
using System.Text;
namespace System.Model
{
[Serializable]
public partial class T_Sys_DictionaryValue
{
///
/// 字典ID,自增
///
public int F_ValueId { get; set; }
///
/// 字典值
///
public string F_Value { get; set; }
///
/// 字典编号
///
public string F_ValueCode { get; set; }
///
/// 父级ID,默认为0
///
public int? F_ParentId { get; set; }
///
/// 父级编号
///
public string F_ParentCode { get; set; }
///
/// 功能级别(1级节点,2级节点)
///
public int? F_Layer { get; set; }
///
/// 是否叶子节点
///
public bool F_IsLeaf { get; set; }
///
/// 备注
///
public string F_Remark { get; set; }
///
/// 状态
///
public int? F_State { get; set; }
///
/// 添加人工号
///
public string F_CreateBy { get; set; }
///
/// 添加时间
///
public DateTime? F_CreateOn { get; set; }
///
/// 最后一次修改时间
///
public DateTime? F_LastModifyOn { get; set; }
///
/// 最后一次修改工号
///
public string F_LastModifyBy { get; set; }
///
/// 删除时间
///
public DateTime? F_DeleteOn { get; set; }
///
/// 删除工号
///
public string F_DeleteBy { get; set; }
}
}