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

📄 contractclass.h

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

#if !defined(AFX_CONTRACTCLASS_H__F7CD4664_7934_409F_8A83_27EF7308A5E4__INCLUDED_)
#define AFX_CONTRACTCLASS_H__F7CD4664_7934_409F_8A83_27EF7308A5E4__INCLUDED_

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

class CContractClass  
{
public:
	CContractClass();
	virtual ~CContractClass();
public:
	CString	GetContractID();
	CString	GetContractName();
	COleDateTime	GetFormDate();
	CString	GetProductName();
	CString	GetStandard();
	CString	GetModel();
	CString	GetUnit();
	float	GetTotal();
	CString	GetClientName();
	CString	GetClientStaff();
	CString	GetOurStaff();
	CString	GetThirdStaff();
	COleDateTime	GetEffectiveDate();
	COleDateTime	GetEndDate();
	CString	GetRemark();

	void SetContractID(CString vContractID);
	void SetContractName(CString vContractName);
	void SetFormDate(COleDateTime vFormDate);
	void SetProductName(CString vProductName);
	void SetStandard(CString vStandard);
	void SetModel(CString vModel);
	void SetUnit(CString vUnit);
	void SetTotal(float vTotal);
	void SetClientName(CString vClientName);
	void SetClientStaff(CString vClientStaff);
	void SetOurStaff(CString vOurStaff);
	void SetThirdStaff(CString vThirdStaff);
	void SetEffectiveDate(COleDateTime vEffectiveDate);
	void SetEndDate(COleDateTime vEndDate);
	void SetRemark(CString vRemark);

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

private:
	CString	contractID;
	CString	contractName;
	COleDateTime	formDate;
	CString	productName;
	CString	standard;
	CString	model;
	CString	unit;
	float	total;
	CString	clientName;
	CString	clientStaff;
	CString	ourStaff;
	CString	thirdStaff;
	COleDateTime	effectiveDate;
	COleDateTime	endDate;
	CString	remark;

};

#endif // !defined(AFX_CONTRACTCLASS_H__F7CD4664_7934_409F_8A83_27EF7308A5E4__INCLUDED_)

⌨️ 快捷键说明

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