clsintend.cs
来自「房屋中介系统是一款非常实用的房屋中介软件。使用该软件」· CS 代码 · 共 73 行
CS
73 行
using System;
using System.Collections.Generic;
using System.Text;
namespace houseAgency.mothedCls
{
class clsIntend
{
string intent_ID;
string User_ID;
string huose_typeID;
string house_seatID;
string house_fitmentID;
string house_floorID;
string house_favorID;
string house_mothedID;
float house_price;
string house_area;
public string tend_id
{
get { return intent_ID; }
set { intent_ID = value; }
}
public string u_id
{
get { return User_ID; }
set { User_ID = value; }
}
public string ty_id
{
get { return huose_typeID; }
set { huose_typeID = value; }
}
public string se_ID
{
get { return house_seatID; }
set { house_seatID = value; }
}
public string fi_ID
{
get { return house_fitmentID; }
set { house_fitmentID = value; }
}
public string fl_ID
{
get { return house_floorID; }
set { house_floorID = value; }
}
public string fa_ID
{
get { return house_favorID; }
set { house_favorID = value; }
}
public string mo_ID
{
get { return house_mothedID; }
set { house_mothedID = value; }
}
public float price
{
get { return house_price;}
set { house_price = value; }
}
public string area
{
get { return house_area; }
set { house_area = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?