国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

酒店管理系統(tǒng)(Java實(shí)現(xiàn))

這篇具有很好參考價(jià)值的文章主要介紹了酒店管理系統(tǒng)(Java實(shí)現(xiàn))。希望對(duì)大家有所幫助。如果存在錯(cuò)誤或未考慮完全的地方,請(qǐng)大家不吝賜教,您也可以點(diǎn)擊"舉報(bào)違法"按鈕提交疑問(wèn)。

Java課程作業(yè),酒店管理系統(tǒng)由前臺(tái)系統(tǒng)實(shí)現(xiàn)主要功能,具備以下功能:

酒店管理系統(tǒng)(Java實(shí)現(xiàn))

目錄

?Room

Customer

CheckList

Hotel

HotelSystem

?Room

Room類,包含了房間號(hào),房間類型,房間狀態(tài)(住宿還是空閑),房間價(jià)格,以及入住人信息。

//Room 類
import java.util.Objects;

public class Room{
  private int roomnumber;
  public String type;
  private int status;//房間狀態(tài),1:入??;0:空閑;-1:被預(yù)訂
  private int price;
  public Customer customerInfo = new Customer();
  public Room() {
  }

  public Room(int roomnumber, String type, int status,int price) {
      this.roomnumber = roomnumber;
      this.type = type;
      this.status = status;
      this.price = price ;
  }

  public int getRoomnumber() {return roomnumber;}
  public void setRoomnumber(int roomnumber) {this.roomnumber = roomnumber;}

  public String  getType() {return type;}
  public void setType(String type) {this.type = type;}

  public int getStatus() {return status;}
  public void setStatus(int status) {this.status = status;}
  public int getPrice() {return price;}
  public void setPrice(int price) {this.price = price;}
  
//重寫toString方法,可以轉(zhuǎn)換成輸出房間信息
	@Override
  public String toString() {
		String roominfo = new String();
		switch(status) 
		{
		case 0 :
			roominfo = "ROOM信息{"+roomnumber+","+type+","+"空閑"+"}";
			break;
		case 1:
			roominfo = "ROOM信息{"+roomnumber+","+type+","+"已滿"+"}";
			break;
		case -1:
			roominfo = "ROOM信息{"+roomnumber+","+type+","+"已預(yù)訂"+"}";
			break;
		}
	    return roominfo;
	}	
  
	@Override
  public boolean equals(Object o) {
	    if (this == o) return true;
	    if (o == null || getClass() != o.getClass()) return false;
	    Room room = (Room) o;
	    return roomnumber== room.roomnumber && status == room.status && Objects.equals(type, room.type);
	}

  public int hashCode() {
	    return Objects.hash(roomnumber, status, type,price);

}
}

Customer

Customer類,用于實(shí)現(xiàn)顧客屬性。

public class Customer {
	public String cname;
	public int age;
	public String cid;
	public String phone;
	public int pay;	
	public int getPay() {return pay;}
	public void setPay(int pay) {this.pay = pay;}
	public int getAge() {return age;}
	public void setAge(int age) {this.age = age;}
	public String getName() {return cname;}
	public void setName(String name) {this.cname = name;}
	public String getPhone() {return phone;}
	public void setPhone(String phone) {this.phone = phone;}
	public String getId() {return cid;}
	public void setId(String id) {this.cid = id;}
	
	public void customer(String customerName, int customerAge, String customerId, String customerphone) 
		{
			this.cname = customerName;
			this.age = customerAge;
			this.cid = customerId;
			this.phone = customerphone;
		}



}

CheckList

這個(gè)是老師讓改的一部分,對(duì)于查詢記錄的類

//記錄類
public class CheckList 
{
	private Room room;
	public Date startTime;
	public CheckList(Room room,Date startTime) 
	{
		this.room = room;
		this.startTime =startTime;
	}
	public Room getRoom() 
	{
		return room;
	}
	public void setRoom(Room room) 
	{
		this.room = room;
	}
	public Date getStartTime() 
	{
		return startTime;
	}
	public void setStartTime(Date startTime) 
	{
	this.startTime = startTime;
	}
}
//入住記錄類
class CheckInList extends CheckList
{

