This commit is contained in:
coco
2026-07-03 16:05:30 +08:00
commit df489d5640
1101 changed files with 779140 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
// Project.h: interface for the CProject class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PROJECT_H__72D81606_644D_4BAB_BE9F_8A1A59D6EFCE__INCLUDED_)
#define AFX_PROJECT_H__72D81606_644D_4BAB_BE9F_8A1A59D6EFCE__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CDataMngStruct;
class CProject : public CDataMngStruct
{
public:
bool ShowDetailInfo(CListCtrl& proDetailList);
CProject(DWORD dwID, _ConnectionPtr& pConnection);
virtual ~CProject();
DWORD m_dwID;
private:
_ConnectionPtr m_pConnection;
CString m_szCN;
CString m_szPRname;
CString m_szCNS;
CString m_szDesc;
CString m_szLocation;
CString m_szPRdate;
CString m_szDuration;
CString m_szPS;
CString m_szCS;
CString m_szPM;
CString m_szQAS;
CString m_szStandard;
};
#endif // !defined(AFX_PROJECT_H__72D81606_644D_4BAB_BE9F_8A1A59D6EFCE__INCLUDED_)