1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef __TBL_NETSHAREINFO_20151005__
- #define __TBL_NETSHAREINFO_20151005__
- #pragma once
- class CTblNetShareInfo : public CRecordset
- {
- public:
- CTblNetShareInfo(CDatabase* pDatabase = NULL);
- DECLARE_DYNAMIC(CTblNetShareInfo)
-
-
-
-
-
-
-
-
- BOOL m_enable;
- CString m_branchid;
- CString m_sharepath;
- BYTE m_mincapacity;
- BYTE m_maxcapacity;
- BYTE m_phototype;
- BYTE m_priority;
-
-
- public:
- virtual CString GetDefaultConnect();
- virtual CString GetDefaultSQL();
- virtual void DoFieldExchange(CFieldExchange* pFX);
-
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- };
- #endif
|