using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LYFZ.WeixinServiceDate.Model { public class Model_SystemConfigure { public Model_SystemConfigure() { } #region Model private int _id; private string _sconfig_code; private string _sconfig_name; private string _sconfig_value; private bool _sconfig_isenabled; private string _sconfig_remark; private string _sconfig_type; private int _sconfig_order; private DateTime _sconfig_createdatetime; private string _sconfig_createname; /// /// ID /// public int ID { set { _id = value; } get { return _id; } } /// /// 配置项代码 /// public string Sconfig_Code { set { _sconfig_code = value; } get { return _sconfig_code; } } /// /// 配置项名称 /// public string Sconfig_Name { set { _sconfig_name = value; } get { return _sconfig_name; } } /// /// 配置项值 /// public string Sconfig_Value { set { _sconfig_value = value; } get { return _sconfig_value; } } /// /// 是否启用配置项 0为不启用 1为启用 /// public bool Sconfig_IsEnabled { set { _sconfig_isenabled = value; } get { return _sconfig_isenabled; } } /// /// 配置项描述 /// public string Sconfig_Remark { set { _sconfig_remark = value; } get { return _sconfig_remark; } } /// /// 配置项类型 /// public string Sconfig_Type { set { _sconfig_type = value; } get { return _sconfig_type; } } /// /// 排序 /// public int Sconfig_Order { set { _sconfig_order = value; } get { return _sconfig_order; } } /// /// 录入时间 /// public DateTime Sconfig_CreateDatetime { set { _sconfig_createdatetime = value; } get { return _sconfig_createdatetime; } } /// /// 录入人 /// public string Sconfig_CreateName { set { _sconfig_createname = value; } get { return _sconfig_createname; } } #endregion Model } }