📄 marketinvestigate.h
字号:
// MarketInvestigate.h: interface for the CMarketInvestigate class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MARKETINVESTIGATE_H__CBA1061D_B19A_4B9E_8F5A_493482F75CB2__INCLUDED_)
#define AFX_MARKETINVESTIGATE_H__CBA1061D_B19A_4B9E_8F5A_493482F75CB2__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMarketInvestigate
{
public:
CMarketInvestigate();
virtual ~CMarketInvestigate();
public:
CString GetMarketInvestigateID();
CString GetSummary();
CString GetObject();
CString GetInvestigatePerson();
COleDateTime GetInvestigateDate();
void SetMarketInvestigateID(CString vMarketInvestigateID);
void SetSummary(CString vSummary);
void SetObject(CString vObject);
void SetInvestigatePerson(CString vInvestigatePerson);
void SetInvestigateDate(COleDateTime vInvestigateDate);
void sqlInsert();
void sqlUpdate(CString cMarketInvestigateID);
void sqlDelete(CString cMarketInvestigateID);
void GetData(CString cMarketInvestigateID);
private:
CString marketInvestigateID;
CString summary;
CString object;
CString investigatePerson;
COleDateTime investigateDate;
};
#endif // !defined(AFX_MARKETINVESTIGATE_H__CBA1061D_B19A_4B9E_8F5A_493482F75CB2__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -