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

📄 onduty.h

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

#if !defined(AFX_ONDUTY_H__21E49D18_A8EC_4682_A28E_A131F3AFA9F6__INCLUDED_)
#define AFX_ONDUTY_H__21E49D18_A8EC_4682_A28E_A131F3AFA9F6__INCLUDED_

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

class COnduty  
{
public:
	COnduty();
	virtual ~COnduty();

private:
	COleDateTime beginDate;
	COleDateTime beginTime;
	COleDateTime endDate;
	COleDateTime endTime;
	CString	watcher;
	CString duty;
	CString events;
	CString remark;

public:
	COleDateTime GetBeginDate();
	COleDateTime GetBeginTime();
	COleDateTime GetEndDate();
	COleDateTime GetEndTime();
	CString	GetWatcher();
	CString GetDuty();
	CString GetEvents();
	CString GetRemark();


	void SetBeginDate(COleDateTime vBeginDate);
	void SetBeginTime(COleDateTime vBeginTime);
	void SetEndDate(COleDateTime vEndDate);
	void SetEndTime(COleDateTime vEndTime);
	void SetWatcher(CString	vWatcher);
	void SetDuty(CString vDuty);
	void SetEvents(CString vEvents);
	void SetRemark(CString vRemark);

	void sqlInsert();
	void sqlUpdate(COleDateTime vBeginDate);
	void sqlDelete(COleDateTime vBeginDate);
	void GetData(COleDateTime vBeginDate);


};

#endif // !defined(AFX_ONDUTY_H__21E49D18_A8EC_4682_A28E_A131F3AFA9F6__INCLUDED_)

⌨️ 快捷键说明

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