123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- 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;
- /// <summary>
- /// ID
- /// </summary>
- public int ID
- {
- set { _id = value; }
- get { return _id; }
- }
- /// <summary>
- /// 配置项代码
- /// </summary>
- public string Sconfig_Code
- {
- set { _sconfig_code = value; }
- get { return _sconfig_code; }
- }
- /// <summary>
- /// 配置项名称
- /// </summary>
- public string Sconfig_Name
- {
- set { _sconfig_name = value; }
- get { return _sconfig_name; }
- }
- /// <summary>
- /// 配置项值
- /// </summary>
- public string Sconfig_Value
- {
- set { _sconfig_value = value; }
- get { return _sconfig_value; }
- }
- /// <summary>
- /// 是否启用配置项 0为不启用 1为启用
- /// </summary>
- public bool Sconfig_IsEnabled
- {
- set { _sconfig_isenabled = value; }
- get { return _sconfig_isenabled; }
- }
- /// <summary>
- /// 配置项描述
- /// </summary>
- public string Sconfig_Remark
- {
- set { _sconfig_remark = value; }
- get { return _sconfig_remark; }
- }
- /// <summary>
- /// 配置项类型
- /// </summary>
- public string Sconfig_Type
- {
- set { _sconfig_type = value; }
- get { return _sconfig_type; }
- }
- /// <summary>
- /// 排序
- /// </summary>
- public int Sconfig_Order
- {
- set { _sconfig_order = value; }
- get { return _sconfig_order; }
- }
- /// <summary>
- /// 录入时间
- /// </summary>
- public DateTime Sconfig_CreateDatetime
- {
- set { _sconfig_createdatetime = value; }
- get { return _sconfig_createdatetime; }
- }
- /// <summary>
- /// 录入人
- /// </summary>
- public string Sconfig_CreateName
- {
- set { _sconfig_createname = value; }
- get { return _sconfig_createname; }
- }
- #endregion Model
- }
- }
|