	public CheckInList(Room room, Date startTime) {
		super(room, startTime);
		
	}
	}
//歷史記錄類
class CheckOutList extends CheckList
{
	public Date endTime;
	public CheckOutList(Room room,Date startTime,Date endTime)
	{
		super(room,startTime);
		this.endTime = endTime;
	}
	public Date getEndTime() 
	{
		return startTime;
	}
	public void setEndTime(Date endTime) 
	{
	this.endTime = endTime;
	}
}

Hotel

主要功能酒店類,實(shí)現(xiàn)以上菜單內(nèi)的所有功能

import java.text.SimpleDateFormat;
import java.util.*;


public class Hotel {

	private Room[][] room;
	public ArrayList<CheckList> checkList = new ArrayList<CheckList>();
	public ArrayList<CheckOutList> historyList = new ArrayList<CheckOutList>();
	public static Scanner sc = new Scanner(System.in);
	public static SimpleDateFormat ft = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
	
	public Hotel() 
	{
        room = new Room[5][10];
 
        for(int i=0;i < room.length;i++){
            for(int j =0 ;j < room[i].length;j++){
                if(i==0){
                    room[i][j] = new Room((i+1)*100+j+1,"標(biāo)準(zhǔn)間",0,100);
                }else if(i==1){  
                    room[i][j] = new Room((i+1)*100+j+1,"單人間",0,75);
                }else if(i==2){ 
                    room[i][j] = new Room((i+1)*100+j+1,"膠囊倉(cāng)",0,80);
                }else if(i==3){ 
                    room[i][j] = new Room((i+1)*100+j+1,"總統(tǒng)套房",0,500);
                }else if(i==4){ 
                    room[i][j] = new Room((i+1)*100+j+1,"夜景豪華套間",0,800);}    
            }
        }
	}
//打印所有房間信息
	public void printroominfo()
{
	System.out.println("房間狀態(tài)說(shuō)明:1:入?。?:空閑;-1:被預(yù)訂");	
    for (int i=0;i< room.length;i++)
    {
        for (int j=0;j<room[i].length;j++)
        {
            System.out.print(room[i][j]);
        }
        System.out.println();
    }
}
	
//查詢房間狀態(tài)
	public void printRoomstatus(int roomnumber)
	{
		if((room[roomnumber/100-1][roomnumber%100-1].getStatus())==-1)
			System.out.print(roomnumber +room[roomnumber/100-1][roomnumber%100-1].getType()+"  被預(yù)定" );
		else if ((room[roomnumber/100-1][roomnumber%100-1].getStatus())==0)
			System.out.print(roomnumber +room[roomnumber/100-1][roomnumber%100-1].getType()+"  空閑");
		else if ((room[roomnumber/100-1][roomnumber%100-1].getStatus())==1)
			System.out.print(roomnumber +room[roomnumber/100-1][roomnumber%100-1].getType()+"  已入住");
	}
	
//預(yù)訂房間/取消預(yù)定
	public void reserve(int ifOrnot,int roomnumber)
	{	if (ifOrnot == 1)
		{
		    if( (room[roomnumber/100-1][roomnumber%100-1].getStatus())==-1)
		    {
		        System.out.println("預(yù)定失敗,該房間已被其他顧客預(yù)訂!");
		    }
		    else 
		    {if((room[roomnumber/100-1][roomnumber%100-1].getStatus())==1) 
		    {System.out.println("預(yù)定失敗,該房間已被入?。?);}
		    else
		    	{
		    	System.out.println("請(qǐng)輸入顧客的姓名:");
		    	String customerName = sc.next();
		    	room[roomnumber/100-1][roomnumber%100-1].customerInfo.setName(customerName);
		    	System.out.println("請(qǐng)輸入顧客的年齡:");
		    	int customerAge= sc.nextInt();
		    	room[roomnumber/100-1][roomnumber%100-1].customerInfo.setAge(customerAge);
		    	System.out.println("請(qǐng)輸入顧客的身份證號(hào):");
		    	String customerId= sc.next();
		    	room[roomnumber/100-1][roomnumber%100-1].customerInfo.setId(customerId);
		    	System.out.println("請(qǐng)輸入顧客的電話號(hào)碼:");
		    	String customerPhone= sc.next();
		    	room[roomnumber/100-1][roomnumber%100-1].customerInfo.setPhone(customerPhone);
		    	room[roomnumber/100-1][roomnumber%100-1].setStatus(-1);
		        System.out.println("預(yù)訂"+roomnumber+"成功!");}
		    	}
		}
	else
		{		    
		if( (room[roomnumber/100-1][roomnumber%100-1].getStatus())==-1)
	    {
			room[roomnumber/100-1][roomnumber%100-1].setStatus(0);
			System.out.println("取消預(yù)訂"+roomnumber+"成功!");
	    }
		else
			System.out.println("錯(cuò)誤!該房間已被使用或尚未預(yù)訂!詳情請(qǐng)查詢房間狀態(tài)。");
		
		}
	}
//入住酒店
	public void checkIn(int reserveIf,int roomnumber)
	{
	    if (reserveIf == 1)
	    {	room[roomnumber/100-1][roomnumber%100-1].setStatus(1);
	    Date startTime = new Date();
    	CheckList list = new CheckList(room[roomnumber/100-1][roomnumber%100-1],startTime);
    	checkList.add(list);
    	//初始價(jià)格賦值
    	room[roomnumber/100-1][roomnumber%100-1].customerInfo.setPay(room[roomnumber/100-1][roomnumber%100-1].getPrice());
        	System.out.println("入住"+roomnumber+"成功!");
	    }
		else
		{
			if( (room[roomnumber/100-1][roomnumber%100-1].getStatus())==-1)
		    {
		        System.out.println("該房間已被其他顧客預(yù)訂!");
		    }
		    else 
			    {if((room[roomnumber/100-1][roomnumber%100-1].getStatus())==1) 
			    {System.out.println("該房間已被其他顧客入??!");}
		    else
		    	{
		    	System.out.println("請(qǐng)輸入顧客的姓名:");
		    	String customerName = sc.next();
		    	System.out.println("請(qǐng)輸入顧客的年齡:");
		    	int customerAge= sc.nextInt();
		    	System.out.println("請(qǐng)輸入顧客的身份證號(hào):");
		    	String customerId= sc.next();
		    	System.out.println("請(qǐng)輸入顧客的電話號(hào)碼:");
		    	String customerPhone= sc.next();
		    	room[roomnumber/100-1][roomnumber%100-1].customerInfo.customer(customerName, customerAge, customerId, customerPhone);
		    	
		    	room[roomnumber/100-1][roomnumber%100-1].setStatus(1);
		    	//記錄入住信息
		    	Date startTime = new Date();
		    	CheckList list = new CheckList(room[roomnumber/100-1][roomnumber%100-1],startTime);
		    	checkList.add(list);
		    	//初始價(jià)格賦值
		    	room[roomnumber/100-1][roomnumber%100-1].customerInfo.setPay(room[roomnumber/100-1][roomnumber%100-1].getPrice());
		    	
		        System.out.println("入住"+roomnumber+"成功!");}
		    	}
		}
	}
//退訂房間
	public void checkOut(int roomnumber)
	{
		Date startTime = new Date();
		Date endTime = new Date();
		int j = 0;
	    if( (room[roomnumber/100-1][roomnumber%100-1].getStatus())==0)
	    {
	        System.out.println("該房間已為空,請(qǐng)勿重復(fù)退訂");
	    }
	    else {
	    	System.out.println("入住人:"+room[roomnumber/100-1][roomnumber%100-1].customerInfo.cname);
	    	for( ;j < checkList.size();j++)
	    	{
	    		if(checkList.get(j).getRoom().getRoomnumber() == roomnumber)
	    		{
	    			startTime = checkList.get(j).getStartTime();
	    			continue;
	    		}
	    	}
	    	//計(jì)算費(fèi)用
	    	int discount = discount(startTime,endTime);
	    	room[roomnumber/100-1][roomnumber%100-1].customerInfo.setPay(discount*room[roomnumber/100-1][roomnumber%100-1].customerInfo.getPay());
	    	System.out.println("您的費(fèi)用為"+room[roomnumber/100-1][roomnumber%100-1].customerInfo.getPay());
	    	//記錄
	    	checkList.remove(j-1);
	    	CheckOutList b = new CheckOutList(room[roomnumber/100-1][roomnumber%100-1],startTime,endTime);
	    	historyList.add(b);
	    	
	        room[roomnumber/100-1][roomnumber%100-1].setStatus(1);
	        System.out.println("退訂"+roomnumber+"成功!");
	
	    }
	
	}
//查看入住記錄
	public void showCheckList() 
	{  
		if(checkList.size()!=0)
		{
			System.out.println("酒店的入住記錄如下:");
			for(int i = 0;i < checkList.size();i++) {
				System.out.println((i+1)+" 房間號(hào):"+checkList.get(i).getRoom().getRoomnumber()+" 類型:"+checkList.get(i).getRoom().getType()+" 入住旅客:"+checkList.get(i).getRoom().customerInfo.cname+
						"身份證:"+checkList.get(i).getRoom().customerInfo.cid+" 入住入住"+ft.format(checkList.get(i).getStartTime()));
		}
		}
		else
		{
			System.out.println("暫時(shí)還無(wú)入住記錄!");
		}
	}

//查看歷史記錄
	public void showHistoryList() 
	{  
		if(historyList.size()!=0)
		{
			System.out.println("酒店的歷史記錄如下:");
			for(int i = 0;i < historyList.size();i++) {
				System.out.println((i+1)+" 房間號(hào):"+historyList.get(i).getRoom().getRoomnumber()+" 類型:"+historyList.get(i).getRoom().getType()+" 入住旅客:"+historyList.get(i).getRoom().customerInfo.cname+
						"身份證:"+historyList.get(i).getRoom().customerInfo.cid+" 入住時(shí)間:"+ft.format(historyList.get(i).getStartTime())+" 離店時(shí)間:"+ft.format(historyList.get(i).getEndTime()));
		}
		}
		else
		{
			System.out.println("暫時(shí)還無(wú)歷史記錄!");
		}
	}
//查看優(yōu)惠政策
	public void printDiscount() 
	{
		System.out.println("--------------優(yōu)惠政策-------------");
		System.out.println("1.五一小長(zhǎng)假,國(guó)慶長(zhǎng)假期間入住打九折");
		System.out.println("2.周年慶期間(7.10-7.15)住宿打八折");
		System.out.println("3.清明,元旦傳統(tǒng)中國(guó)節(jié)日當(dāng)天入住打九折");
		System.out.println("4.連續(xù)五天以上入住打九折");
		System.out.println("5.以上折扣不疊加,以最大折扣值為準(zhǔn)");	
	}
	
//查詢旅客信息
	public void checkCustomerInfo()
	{
		System.out.println("請(qǐng)輸入旅客姓名:");
		int i,j = 0;
		String name = sc.next();
		for(i = 0; i< room.length; i++)
		{
			for(j = 0;j< room.length; j++)
			{
				if(name.equals(room[i][j].customerInfo.cname)){
					System.out.println("姓名  \t  年齡  \t 電話  \t 身份證號(hào)  \t 房間類型   \t 收費(fèi)");
					System.out.println( room[i][j].customerInfo.cname + "\t" + room[i][j].customerInfo.age + "\t" + room[i][j].customerInfo.phone + "\t" + room[i][j].customerInfo.cid + "\t\t\t"  + room[i][j].type + "\t" + room[i][j].customerInfo.pay);	
					System.out.println("***查詢完成!***");				
			}
		}
		}
		if(i == room.length){
			System.out.println("不存在其旅客!");
		}
	}
//優(yōu)惠函數(shù)
	@SuppressWarnings("deprecation")
	public int discount(Date startTime,Date endTime) {  
		long day = (endTime.getTime()-startTime.getTime())/(1000 * 60 * 60 * 24);
		
		int month1 = startTime.getMonth();
		int day1 = startTime.getDay();
		
		if (startTime.getDay() == endTime.getDay() || startTime.getMonth()== endTime.getMonth())
		{	day = 1;}
		
		if(month1 == 7 && day1 >= 10 &&day1 <= 15)
		{
			return (int) (day*0.8);
		}
		else if((month1 == 10 && day1 >= 1 &&day1 <= 7)||(month1 == 5 && day1 >= 1 &&day1 <= 7)||(month1 == 4 && day1 == 1 )||(month1 == 1 && day1 == 1 ))
		{
			return (int) (day*0.9);
		}
		else if(day >= 5)
		{
			return (int) (day*0.9);
		}
		else
			return (int)day;
}

}

HotelSystem

菜單即前臺(tái)系統(tǒng)

import java.util.*;

public class HotelSystem 
{
	public static Scanner sc = new Scanner(System.in);
	public static void menu() 
	{
		System.out.println("歡迎使用酒店前臺(tái)管理系統(tǒng)!");
		System.out.println("1.查看所有房間信息");
		System.out.println("2.查詢房間狀態(tài)");
		System.out.println("3.預(yù)訂房間/取消預(yù)定");
		System.out.println("4.辦理入住");
		System.out.println("5.結(jié)算賬單,退訂房間");
		System.out.println("6.查詢?nèi)胱∮涗?);
		System.out.println("7.查詢歷史記錄");
		System.out.println("8.查詢折扣政策");
		System.out.println("9.查詢旅客信息");
		System.out.println("0.退出系統(tǒng)");
		System.out.println("請(qǐng)輸入:");	
	}
	public static void main(String[] args) 
	{
		Hotel hotel = new Hotel();
		int number = -1;
		do {
			menu();
			int choice = sc.nextInt();
			if (choice == 0)
			{
				number=choice;
				System.out.println("您已成功退出系統(tǒng)!");
				continue;
			}
			switch (choice)
			{
			case 1:
				hotel.printroominfo();
				break;
			case 2:
				System.out.println("輸入想要查詢的房間號(hào):");
				int roomnumber2 = sc.nextInt();
				hotel.printRoomstatus(roomnumber2);
				break;
			case 3:
				System.out.println("取消預(yù)定or預(yù)定房間?1.預(yù)定房間 2.取消預(yù)定");
				int ifOrnot = sc.nextInt();
				System.out.println("輸入房間號(hào):");
				int roomnumber3 = sc.nextInt();
				hotel.reserve(ifOrnot,roomnumber3);
				break;
			case 4:
				System.out.println("是否具有預(yù)訂?1.是 2.否");
				int reserveIf = sc.nextInt();
				System.out.println("輸入房間號(hào):");
				int roomnumber4 = sc.nextInt();
				hotel.checkIn(reserveIf,roomnumber4);
				break;
			case 5:
				System.out.println("輸入房間號(hào):");
				int roomnumber5 = sc.nextInt();
				hotel.checkOut(roomnumber5);
				break;
			case 6:
				hotel.showCheckList();
				break;
			case 7:
				hotel.showHistoryList();
				break;
			case 8:
				hotel.printDiscount();
				break;
			case 9:
				hotel.checkCustomerInfo();
				break;
			default:
				System.out.println("輸入錯(cuò)誤,請(qǐng)重新輸入!");
				break;
			}
		} while(number != 0);
		sc.close();
	}

}

最近比較忙,后續(xù)再將反思發(fā)出來(lái)。文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-512955.html

到了這里,關(guān)于酒店管理系統(tǒng)(Java實(shí)現(xiàn))的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來(lái)自互聯(lián)網(wǎng)用戶投稿,該文觀點(diǎn)僅代表作者本人,不代表本站立場(chǎng)。本站僅提供信息存儲(chǔ)空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請(qǐng)注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實(shí)不符,請(qǐng)點(diǎn)擊違法舉報(bào)進(jìn)行投訴反饋,一經(jīng)查實(shí),立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費(fèi)用

相關(guān)文章

  • 39基于java的酒店管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn)

    本章節(jié)給大家?guī)?lái)一個(gè)基于java的酒店管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn),可用于酒店訂票系統(tǒng),酒店預(yù)訂系統(tǒng),酒店信息管理系統(tǒng),app訂房系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn); 隨著現(xiàn)在網(wǎng)絡(luò)的快速發(fā)展,網(wǎng)上管理系統(tǒng)也逐漸快速發(fā)展起來(lái),網(wǎng)上管理模式很快融入到了許多企業(yè)的眼球之中,隨之就產(chǎn)生了“

    2024年02月07日
    瀏覽(24)
  • 基于Java+Spring+mybatis+vue+element實(shí)現(xiàn)酒店管理系統(tǒng)

    基于Java+Spring+mybatis+vue+element實(shí)現(xiàn)酒店管理系統(tǒng)

    博主介紹 : ? 全網(wǎng)粉絲20W+,csdn特邀作者、博客專家、CSDN新星計(jì)劃導(dǎo)師、java領(lǐng)域優(yōu)質(zhì)創(chuàng)作者,CSDN博客之星TOP100、掘金/華為云/阿里云/InfoQ等平臺(tái)優(yōu)質(zhì)作者、專注于Java技術(shù)領(lǐng)域和畢業(yè)設(shè)計(jì) ? ??? 文末獲取聯(lián)系 ?? ?? 精彩專欄推薦???????????????? java項(xiàng)目精品實(shí)戰(zhàn)案例

    2024年04月13日
    瀏覽(30)
  • 基于Java酒店預(yù)約及管理系統(tǒng)設(shè)計(jì)實(shí)現(xiàn)(源碼+lw+部署文檔+講解等)

    基于Java酒店預(yù)約及管理系統(tǒng)設(shè)計(jì)實(shí)現(xiàn)(源碼+lw+部署文檔+講解等)

    博主介紹 : ? 全網(wǎng)粉絲30W+,csdn特邀作者、博客專家、CSDN新星計(jì)劃導(dǎo)師、Java領(lǐng)域優(yōu)質(zhì)創(chuàng)作者,博客之星、掘金/華為云/阿里云/InfoQ等平臺(tái)優(yōu)質(zhì)作者、專注于Java技術(shù)領(lǐng)域和畢業(yè)項(xiàng)目實(shí)戰(zhàn) ? ?? 文末獲取源碼聯(lián)系 ?? ?????精彩專欄 推薦訂閱 ?????不然下次找不到喲 2022-2024年

    2024年02月07日
    瀏覽(14)
  • 86基于java的酒店客房管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn)(配套lun文,可參考做畢業(yè)設(shè)計(jì))

    本章節(jié)給大家?guī)?lái)一個(gè)基于java酒店客房管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn),可適用于java酒店管理系統(tǒng),客房系統(tǒng),酒店客房系統(tǒng),酒店保潔系統(tǒng),酒店打掃系統(tǒng),酒店客房系統(tǒng),客房酒店管理系統(tǒng),酒店房間系統(tǒng),酒店房間管理系統(tǒng),酒店房間打掃,酒店房間保潔系統(tǒng),房間酒店系統(tǒng)等等

    2024年02月08日
    瀏覽(17)
  • 基于Python的簡(jiǎn)易宿舍管理系統(tǒng)(課程作業(yè)附課程小論文)

    本文所有基礎(chǔ)知識(shí)可通過(guò)此鏈接進(jìn)行訓(xùn)練點(diǎn)我開練 本次為三個(gè)月學(xué)校學(xué)習(xí)的課程作業(yè),僅用到Python入門知識(shí),簡(jiǎn)旦易懂。 涉及到的主要有:列表,字典,函數(shù)定義調(diào)用,循環(huán)結(jié)構(gòu)等入門知識(shí) 可滿足大部分學(xué)校此課的基本要求,但添加的功能較少,可在此基礎(chǔ)上進(jìn)行二創(chuàng),歡

    2024年02月11日
    瀏覽(22)
  • 【python課程作業(yè)】python學(xué)生成績(jī)管理系統(tǒng)

    功能介紹 平臺(tái)采用B/S結(jié)構(gòu),后端采用主流的Python語(yǔ)言進(jìn)行開發(fā),前端采用主流的Vue.js進(jìn)行開發(fā)。給舍友做的課程作業(yè)。 功能包括:成績(jī)管理、學(xué)生管理、課程管理、班級(jí)管理、用戶管理、日志管理、系統(tǒng)信息模塊。 源碼地址 https://github.com/geeeeeeeek/python_score 演示地址 http:/

    2024年03月13日
    瀏覽(26)
  • 操作系統(tǒng)課程設(shè)計(jì)(作業(yè)調(diào)度、內(nèi)存管理、進(jìn)程調(diào)度、進(jìn)程阻塞等)

    操作系統(tǒng)課程設(shè)計(jì)(作業(yè)調(diào)度、內(nèi)存管理、進(jìn)程調(diào)度、進(jìn)程阻塞等)

    資源下載: https://download.csdn.net/download/fufuyfu/85811450 操作系統(tǒng)是計(jì)算機(jī)系統(tǒng)配置的基本軟件之一。它在整個(gè)計(jì)算機(jī)系統(tǒng)軟件中占有中心地位。其作用是對(duì)計(jì)算機(jī)系統(tǒng)進(jìn)行統(tǒng)一的調(diào)度和管理,提供各種強(qiáng)有力的系統(tǒng)服務(wù),為用戶創(chuàng)造既靈活又方便的使用環(huán)境。本課程是計(jì)算機(jī)及

    2024年02月03日
    瀏覽(28)
  • 《酒店管理系統(tǒng)》Java課設(shè)(供參考)

    《酒店管理系統(tǒng)》Java課設(shè)(供參考)

    酒店管理系統(tǒng)是伴隨著計(jì)算機(jī)的普及和IT產(chǎn)業(yè)的興起而出現(xiàn)的產(chǎn)物,該系統(tǒng)的產(chǎn)生為酒店的經(jīng)營(yíng)管理帶來(lái)了很大的便捷——為此而得到了大范圍的推廣和使用;本系統(tǒng)是根據(jù)當(dāng)前市場(chǎng)需求而設(shè)計(jì);能夠?qū)崿F(xiàn)酒店前臺(tái)與酒店各項(xiàng)管理制度的一體關(guān)聯(lián)與帶動(dòng)性;能實(shí)現(xiàn)酒店管理的

    2024年02月11日
    瀏覽(19)
  • Java項(xiàng)目:103SSM酒店管理系統(tǒng)

    Java項(xiàng)目:103SSM酒店管理系統(tǒng)

    博主主頁(yè):Java旅途 簡(jiǎn)介:分享計(jì)算機(jī)知識(shí)、學(xué)習(xí)路線、系統(tǒng)源碼及教程 文末獲取源碼 一、項(xiàng)目介紹 酒店管理系統(tǒng)基于Spring+SpringMVC+Mybatis開發(fā),功能簡(jiǎn)單,可用于畢設(shè)或者課程設(shè)計(jì)。 管理員功能如下: 房間管理 住客入住 住客管理 會(huì)員管理 登錄、修改密碼 數(shù)據(jù)導(dǎo)出 二、技

    2024年02月03日
    瀏覽(19)
  • 酒店客房管理系統(tǒng)|基于Springboot的酒店客房管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn)(源碼+數(shù)據(jù)庫(kù)+文檔)

    酒店客房管理系統(tǒng)|基于Springboot的酒店客房管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn)(源碼+數(shù)據(jù)庫(kù)+文檔)

    ?酒店客房管理系統(tǒng)目錄 目錄 ?基于Springboot的酒店客房管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn) ?一、前言? 二、系統(tǒng)功能設(shè)計(jì)? ?三、系統(tǒng)實(shí)現(xiàn)?? 1、 用戶信息管理 2、會(huì)員信息管理? 3、?客房信息管理 4、收藏客房管理 ??四、數(shù)據(jù)庫(kù)設(shè)計(jì)? 1、實(shí)體ER圖 ? ?五、核心代碼?? ??六、論文參考

    2024年03月14日
    瀏覽(22)

覺(jué)得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請(qǐng)作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包