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

📄 borrow.h

📁 java 大作业 《处方跟踪系统》源代码 gui界面
💻 H
字号:
// Borrow.h: interface for the CBorrow class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_BORROW_H__35E323DD_D513_4A3B_BF24_7F4A20BE2830__INCLUDED_)
#define AFX_BORROW_H__35E323DD_D513_4A3B_BF24_7F4A20BE2830__INCLUDED_

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

class CBorrow  
{
public:
	void sql_getTime();
	CString GetKeepTime();
	void SetKeepTime(CString vKeepTime);
	CString GetDateB();
	void SetDateB(CString vDateB);

	CString GetTitle();
	void SetTitle(CString vTitle);
	CString GetNameReader();
	void SetNameReader(CString vNameReader);
	CString GetISBN();
	void SetISBN(CString vISBN);
	CString GetIDReader();
	void SetIDReader(CString vIDReader);
	CBorrow();
	virtual ~CBorrow();
    void GetData(CString vISBN);
	void sql_delete(CString vISBN);
	void sql_getKeepTime();
	void sql_insert();
private:
	CString KeepTime;
	CString DateB;
	CString ISBN;
	CString Title;
	CString NameReader;
	CString IDReader;
};

#endif // !defined(AFX_BORROW_H__35E323DD_D513_4A3B_BF24_7F4A20BE2830__INCLUDED_)

⌨️ 快捷键说明

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