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

📄 borrow.h

📁 图书管理系统可进行查询,添加,修改,等操作 用树行结构为图书馆进行图书分类
💻 H
字号:
// borrow.h: interface for the Cborrow class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BORROW_H__5688F5EC_951A_4564_AC1C_5FD60CE10BAE__INCLUDED_)
#define AFX_BORROW_H__5688F5EC_951A_4564_AC1C_5FD60CE10BAE__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class Cborrow  
{
  public:
	CString bookno;
	CString readno;
	int btime;
	CString htime;
	int money;
	
public:
	Cborrow();
	virtual ~Cborrow();
int Havename(CString str,CString str2);
void sql_insert();
void sql_update(CString bookno,CString readno);
void sql_delete(CString cDepId,CString str);
void GetData(CString cDepId,CString str);

};

#endif // !defined(AFX_BORROW_H__5688F5EC_951A_4564_AC1C_5FD60CE10BAE__INCLUDED_)

⌨️ 快捷键说明

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