123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #pragma once
- typedef struct _ST_SENDREG_INFO_
- {
- CString strIsAutoSend;
- CString strDays;
- CString strContent;
- CString strMode;
- }STSendregInfo,*pSTSendregInfo;
- class CTableSendreg : public CRecordset
- {
- public:
- CTableSendreg(CDatabase* pDatabase = NULL);
- DECLARE_DYNAMIC(CTableSendreg)
- CString m_timestamp;
- CString m_msgcount;
- CString m_log;
- CString m_status;
- CString m_issended;
- CString m_isautosend;
- CString m_phones;
- CString m_content;
- long m_autoid;
- CString m_ren;
-
- 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
- };
|