clsgov.cs

来自「房屋中介系统是一款非常实用的房屋中介软件。使用该软件」· CS 代码 · 共 31 行

CS
31
字号
using System;
using System.Collections.Generic;
using System.Text;
namespace houseAgency.mothedCls
{
    class clsgov
    {
        private string gov_id=null;
        private string gov_name=null;
        private string gov_remark = null;

        public string id
        {
            get { return gov_id; }
            set { gov_id = value; }
        }

        public string name
        {
            get { return gov_name; }
            set { gov_name = value; }
        }

        public string remark
        {
            get { return gov_remark; }
            set { gov_remark = value; }
        }
    }
}

⌨️ 快捷键说明

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