destine.cs
来自「实现房产销售的房屋管理 客户管理 并且在客户管理中实现了对预定客户和已购房客户的」· CS 代码 · 共 74 行
CS
74 行
using System;
namespace HouseBE
{
/// <summary>
/// Destine 的摘要说明。
/// </summary>
public class Destine
{
private int _DestineID;
private string _DestineDate;
private int _Operator;
private int _NotSellID;
private int _ClientID;
public int DestineID
{
set
{
this._DestineID=value;
}
get
{
return this._DestineID;
}
}
public string DestineDate
{
set
{
this._DestineDate=value;
}
get
{
return this._DestineDate;
}
}
public int Operator
{
set
{
this._Operator=value;
}
get
{
return this._Operator;
}
}
public int NotSellID
{
set
{
this._NotSellID=value;
}
get
{
return this._NotSellID;
}
}
public int ClientID
{
set
{
this._ClientID=value;
}
get
{
return this._ClientID;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?