⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recordclass.cs

📁 C#通过读取.txt文档进行运行的小系统
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -