123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #pragma once
- typedef struct _ST_CHILDMSG_INFO_
- {
- CString strIsAutoSend;
- CString strDays;
- CString strContent;
- CString strMode;
- }STChildMsgInfo,*pSTChildMsgInfo;
- class CTableChildmsg : public CRecordset
- {
- public:
- CTableChildmsg(CDatabase* pDatabase = NULL);
- DECLARE_DYNAMIC(CTableChildmsg)
- CString m_check;
- CString m_days;
- CString m_content;
- CString m_mode;
-
- 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
- };
|