1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #pragma once
- // CDlgCloudSelection 对话框
- class CDlgCloudSelection : public CDialog
- {
- //DECLARE_DYNAMIC(CDlgCloudSelection)
- public:
- CDlgCloudSelection(CWnd* pParent = NULL); // 标准构造函数
- virtual ~CDlgCloudSelection();
- // 对话框数据
- enum { IDD = DLG_CLOUNDSELECTION };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
- DECLARE_MESSAGE_MAP()
- public:
- virtual BOOL OnInitDialog();
- afx_msg void OnBnClickedGetselectlink();
- afx_msg void OnBnClickedUploadgoods();
- afx_msg void OnBnClickedUploadimgs();
- afx_msg void OnBnClickedSendmsg();
- afx_msg void OnBnClickedSelectqrcode();
- public:
- INT _nMaxLen;
- //IMulticurl *_pMultiurl;
- UINT8 _nActionType;
- CString _strMaskId;
- CString _strBranchId;
- CString _strBranchName;
- CString _strBranchTel;
- CString _strOrderNum;
- CString _strScenery;
- CString _strCustomerName;
- CString _strCustomerName1;
- CString _strCustomerName2;
- CString _strCustomerTel;
- CString _strCustomerTel1;
- CString _strCustomerTel2;
- CString _strWebSite;
- CArray<CStringArray, CStringArray> _AryGoods;
- CString _strCloudSite;
- void SetParamters(
- IN const UINT8& nActionType,
- IN LPCTSTR lpMaskId,
- IN LPCTSTR lpBranchId,
- IN LPCTSTR lpBranchName,
- IN LPCTSTR lpBranchTel,
- IN LPCTSTR lpOrderNum,
- IN LPCTSTR lpScenery,
- IN LPCTSTR lpCustomerName1,
- IN LPCTSTR lpCustomerName2,
- IN LPCTSTR lpCustomerTel1,
- IN LPCTSTR lpCustomerTel2,
- IN LPCTSTR lpCloundSite);
- CString GoodJson(IN CStringArray& AryGoodInfo);
- };
|