entity_gather_basicconfig.cs

来自「c#的多线程采集源代码」· CS 代码 · 共 37 行

CS
37
字号
using System;
using System.Collections.Generic;
using System.Text;
//该代码下载自 :http://i.aspx1.com (asp.net学习社区)
namespace DataEntity
{
    /// <summary>
    /// 实体类Gather_BasicConfig 。(属性说明自动提取数据库字段的描述信息)
    /// </summary>
    public class Gather_BasicConfig
    {
        public Gather_BasicConfig()
        { }
        #region Model
        private int _configid;
        private string _configname;
        /// <summary>
        /// 基本配置编号
        /// </summary>
        public int ConfigId
        {
            set { _configid = value; }
            get { return _configid; }
        }
        /// <summary>
        /// 配置名称
        /// </summary>
        public string ConfigName
        {
            set { _configname = value; }
            get { return _configname; }
        }
        #endregion Model

    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?