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

📄 meeting.h

📁 这是一个企业办公管理系统。实现了文件的制作、修改、传递、、保存、销毁、存档等一系列操作。为windows系统认证模式
💻 H
字号:
// Meeting.h: interface for the CMeeting class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MEETING_H__9B87269B_5AF4_44C8_A076_67BD6B9480D1__INCLUDED_)
#define AFX_MEETING_H__9B87269B_5AF4_44C8_A076_67BD6B9480D1__INCLUDED_

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

class CMeeting  
{
public:
	CMeeting();
	virtual ~CMeeting();
private:
	CString name;
	COleDateTime meetingDate;
	CString location;
	COleDateTime beginTime;
	COleDateTime endTime;
	CString president;
	int num;
	CString subject;
	CString content;
	CString remark;

public:
	CString GetName();
	COleDateTime GetMeetingDate();
	CString GetLocation();
	COleDateTime GetBeginTime();
	COleDateTime GetEndTime();
	CString GetPresident();
	int GetNum();
	CString GetSubject();
	CString GetContent();
	CString GetRemark();
	
	void SetName(CString vName);
	void SetMeetingDate(COleDateTime vMeetingDate);
	void SetLocation(CString vLocation);
	void SetBeginTime(COleDateTime vBeginTime);
	void SetEndTime(COleDateTime vEndTime);
	void SetPresident(CString vPresident);
	void SetNum(int vNum);
	void SetSubject(CString vSubject);
	void SetContent(CString vContent);
	void SetRemark(CString vRemark);

	void sqlInsert();
	void sqlDelete(CString vSubject);
	void sqlUpdate(CString vSubject);
	void GetData(CString vSubject);

};

#endif // !defined(AFX_MEETING_H__9B87269B_5AF4_44C8_A076_67BD6B9480D1__INCLUDED_)

⌨️ 快捷键说明

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