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

📄 registration.h

📁 医院管理系统在CV++条件下的完整性开发>>>
💻 H
字号:
// Registration.h: interface for the CRegistration class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_REGISTRATION_H__AFBB26E0_4283_4021_BF2A_0F9E881C4B7F__INCLUDED_)
#define AFX_REGISTRATION_H__AFBB26E0_4283_4021_BF2A_0F9E881C4B7F__INCLUDED_

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

class CRegistration  
{
private:
	int RegId;
	int PatId;
	int DocId;
	CString UserName;
	CString RegDate;

public:
	CRegistration();
	virtual ~CRegistration();

	void SetRegId(int iRId);
	int GetRegId();
	void SetPatId(int iPId);
	int GetPatId();
	void SetDocId(int iDId);
	int GetDocId();
	void SetUserName(CString cName);
	CString GetUserName();
	void SetRegDate(CString cDate);
	CString GetRegDate();
public:
	// 插入新记录并返回表中最大编号-RegId
	int GetMaxId();
	// 更改门诊收费信息
	void sql_Update(CString cRId);
	// 删除门诊收费信息
	void sql_Delete(CString cRId);
};

#endif // !defined(AFX_REGISTRATION_H__AFBB26E0_4283_4021_BF2A_0F9E881C4B7F__INCLUDED_)

⌨️ 快捷键说明

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