onduty.h

来自「这是一个企业办公管理系统。实现了文件的制作、修改、传递、、保存、销毁、存档等一系」· C头文件 代码 · 共 57 行

H
57
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?