47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
|
#pragma once
|
|||
|
#include "afxdialogex.h"
|
|||
|
|
|||
|
|
|||
|
// DLG_Corp_ExpiryRecycling 对话框
|
|||
|
|
|||
|
class DLG_Corp_ExpiryRecycling : public CDialogEx
|
|||
|
{
|
|||
|
DECLARE_DYNAMIC(DLG_Corp_ExpiryRecycling)
|
|||
|
public:
|
|||
|
ANS_Corp_Assist_ExpiryRecycling_Get* m_pRecyclingData;
|
|||
|
long m_lUserType;
|
|||
|
|
|||
|
long m_lSmsRecyclingCount;
|
|||
|
long m_lMmsRecyclingCount;
|
|||
|
public:
|
|||
|
DLG_Corp_ExpiryRecycling(CWnd* pParent = nullptr); // 标准构造函数
|
|||
|
virtual ~DLG_Corp_ExpiryRecycling();
|
|||
|
|
|||
|
void SetData(ANS_Corp_Assist_ExpiryRecycling_Get* pGet, long lUserType);
|
|||
|
// 对话框数据
|
|||
|
#ifdef AFX_DESIGN_TIME
|
|||
|
enum { IDD = IDD_CORP_EXPIRYRECYCLING };
|
|||
|
#endif
|
|||
|
|
|||
|
protected:
|
|||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|||
|
|
|||
|
DECLARE_MESSAGE_MAP()
|
|||
|
public:
|
|||
|
CString m_strBZ;
|
|||
|
CString m_strCorpID;
|
|||
|
CString m_strCorpName;
|
|||
|
CString m_strExpiry;
|
|||
|
CString m_strMmsBalance;
|
|||
|
CString m_strMmsCount;
|
|||
|
CString m_strMmsLastCharge;
|
|||
|
CString m_strSmsBalance;
|
|||
|
CString m_strSmsCount;
|
|||
|
CString m_strSmsLastCharte;
|
|||
|
CString m_strYWY;
|
|||
|
CString m_strLastLogin;
|
|||
|
afx_msg void OnBnClickedOk();
|
|||
|
afx_msg void OnBnClickedCancel();
|
|||
|
virtual BOOL OnInitDialog();
|
|||
|
};
|