DlgCloudSelection.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #pragma once
  2. // CDlgCloudSelection 对话框
  3. class CDlgCloudSelection : public CDialog
  4. {
  5. //DECLARE_DYNAMIC(CDlgCloudSelection)
  6. public:
  7. CDlgCloudSelection(CWnd* pParent = NULL); // 标准构造函数
  8. virtual ~CDlgCloudSelection();
  9. // 对话框数据
  10. enum { IDD = DLG_CLOUNDSELECTION };
  11. protected:
  12. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  13. DECLARE_MESSAGE_MAP()
  14. public:
  15. virtual BOOL OnInitDialog();
  16. afx_msg void OnBnClickedGetselectlink();
  17. afx_msg void OnBnClickedUploadgoods();
  18. afx_msg void OnBnClickedUploadimgs();
  19. afx_msg void OnBnClickedSendmsg();
  20. afx_msg void OnBnClickedSelectqrcode();
  21. public:
  22. INT _nMaxLen;
  23. //IMulticurl *_pMultiurl;
  24. UINT8 _nActionType;
  25. CString _strMaskId;
  26. CString _strBranchId;
  27. CString _strBranchName;
  28. CString _strBranchTel;
  29. CString _strOrderNum;
  30. CString _strScenery;
  31. CString _strCustomerName;
  32. CString _strCustomerName1;
  33. CString _strCustomerName2;
  34. CString _strCustomerTel;
  35. CString _strCustomerTel1;
  36. CString _strCustomerTel2;
  37. CString _strWebSite;
  38. CArray<CStringArray, CStringArray> _AryGoods;
  39. CString _strCloudSite;
  40. void SetParamters(
  41. IN const UINT8& nActionType,
  42. IN LPCTSTR lpMaskId,
  43. IN LPCTSTR lpBranchId,
  44. IN LPCTSTR lpBranchName,
  45. IN LPCTSTR lpBranchTel,
  46. IN LPCTSTR lpOrderNum,
  47. IN LPCTSTR lpScenery,
  48. IN LPCTSTR lpCustomerName1,
  49. IN LPCTSTR lpCustomerName2,
  50. IN LPCTSTR lpCustomerTel1,
  51. IN LPCTSTR lpCustomerTel2,
  52. IN LPCTSTR lpCloundSite);
  53. CString GoodJson(IN CStringArray& AryGoodInfo);
  54. };