#pragma once
|
#include "stdafx.h"
|
|
/************************************************************************/
|
/* ×éÖ¯ÐÅÏ¢ */
|
/************************************************************************/
|
|
class AFX_EXT_CLASS CMBOrgInfo
|
: public CObject
|
{
|
public:
|
CMBOrgInfo(void);
|
~CMBOrgInfo(void);
|
public:
|
CString m_strID; // ×éÖ¯id
|
CString m_strCode; // ×éÖ¯±àÂë
|
CString m_strName; // Ö¯Ö¯Ãû³Æ
|
CString m_strType; // ÀàÐÍ
|
CString m_strIsUnit; // ÊÇ·ñÊǵ¥Î»
|
};
|