clsfitment.cs

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

CS
32
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace houseAgency.mothedCls
{
    class clsFitment
    {
        private string house_fitmentID=null;
        private string fitment_name=null;
        private string fitment_remark = null;

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

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

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

⌨️ 快捷键说明

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