using System;
using System.Collections.Generic;
using System.Text;
namespace System.Model
{
///
/// 系统配置表
///
[Serializable]
public partial class T_Sys_SystemConfig
{
///
/// 参数ID,自增
///
public int F_ParamId { get; set; }
///
/// 参数名称
///
public string F_ParamCode { get; set; }
///
/// 参数内容
///
public string F_ParamValue { get; set; }
///
/// 描述
///
public string F_ParamDes { get; set; }
///
/// 状态
///
public int? F_State { get; set; }
///
/// 添加时间
///
public DateTime? F_CreateOn { get; set; }
///
/// 添加工号
///
public string F_CreateBy { 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; }
}
}