EvaluationAndPayVC.h 504 B

1234567891011121314151617181920212223
  1. //
  2. // EvaluationAndPayVC.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/6/8.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface EvaluationAndPayVC : UIViewController
  10. /*为YES是评论,换成了另一个类(Evaluation),此类评论功能弃用
  11. * NO 是支付
  12. */
  13. @property (nonatomic, assign) BOOL isFinishEva;
  14. //@property (nonatomic, assign) BOOL isFromPayVC;
  15. //订单的信息 主要是支付金额
  16. @property (nonatomic, retain) NSDictionary *dataDic;
  17. @end