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

📄 clientreserve.h

📁 关于客户关系管理系统的源码
💻 H
字号:
// ClientReserve.h: interface for the CClientReserve class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_CLIENTRESERVE_H__8CDDF8F7_C330_41FB_9D1D_39D3C85EF5DF__INCLUDED_)
#define AFX_CLIENTRESERVE_H__8CDDF8F7_C330_41FB_9D1D_39D3C85EF5DF__INCLUDED_

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

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

public:
	CString GetClientReserveID();
	COleDateTime	GetReserveTime();
	CString	GetReserveStyle();
	CString	GetAttendStaff();
	CString	GetClientName();
	CString	GetClientStaff();
	CString	GetTelephone();
	CString	GetSubject();
	CString	GetAddress();
	CString	GetContent();
	int		GetRemindNum();
	BOOL	GetIs_everyDay();
	
	void SetClientReserveID(CString vClientReserveID);
	void SetReserveTime(COleDateTime vReserveTime);
	void SetReserveStyle(CString vReserveStyle);
	void SetAttendStaff(CString vAttendStaff);
	void SetClientName(CString vClientName);
	void SetClientStaff(CString vClientStaff);
	void SetTelephone(CString vTelephone);
	void SetSubject(CString vSubject);
	void SetAddress(CString vAddress);
	void SetContent(CString vContent);
	void SetRemindNum(int vRemindNum);
	void SetIs_everyDay(BOOL vIs_everyDay);

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

private:
	CString clientReserveID;
	COleDateTime	reserveTime;
	CString	reserveStyle;
	CString	attendStaff;
	CString	clientName;
	CString	clientStaff;
	CString	telephone;
	CString	subject;
	CString	address;
	CString	content;
	int		remindNum;
	BOOL	is_everyDay;

};

#endif // !defined(AFX_CLIENTRESERVE_H__8CDDF8F7_C330_41FB_9D1D_39D3C85EF5DF__INCLUDED_)

⌨️ 快捷键说明

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