recordclass.cs
来自「C#通过读取.txt文档进行运行的小系统」· CS 代码 · 共 59 行
CS
59 行
using System;
using System.Collections.Generic;
using System.Text;
namespace BikeRentSystem
{
[Serializable]
public class RecordClass
{
public RecordClass()
{
lieNum = 0;
mounNum = 0;
runNum = 0;
collapseNum = 0;
doubleNum = 0;
student = "unchecked";
teacher = "unchecked";
clintMen = "unchecked";
}
//客户信息
public string NO;
public string ID;
public string name;
public string phone;
//车型信息
public int lieNum;
public int mounNum;
public int runNum;
public int collapseNum;
public int doubleNum;
//租用形式
public string student;
public string teacher;
public string group;
public string clintMen;
//信用方式
public string honerWayID;
public string honerWayStudent;
public string honerWayDriver;
public string honerWayElse;
//押金数目
public int depesit;
//租车时间
public DateTime time;
//是否属于团体租车
public bool border;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?