destine.cs
来自「酒店管理系统,您酒店物业管理的好帮手」· CS 代码 · 共 76 行
CS
76 行
using System;
using System.Collections.Generic;
using System.Text;
namespace Hotel.Entity
{
public class Destine
{
private int _destineID;
public int DestineID
{
get { return _destineID; }
set { _destineID = value; }
}
private string _dName;
public string DName
{
get { return _dName; }
set { _dName = value; }
}
private string _carNum;
public string CarNum
{
get { return _carNum; }
set { _carNum = value; }
}
private string _sex;
public string Sex
{
get { return _sex; }
set { _sex = value; }
}
private string _phone;
public string Phone
{
get { return _phone; }
set { _phone = value; }
}
private string _beginTime;
public string BeginTime
{
get { return _beginTime; }
set { _beginTime = value; }
}
private int _saveTime;
public int SaveTime
{
get { return _saveTime; }
set { _saveTime = value; }
}
private string _toTime;
public string ToTime
{
get { return _toTime; }
set { _toTime = value; }
}
private string _remark;
public string Remark
{
get { return _remark; }
set { _remark = value; }
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?