roomtype.cs

来自「酒店管理系统,您酒店物业管理的好帮手」· CS 代码 · 共 61 行

CS
61
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace Hotel.Entity
{
    public class RoomType
    {
        private int _typeNum;

        public int TypeNum
        {
            get { return _typeNum; }
            set { _typeNum = value; }
        }
        private string _roomType;

        public string RoomType1
        {
            get { return _roomType; }
            set { _roomType = value; }
        }
        private float _priceDay;

        public float PriceDay
        {
            get { return _priceDay; }
            set { _priceDay = value; }
        }
        private float _halfDay;

        public float HalfDay
        {
            get { return _halfDay; }
            set { _halfDay = value; }
        }

        private float _priceHour;

        public float PriceHour
        {
            get { return _priceHour; }
            set { _priceHour = value; }
        }
        private float _deposit;

        public float Deposit
        {
            get { return _deposit; }
            set { _deposit = value; }
        }
        private int _bedCount;

        public int BedCount
        {
            get { return _bedCount; }
            set { _bedCount = value; }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?