📄 marketinformation.h
字号:
// MarketInformation.h: interface for the CMarketInformation class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MARKETINFORMATION_H__B871C10A_6B3F_48C4_81B7_D9E444BE0DA5__INCLUDED_)
#define AFX_MARKETINFORMATION_H__B871C10A_6B3F_48C4_81B7_D9E444BE0DA5__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMarketInformation
{
public:
CMarketInformation();
virtual ~CMarketInformation();
public:
CString GetMarketInformationID();
COleDateTime GetCollectDate();
CString GetInformationLevel();
CString GetCollecter();
CString GetCollectDepartment();
CString GetSubject();
CString GetContent();
void SetMarketInformationID(CString vMarketInformationID);
void SetCollectDate(COleDateTime vCollectDate);
void SetInformationLevel(CString vInformationLevel);
void SetCollecter(CString vCollecter);
void SetCollectDepartment(CString vCollectDepartment);
void SetSubject(CString vSubject);
void SetContent(CString vContent);
void sqlInsert();
void sqlUpdate(CString cMarketInformationID);
void sqlDelete(CString cMarketInformationID);
void GetData(CString cMarketInformationID);
private:
CString marketInformationID;
COleDateTime collectDate;
CString informationLevel;
CString collecter;
CString collectDepartment;
CString subject;
CString content;
};
#endif // !defined(AFX_MARKETINFORMATION_H__B871C10A_6B3F_48C4_81B7_D9E444BE0DA5__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -