FeedbackViewController.h 971 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // FeedbackViewController.h
  3. // DSH
  4. //
  5. // Created by 张毅成 on 2018/10/8.
  6. // Copyright © 2018 WZX. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MyModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void(^FeedbackViewControllerBlock)(void);
  12. enum FeedbackViewControllerType {
  13. FeedbackViewControllerTypeSelfIntroduction,//自我介绍
  14. FeedbackViewControllerTypeSign,//我的签名
  15. FeedbackViewControllerTypeFeedback,//意见反馈
  16. FeedbackViewControllerTypeEvaluate//商品评价
  17. };
  18. @interface FeedbackViewController : UIViewController
  19. @property (assign, nonatomic) enum FeedbackViewControllerType controllerType;
  20. @property (copy, nonatomic) NSString *URL;
  21. @property (copy, nonatomic) FeedbackViewControllerBlock blockFeedBack;
  22. @property (strong, nonatomic) MyModel *modelMy;
  23. /**
  24. 订单ID
  25. */
  26. //@property (copy, nonatomic) NSString *orderId;
  27. /**
  28. */
  29. @property (strong, nonatomic) NSMutableDictionary *parameters;
  30. @end
  31. NS_ASSUME_NONNULL_END