entity_gather_operationkind.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_OperationKind 。(属性说明自动提取数据库字段的描述信息)
    /// </summary>
    public class Gather_OperationKind
    {
        public Gather_OperationKind()
        { }
        #region Model
        private int _operationid;
        private string _operationkind;
        /// <summary>
        /// 
        /// </summary>
        public int OperationId
        {
            set { _operationid = value; }
            get { return _operationid; }
        }
        /// <summary>
        /// 
        /// </summary>
        public string OperationKind
        {
            set { _operationkind = value; }
            get { return _operationkind; }
        }
        #endregion Model

    }
}

⌨️ 快捷键说明

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